texts
sequence
meta
dict
scores
sequence
avg_score
float64
0
0.36
num_sents
int64
5
5
tagged_pii_results
list
[ "Apple plans to open a second corporate campus as part of a broader plan to \"directly contribute\" $350 billion to the U.S. economy over the next five years, a figure that doesn't include its regular taxes, tax revenue from the wages it plays employees or the sale of Apple products.", "\n\nWhy it matters: While it manufactures nearly all its products outside the U.S., Apple has been eager to show how much it contributes domestically including all the developers, Apple suppliers and contract manufacturers that are based here.", "\n\nHere are some of the stats Apple is touting:\n\nApple expects to pay around $38 billion in repatriation taxes thanks to the new law (the largest such payment of its kind).", "\n\nApple expects to spend more than $30 billion in U.S. capital expenses over the next five years. (", "Over $10 billion will be in data centers.)", "\n\nApple is increasing the size of an advanced manufacturing fund to $5 billion from $1 billion.", "\n\nApple plans to create 20,000 new U.S. jobs on top of its 84,000 existing U.S. workers.", "\n\nAs for the new campus, Apple said it will initially handle technical support, with the location to be announced later this year." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.0071174377224199285, 0.008298755186721992, 0.011695906432748537, 0.010101010101010102, 0, 0.010526315789473684, 0.011363636363636364, 0.007692307692307693 ]
0.008349
5
[ { "analysis_explanation": null, "end": 121, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117 }, { "analysis_explanation": null, "end": 154, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135 }, { "analysis_explanation": null, "end": 360, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 356 }, { "analysis_explanation": null, "end": 744, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 740 }, { "analysis_explanation": null, "end": 786, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 767 }, { "analysis_explanation": null, "end": 964, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 960 }, { "analysis_explanation": null, "end": 1004, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1000 }, { "analysis_explanation": null, "end": 1141, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1126 } ]
[ "Exceptions Everywhere\n\nMost of the APIs have a defined format in which they return errors. ", "This contract helps the API consumers in handling the errors.", "\n\nAt m.Paani, we too have a contract for raising errors. ", "The API sends a JSON list containing N error objects. ", "A typical error response would look something like\n\nFormat of a typical error response\n\nfield: Contains name of the field only if it’s a field error else returns non_field_errors\n\ncode: Internal Error Codes (as most non trivial systems have a lot of domain specific errors and edge cases). ", "This also provides granularity and makes debugging a bit easier.", "\n\nConsider this - API returns an HTTP 401 UNAUTHORIZED, it’s impossible to identify the actual cause. ", "This could have been raised because token was invalid or expired or perhaps it wasn’t sent in the first place.", "\n\nclient_message: A user friendly message that can be directly shown to the user.", "\n\nserver_message: A message containing more technical information that can help in debugging the issue." ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0.01639344262295082, 0.017543859649122806, 0.018518518518518517, 0.006896551724137931, 0, 0, 0, 0, 0 ]
0.005935
5
[ { "analysis_explanation": null, "end": 163, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156 }, { "analysis_explanation": null, "end": 160, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 156 } ]
[ "<?", "php\nnamespace main\\lib;\n\n/**\n * Created by PhpStorm.", "\n * User: cszchen\n * Date: 2016/5/21\n * Time: 16:13\n */\nclass Image\n{\n const THUMB_AUTO = 0;\n\n const THUMB_FILL = 1;\n\n protected $source;\n\n protected function __construct()\n {\n }\n\n public static function load($source)\n {\n $self = new static();\n if (is_string($source) && file_exists($source)) {\n $self->loadImage($source);\n } elseif (is_resource($source)) {\n $self->source = $source;\n } else {\n throw new \\Exception('can not load the resource');\n }\n return $self;\n }\n\n public static function create($width, $height)\n {\n $self = new static();\n $img = imagecreatetruecolor($width, $height);\n $self->setSource($img);\n return $self;\n }\n\n public function getSize()\n {\n return [\n imagesx($this->getSource()),\n imagesy($this->getSource())\n ];\n }\n\n public function crop($x, $y, $width = 0, $height = 0)\n {\n $sourceWidth = imagesx($this->getSource());\n $sourceHeight = imagesy($this->getSource());\n if ($x + $width > $sourceWidth || $x > $sourceWidth) {\n throw new \\Exception('The crop width is out of the range');\n }\n if ($y + $height > $sourceHeight || $y > $sourceHeight) {\n throw new \\Exception('The crop height is out of the range');\n }\n $width = $width ?: ", "$sourceWidth - $x;\n $height = $height ?: ", "$sourceHeight - $y;\n $rect = [\n 'x' => $x,\n 'y' => $y,\n 'width' => $width,\n 'height' => $height\n ];\n $img = imagecrop($this->getSource(), $rect);\n $this->setSource($img);\n return $this;\n }\n\n /**\n * @param $percent int\n * @return $this\n */\n public function resize($percent)\n {\n if ($percent >= 100 || $percent <= 0) {\n return $this;\n }\n $sourceWidth = imagesx($this->getSource());\n $sourceHeight = imagesy($this->getSource());\n $width = round($sourceWidth * $percent / 100);\n $height = round($sourceHeight * $percent / 100);\n $img = imagecreatetruecolor($width, $height);\n imagecopyresampled($img, $this->getSource(), 0, 0, 0, 0, $width, $height, $sourceWidth, $sourceHeight);\n $this->setSource($img);\n return $this;\n }\n\n public function thumb($maxWidth, $maxHeight, $mod = self::THUMB_AUTO)\n {\n $sourceWidth = imagesx($this->getSource());\n $sourceHeight = imagesy($this->getSource());\n if ($mod == self::THUMB_FILL) {\n $width = $maxWidth;\n $height = $maxHeight;\n } else {\n if ($sourceWidth <= $maxWidth && $sourceHeight <= $maxHeight) {\n return $this;\n }\n $wRatio = $maxWidth / $sourceWidth;\n $hRatio = $maxHeight / $sourceHeight;\n if ($wRatio * $sourceHeight < $maxHeight) {\n $height = round($wRatio * $sourceHeight);\n $width = $maxWidth;\n } elseif ($hRatio * $sourceWidth < $maxWidth) {\n $width = round($hRatio * $sourceWidth);\n $height = $maxHeight;\n } else {\n return $this;\n }\n }\n $img = imagecreatetruecolor($width, $height);\n imagecopyresampled($img, $this->getSource(), 0, 0, 0, 0, $width, $height, $sourceWidth, $sourceHeight);\n $this->setSource($img);\n return $this;\n }\n\n public function save($path, $format = 'png')\n {\n switch (strtolower($format)) {\n case 'png':\n imagepng($this->getSource(), $path);\n break;\n case 'jpg':\n case 'jpeg':\n imagejpeg($this->getSource(), $path);\n break;\n }\n }\n\n public function output($format = 'png')\n {\n ob_end_clean();\n //header('Content-Type:' . ", "$this->size['mime']);\n switch (strtolower($format)) {\n case 'png':\n header('Content-Type:image/png');\n imagepng($this->getSource());\n break;\n case 'jpg':\n case 'jpeg':\n header('Content-Type:image/jpeg');\n imagejpeg($this->getSource());\n break;\n }\n }\n\n protected function loadImage($file)\n {\n $size = getimagesize($file);\n if ($size == false) {\n throw new \\Exception($file . ' ", "is not a image file!');", "\n }\n $this->source = imagecreatefromstring(file_get_contents($file));\n }\n\n protected function getSource()\n {\n return $this->source;\n }\n\n protected function setSource($source)\n {\n $this->clean();\n $this->source = $source;\n }\n\n protected function clean()\n {\n if ($this->getSource()) {\n imagedestroy($this->getSource());\n }\n }\n}\n" ]
{ "pile_set_name": "Github" }
[ 0, 0.019230769230769232, 0.0021216407355021216, 0, 0.0032193158953722333, 0.0018281535648994515, 0, 0.004807692307692308 ]
0.003901
5
[ { "analysis_explanation": null, "end": 90, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.95, "start": 81 }, { "analysis_explanation": null, "end": 559, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 544 }, { "analysis_explanation": null, "end": 753, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 720 }, { "analysis_explanation": null, "end": 915, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 891 }, { "analysis_explanation": null, "end": 1715, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1689 }, { "analysis_explanation": null, "end": 2238, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2205 }, { "analysis_explanation": null, "end": 2458, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2443 }, { "analysis_explanation": null, "end": 2678, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2670 }, { "analysis_explanation": null, "end": 2882, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2874 }, { "analysis_explanation": null, "end": 3097, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3089 }, { "analysis_explanation": null, "end": 3155, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3147 }, { "analysis_explanation": null, "end": 3795, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3791 }, { "analysis_explanation": null, "end": 3840, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3814 }, { "analysis_explanation": null, "end": 4251, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4247 }, { "analysis_explanation": null, "end": 4347, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4321 }, { "analysis_explanation": null, "end": 2485, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 2483 }, { "analysis_explanation": null, "end": 2634, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 2632 } ]
[ "STReESS in the Media\n\nOur STReESS Action received a lot of positive attention in the media:\n\nOur third COST Action meeting in Sarajevo caught the attention of the Bosnian National Television: on October 17,2013 they broadcasted an interview with Milan Mataruga, Ute Sass-Klaassen and others. ", "You can watch the interview on http://www.rtrs.tv/av/pusti.php?id=31264 (Our story starts after 18 minutes)." ]
{ "pile_set_name": "Pile-CC" }
[ 0.010273972602739725, 0.009259259259259259 ]
0.009767
5
[ { "analysis_explanation": null, "end": 134, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126 }, { "analysis_explanation": null, "end": 210, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195 }, { "analysis_explanation": null, "end": 260, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246 }, { "analysis_explanation": null, "end": 279, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262 }, { "analysis_explanation": null, "end": 398, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 388 }, { "analysis_explanation": null, "end": 363, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 323 } ]
[ "AP\n\nThe Browns drafted Baker Mayfield with the first overall pick in this year’s draft and Tyrod Taylor is set to be a free agent after this season, which has led just about everyone to assume that Taylor will be playing quarterback somewhere other than Cleveland in 2019.", "\n\nGeneral Manager John Dorsey apparently isn’t making that assumption. ", "Dorsey suggested that things could align in a way that leads to a contract extension for Taylor.", "\n\n“I just want to see Tyrod do what he’s done in the past,” Dorsey told Kevin Clark of The Ringer. “", "He’s a natural born leader. ", "He’s had an excellent camp so far. ", "I want to see it unfold. ", "There may come a point here where I call his representatives in October and say, ‘Let’s strike something up,'”\n\nClark asked if such a conversation with Taylor’s agent would mean that the team wasn’t convinced Mayfield was ready to take over the job anytime soon. ", "Dorsey said his approach was to “deal with it when it happens,” although it would be hard to blame anyone who drew that conclusion in the event that the Browns do extend their relationship with Taylor before Mayfield hits the field." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.01838235294117647, 0.014084507042253521, 0.020833333333333332, 0.02, 0, 0, 0, 0.011406844106463879, 0.01293103448275862 ]
0.010849
5
[ { "analysis_explanation": null, "end": 37, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23 }, { "analysis_explanation": null, "end": 78, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74 }, { "analysis_explanation": null, "end": 103, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91 }, { "analysis_explanation": null, "end": 147, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136 }, { "analysis_explanation": null, "end": 204, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 198 }, { "analysis_explanation": null, "end": 263, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254 }, { "analysis_explanation": null, "end": 271, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267 }, { "analysis_explanation": null, "end": 300, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289 }, { "analysis_explanation": null, "end": 348, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 342 }, { "analysis_explanation": null, "end": 437, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431 }, { "analysis_explanation": null, "end": 464, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 459 }, { "analysis_explanation": null, "end": 503, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 497 }, { "analysis_explanation": null, "end": 520, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 509 }, { "analysis_explanation": null, "end": 697, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 690 }, { "analysis_explanation": null, "end": 743, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 738 }, { "analysis_explanation": null, "end": 784, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 778 }, { "analysis_explanation": null, "end": 843, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 835 }, { "analysis_explanation": null, "end": 895, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 889 }, { "analysis_explanation": null, "end": 1048, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1042 }, { "analysis_explanation": null, "end": 1089, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1083 }, { "analysis_explanation": null, "end": 1105, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1097 } ]
[ "UPCOMING EVENTS\n\nOnly a few seats remain for tomorrow and Thursday’s CloudBeat 2011 event.", "\n\nWe’ve decided to offer up a handful of heavily discounted tickets to students and/or founders who may not have the budget to make the event at full price. ", "More on that below.", "\n\nThe agenda is packed, the speaker lineup is robust, and we couldn’t be more excited. ", "We’ve got representation from just about every major player and disruptor in the cloud industry, and we’ve spent the past few months making sure we push the discussion forward with each fireside chat. ", "We’ll hear Google respond, for example, to Microsoft’s contention that MSFT is winning in 98 percent of cases where the two compete (it’s just not true). ", "That’s just the beginning. ", "We’ll hear from the major cloud OS players, the big SaaS players, and folks like Zynga, Netflix and Best Buy about the cutting-edge stuff they’re doing too.", "\n\nThis event isn’t another chance for vendors to push their wares. ", "Instead, we’re focusing on customer-centric case studies to uncover the key cloud architectures that companies of all stages are adopting to survive and prosper.", "\n\nSo, if you’re a student or a startup founder on a very tight budget and you want to come to CloudBeat 2011 (Nov 30 – Dec 1 in Redwood City, CA), send a quick note to competition@venturebeat.com explaining why. ", "We’ll be going through entries all day and handing out select discount codes that will carry a very significant discount. ", "We look forward to seeing you at what has shaped up to be the cloud event of the year!" ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0.01948051948051948, 0, 0.01282051282051282, 0, 0, 0.0047169811320754715, 0, 0 ]
0.002848
5
[ { "analysis_explanation": null, "end": 1310, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 1283 }, { "analysis_explanation": null, "end": 53, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45 }, { "analysis_explanation": null, "end": 66, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58 }, { "analysis_explanation": null, "end": 83, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79 }, { "analysis_explanation": null, "end": 483, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 464 }, { "analysis_explanation": null, "end": 1223, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1219 }, { "analysis_explanation": null, "end": 1239, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1225 }, { "analysis_explanation": null, "end": 1255, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1243 }, { "analysis_explanation": null, "end": 1259, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1257 }, { "analysis_explanation": null, "end": 1365, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1358 }, { "analysis_explanation": null, "end": 1534, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1526 }, { "analysis_explanation": null, "end": 1310, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1295 } ]
[ "Prostate biopsy strategies: current state of the art.", "\nProstate-specific antigen testing and prostate biopsy have revolutionized our ability to detect prostate cancer at an early stage. ", "The transrectal ultrasound-guided biopsy procedure has undergone a number of modifications over the past 10 years to meet our goal of early detection of cancer at a curable stage. ", "Biopsy schemes have evolved from lesion-directed biopsies to systematic mapping of the peripheral zone of the prostate, which harbors almost all of the significant tumor foci. ", "An increase in the number of biopsy cores from 6 to 10 (or 12) has resulted in a significant improvement in the detection of clinically localized cancer, without any appreciable increase in the number of indolent cancers. ", "Current biopsy schemes also have enhanced our ability to determine the true prognostic value of pathologic lesions such as high-grade prostatic intraepithelial neoplasia and atypical small acinar proliferation which have been associated with cancer detection in repeat biopsies. ", "I discuss the rationale behind, and the outcomes of, various biopsy strategies. ", "More than 15 years after PSA testing was popularized for early detection, a number of men are presenting for evaluation regarding repeat prostate biopsy for various clinical indications. ", "The indications, biopsy scheme, and cancer detection rates for repeat prostate biopsy are discussed in detail." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.018867924528301886, 0, 0, 0, 0, 0, 0, 0.0053475935828877, 0 ]
0.002691
5
[ { "analysis_explanation": null, "end": 298, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281 }, { "analysis_explanation": null, "end": 1140, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1122 } ]
[ "Q:\n\nHow to convert UTC datetime into PST datetime in php\n\n$utc_date = '2020-07-31T00:00:00.000Z';\n\nNow i want this date in yyyy-mm-dd hh:mm:ss format like (2020-07-31 00:00:00), So can we achieve in PHP? ", "How can we do it in easiest way?", "\n\nA:\n\nLike this.", "\n$utc_date = '2020-07-31T00:00:00.000Z';\n$jsDateTS = strtotime($utc_date);\nif ($jsDateTS !", "== false) \n echo date('Y-m-d H:i:s', $jsDateTS );\n\nEdit: Changed code to include timezone change.", "\n$utc_date = '2020-07-31T00:00:00.000Z';\n$timestamp = strtotime($utc_date);\n$date = new DateTime();\n$date->setTimestamp($timestamp);\n$date->setTimezone(new \\DateTimeZone('America/Los_Angeles'));\necho $date->format('Y-m-d H:i:s') . \"", "\\n\";\n\nWorking Example.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.0196078431372549, 0, 0, 0, 0.01, 0, 0.045454545454545456, 0 ]
0.009383
5
[ { "analysis_explanation": null, "end": 96, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71 }, { "analysis_explanation": null, "end": 139, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 137 }, { "analysis_explanation": null, "end": 166, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156 }, { "analysis_explanation": null, "end": 290, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265 }, { "analysis_explanation": null, "end": 481, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 456 } ]
[ "Background {#Sec1}\n==========\n\nAs of 20th of July, Coronavirus disease 2019 (COVID-19) reached 14.476.729 cases worldwide, with 605.979 deaths (COVID-19 situation update worldwide, as of 20 July [@CR2] 2020). ", "COVID-19 poor prognosis is related to comorbidities like hypertension, cardiovascular diseases, diabetes mellitus, smoking, chronic obstructive pulmonary disease (COPD), malignancy, chronic kidney disease, obesity and immunocompromising conditions. ", "Among these comorbidities, the prevalence of hypertension is the highest (16.37%) in hospitalized patients diagnosed with COVID-19 infection (Emami et al. [", "@CR5]). ", "Since cannabinoids regulate the immune system, have anti-inflammatory properties and have an effect on cardiovascular function and hypertension, we believe it is of interest to understand if the use of cannabis could influence COVID-19 symptoms and prognosis. ", "It is important to notice that, as of 16th July, we are not aware of any studies directly testing the effects of cannabinoids on COVID-19 disease progression. ", "However, we can try to understand if cannabinoids would have any effect on the proteins, mechanisms and symptoms that are related to the disease by analyzing published literature. ", "The aim of this article is to describe the latest insights in the potential interaction of the endocannabinoid system (ECS) and the physiological mechanisms of COVID-19 infection, in order to have an idea of how cannabinoids might affect the prognosis of the disease.", "\n\nMain text {#Sec2}\n=========\n\nRAS and COVID-19 infection {#Sec3}\n--------------------------\n\nThe angiotensin converting enzyme 2 (ACE-2), which belongs to the renin angiotensin system (RAS), has been identified as the main entrance for the severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2) to cause COVID-19 infection in the human body (Fang et al. [", "@CR7]). ", "The RAS regulates the hemodynamics of the body, it has a very important role in the regulation of blood pressure and it has been related to the pathogenesis of hypertension (Miller and Arnold [@CR11]). ", "Antihypertensive drugs that inhibit either angiotensin converting enzymes (ACE) or angiotensin receptors, have been shown to lead to overexpression of ACE-2 (Fang et al. [", "@CR7]). ", "The use of ACE inhibitors and angiotensin II receptor blockers (ARBs) has been questioned since overexpression of ACE-2 receptors might result in a worse prognosis of the disease (Fang et al. [", "@CR7]). ", "However, recent scientific evidence raised the controversy whether ACE-2 receptors are actually downregulated or upregulated by ACE inhibitors and ARBs and whether the use of these drugs form a potential benefit or risk for COVID-19 prognosis (Vaduganathan et al. [", "@CR19]; Cohen et al. [", "@CR1]; Curfman [@CR3]; Fosbøl et al. [", "@CR8]). ", "In fact, a recent retrospective cohort study showed no association between the use of these drugs and the diagnosis or mortality of COVID-19 infection (Fosbøl et al. [", "@CR8]). ", "Researchers and doctors advise patients who are already taking anti = hypertensive drugs to do not stop the medication. ", "This is because stopping the medication could lead to severe health problems while there is not enough scientific evidence to support a potential risk of its use during COVID-19 disease (Vaduganathan et al. [", "@CR19]).", "\n\nCannabinoids, hypotension and RAS {#Sec4}\n---------------------------------\n\nThe ECS has been linked to cardiovascular modulation in multiple studies, including the modulation of blood pressure (Pacher et al. [", "@CR13]). ", "In fact, cannabis use and isolated cannabinoid administration (either tetrahydrocannabinol (THC) or cannabidiol (CBD)) is known to induce hypotension in healthy users, among other effects on cardiovascular regulation (Pacher et al. [", "@CR13]). ", "Hypotensive effects of cannabinoids have been reported to be mediated by the activation of cannabinoid receptor 1 (CB1), which is expressed in vascular smooth muscle and endothelial cells (Pacher et al. [", "@CR13]). ", "The mechanisms underlying the hypotensive effects of cannabinoids are complex, but animal and human studies point to direct vasorelaxation effects induced by the activation of CB1 and/or to the modulation of vasoactive agonists like angiotensin II (Stanley and O'Sullivan [@CR17]). ", "Not only plant-derived cannabinoids have been linked to hypotension, but also hemp seed oil shows hypotensive effects. ", "Interestingly, these hypotensive effects are mediated by ACE inhibition (Girgih et al. [", "@CR9]; Orio et al. [", "@CR12]).", "\n\nWe are not aware of any study linking the ECS to the ACE-2 receptor, but we found some connections between the ECS and the RAS, including some links to the ACE receptor. ", "Cross-talk between the ECS and the RAS has been described in several studies using upregulated RAS rat models, showing that CB1 and angiotensin II type 1 receptor (AT1R) form receptor heteromers with functional interactions and suggesting that hypertensive states are related to lower expression of CB1 and higher levels of angiotensin II (Haspula and Clark [@CR10]; Rozenfeld et al. [", "@CR14]; Schaich et al. [", "@CR15]). ", "In line with this and with the effects we previously mentioned concerning cannabis use and hypotension, we found a study examining vascular tissues from rats under different CB1 receptor modulations (activation, blockade and knockout) showing that the activation of CB1 reduces vasoconstrictor and hypertensive effects induced by angiotensin II (Szekeres et al. [", "@CR18]). ", "Since ARBs are used to reduce hypertension by blocking AT1R and CB1 can modulate AT1R, the hypotensive effects followed by CB1 activation might be induced through similar mechanisms. ", "We also know that these CB1-induced hypotensive effects are related to angiotensin II, which is converted from angiotensin I by ACE receptor (Erdös [@CR6]). ", "Thus, it would be interesting to investigate if CB1-induced hypotension is linked to ARB mechanisms and/or ACE inhibition. ", "If this would be the case, the activation of CB1 by cannabinoids like THC might lead to ACE-2 modulation as it has been showed by other antihypertensive drugs.", "\n\nIt is possible that other cannabinoids which show different interactions with CB1 (i.e. CB1 antagonists) could also lead to ACE-2 modulation. ", "Actually, a recent study demonstrated that high-CBD cannabis extracts can modulate ACE-2 expression in artificial 3D human tissue models, suggesting a therapeutic potential in COVID-19 infection (Wang et al. [", "@CR20]). ", "However, extracts used in the study had different cannabinoid and terpene profiles, resulting in either upregulation or downregulation of ACE-2 expression. ", "Since the total composition of cannabinoids and terpenes of each extract is unknown, it is not possible to determine which combination of active ingredients can actually downregulate or upregulate ACE-2 expression. ", "In any case, this study would reinforce both the link between ECS and RAS and the idea of a potential effect of cannabis use on ACE-2 receptor expression.", "\n\nConclusion {#Sec5}\n==========\n\nAlthough our analysis is based on existing literature and does not involve direct experimental evidence, we speculate that the hypotensive effects of THC and other CB1 agonist cannabinoids might be related to some of the mechanisms of ARBs and/or ACE inhibitors. ", "Since these hypotensive drugs are shown to modulate ACE-2, we believe it is important to investigate whether cannabinoids have the same effect on ACE-2 expression and its potential consequences related to COVID-19 infection. ", "If our speculations are right, using cannabinoids like THC might not be advisable in the context of a potential COVID-19 infection. ", "Some media suggested cannabinoids could be used to treat the cytokine storm related to COVID-19 infection (Sexton [@CR16]). ", "There is actually preclinical evidence suggesting cannabinoids might protect against cytokine storm and they could improve prognosis in the case of sepsis (Dinu et al. [", "@CR4]). ", "However, we believe such evidence is not enough to recommend the use of cannabinoids in these cases since there are already other drugs available that have been extensively tested to treat such disorders. ", "In case patients decide to continue using cannabis, it would be advisable to avoid the smoking route of administration and aim for other routes of administration.", "\n\nSince there are around 192 million people using cannabis worldwide (World Drug Report [@CR21] 2020), we believe that the mechanism underlying the hypotensive properties of cannabinoids should be urgently studied to understand if they can also lead to ACE-2 modulation as other antihypertensive drugs do.", "\n\nACE\n\n: Angiotensin converting enzyme\n\nACE-2\n\n: Angiotensin converting enzyme 2\n\nARBs\n\n: Angiotensin II type 1 receptor blockers\n\nAT1R\n\n: Angiotensin II type 1 receptor\n\nCB1\n\n: Cannabinoid receptor 1\n\nCBD\n\n: Cannabidiol\n\nCOVID-19\n\n: Coronavirus disease 2019\n\nECS\n\n: Endocannabinoid system\n\nRAS\n\n: Renin angiotensin system\n\nSARS-CoV-2\n\n: Severe acute respiratory syndrome coronavirus 2\n\nTHC\n\n: Tetrahydrocannabinol\n\n**Publisher's Note**\n\nSpringer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.", "\n\nNot applicable.", "\n\nAS and JH contributed equally to this manuscript. ", "The author(s) read and approved the final manuscript.", "\n\nNot applicable.", "\n\nNot applicable.", "\n\nNot applicable.", "\n\nNot applicable.", "\n\nAS and JH work for the medical cannabis company GH Medical.", "\n" ]
{ "pile_set_name": "PubMed Central" }
[ 0.009569377990430622, 0.004016064257028112, 0, 0.125, 0, 0, 0, 0.003745318352059925, 0.0055248618784530384, 0.125, 0.01485148514851485, 0.005847953216374269, 0.125, 0.010362694300518135, 0.125, 0.007547169811320755, 0.09090909090909091, 0.07894736842105263, 0.125, 0.005988023952095809, 0.125, 0, 0.004807692307692308, 0.125, 0.009433962264150943, 0.1111111111111111, 0.008583690987124463, 0.1111111111111111, 0, 0.1111111111111111, 0.010638297872340425, 0, 0.022727272727272728, 0.1, 0.125, 0.01744186046511628, 0.01818181818181818, 0.08333333333333333, 0.1111111111111111, 0.0027548209366391185, 0.1111111111111111, 0.01092896174863388, 0.012738853503184714, 0.016260162601626018, 0.006289308176100629, 0, 0.004784688995215311, 0.1111111111111111, 0, 0, 0.012987012987012988, 0.006756756756756757, 0, 0.007575757575757576, 0.016129032258064516, 0.005917159763313609, 0.125, 0, 0, 0.006557377049180328, 0.010380622837370242, 0, 0.019230769230769232, 0, 0, 0, 0, 0, 0.03278688524590164, 0 ]
0.035374
5
[ { "analysis_explanation": null, "end": 49, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37 }, { "analysis_explanation": null, "end": 75, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71 }, { "analysis_explanation": null, "end": 105, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95 }, { "analysis_explanation": null, "end": 194, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 187 }, { "analysis_explanation": null, "end": 206, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202 }, { "analysis_explanation": null, "end": 930, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 921 }, { "analysis_explanation": null, "end": 1847, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1837 }, { "analysis_explanation": null, "end": 2039, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2033 }, { "analysis_explanation": null, "end": 2050, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2044 }, { "analysis_explanation": null, "end": 2229, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2219 }, { "analysis_explanation": null, "end": 2431, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2421 }, { "analysis_explanation": null, "end": 2728, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2717 }, { "analysis_explanation": null, "end": 2761, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2755 }, { "analysis_explanation": null, "end": 3500, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3488 }, { "analysis_explanation": null, "end": 3509, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3504 }, { "analysis_explanation": null, "end": 3752, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3747 }, { "analysis_explanation": null, "end": 3957, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3945 }, { "analysis_explanation": null, "end": 3966, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3961 }, { "analysis_explanation": null, "end": 4217, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4203 }, { "analysis_explanation": null, "end": 4241, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4231 }, { "analysis_explanation": null, "end": 4456, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4444 }, { "analysis_explanation": null, "end": 4477, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4467 }, { "analysis_explanation": null, "end": 4828, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4824 }, { "analysis_explanation": null, "end": 4998, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4984 }, { "analysis_explanation": null, "end": 5007, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5000 }, { "analysis_explanation": null, "end": 5017, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5012 }, { "analysis_explanation": null, "end": 5042, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5027 }, { "analysis_explanation": null, "end": 5067, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5054 }, { "analysis_explanation": null, "end": 5424, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5410 }, { "analysis_explanation": null, "end": 5440, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5426 }, { "analysis_explanation": null, "end": 5512, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5508 }, { "analysis_explanation": null, "end": 5538, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5534 }, { "analysis_explanation": null, "end": 5721, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5707 }, { "analysis_explanation": null, "end": 5783, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5778 }, { "analysis_explanation": null, "end": 6424, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6414 }, { "analysis_explanation": null, "end": 7161, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7158 }, { "analysis_explanation": null, "end": 8382, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8378 }, { "analysis_explanation": null, "end": 8608, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8597 }, { "analysis_explanation": null, "end": 8650, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8639 }, { "analysis_explanation": null, "end": 8696, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8682 }, { "analysis_explanation": null, "end": 8747, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8733 }, { "analysis_explanation": null, "end": 8858, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8854 } ]
[ "Italy and its delay phase, deaths and crisis with growing figures\n\nItaly has a population of approximately 60,484,796 according to UN data. ", "In latest figures, the rate of covid-19 patients cases have reached a shocking 80,589 with 8,215 deaths reported. ", "US, now has a much higher figure which is expected to peak in next few weeks. ", "What must be taken into consideration when comparing the figures is the size of both these countries. ", "Italy is 301,340 sq kilometers and US is 9,826,675 sq Kilometers. ", "Hence, U.S is approximately 32.5 times the size of Italy.", "\n\nThis informs us that even with all the precautionary measures that Italy may have taken in comparison to China, Iran, South Korea, it was not enough to prevent the enormous rate of spread of the disease or the high rate of deaths. ", "The question then arises that if U.S which also has delayed taking preventative measures and is still on semi lockdown in some of its states what will the trend look like in terms of Coronavirus infection spreading and number of deaths?", "\n\nWhat could mean more deaths in U.S and the current trend.", "\n\nCurrently the medical staff are being advised to re-use their masks “rather than throw them away” and sanitise their hands. ", "First hand report from a medic in New Jersey U.S, suggests that “lately, all medical staff have been given masks to be kept in a brown paper bag. ", "A new mask will be provided every 3 days and is to be reused after being sterilised with UV light”. ", "Luckily, a physician had researched that UV light degrades the protective electrostatic charges on the polypropylene material of the mask.", "\n\nIf this idea had gone unchallenged the medic states it would have been catastrophic for the medical staff, as they would have been examining Covid-19 patients with unprotected masks. ", "According to a study sanitising the masks reduces its efficiency, as a layer of the mask is wiped away (fig 3). ", "U.S food and drug administration (FDA) guidelines for the common N95 respirator masks state, “it should not be shared or reused”. ", "A nurse died in a New York hospital where workers are reduced to using trash bags as protective medical gear.", "\n\nFront line staff are putting their lives at risk because the healthcare system is inadequate, lacking essential equipment and resources. ", "Next expected crises no doubt will be shortage of staff. ", "UK has pushed out an emergency notice calling back retired staff to its NHS hospitals to support the already exhausted medical staff; It’s not clear if U.S has taken this step.", "\n\nThese medical errors and glitches have become far too frequent, whilst countries in the West have had ample time for preparation, just by observing the critical situation in China, Iran, South Korea and Italy." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.007142857142857143, 0, 0, 0, 0.015151515151515152, 0, 0, 0.00423728813559322, 0, 0, 0, 0, 0, 0, 0, 0.015384615384615385, 0, 0, 0, 0.005681818181818182, 0 ]
0.002267
5
[ { "analysis_explanation": null, "end": 5, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 72, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67 }, { "analysis_explanation": null, "end": 256, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254 }, { "analysis_explanation": null, "end": 330, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 316 }, { "analysis_explanation": null, "end": 439, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 434 }, { "analysis_explanation": null, "end": 471, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 469 }, { "analysis_explanation": null, "end": 510, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 507 }, { "analysis_explanation": null, "end": 556, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 551 }, { "analysis_explanation": null, "end": 630, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 625 }, { "analysis_explanation": null, "end": 668, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 663 }, { "analysis_explanation": null, "end": 674, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 670 }, { "analysis_explanation": null, "end": 687, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 676 }, { "analysis_explanation": null, "end": 825, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 822 }, { "analysis_explanation": null, "end": 1060, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1057 }, { "analysis_explanation": null, "end": 1252, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1242 }, { "analysis_explanation": null, "end": 1256, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1253 }, { "analysis_explanation": null, "end": 1394, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1382 }, { "analysis_explanation": null, "end": 1891, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1888 }, { "analysis_explanation": null, "end": 2044, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2036 }, { "analysis_explanation": null, "end": 2324, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2322 }, { "analysis_explanation": null, "end": 2477, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2474 }, { "analysis_explanation": null, "end": 2591, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2587 }, { "analysis_explanation": null, "end": 2678, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2673 }, { "analysis_explanation": null, "end": 2684, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2680 }, { "analysis_explanation": null, "end": 2697, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2686 }, { "analysis_explanation": null, "end": 2707, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2702 }, { "analysis_explanation": null, "end": 1956, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1953 } ]
[ "Catahoula Lake\n\nCatahoula Lake is a large freshwater lake located in La Salle Parish and Rapides Parish of central Louisiana, United States.", "\n\nCatahoula Lake is the largest natural freshwater lake in the state covering just over . ", "It is owned by the State of Louisiana and managed by the U.S. Army Corps of Engineers, the U.S. Fish and Wildlife Service, and the Louisiana Department of Wildlife and Fisheries.", "\n\nCatahoula is a shallow, and poorly drained wetland supported by the Little River and several creeks. ", "It was drained by the Old River, French Fork and a number of bayous until several flood control projects changed the lake's drainage characteristics.", "\n\nIt is known as the largest moist soil unit in North America and supports a variety of waterfowl including geese, duck, and wading birds and is a recreational area for hunting, fishing, hiking, sight seeing, and bird watching. ", " Access to the lake is limited on the western shores due to private and corporate fencing.", "\n\nControversy\nThere has been controversy over the classification of Catahoula Lake. ", "The area is considered a \"salt lake\" that was created when seismic activity caused the land to sink. ", "The area has dry and wet period cycles flooding annually from the Little, Red, Ouachita (Black) River, and Mississippi River. ", "To advance the wildlife ecosystem, including ducks, control structures were built to enhance this annual flooding. ", "Every year after June most of the water is drained facilitating flora growth especially Chufa that is also called yellow nutsedge. ", "A lawsuit and district court ruling determined that the area is not a lake but a river. ", "The ramifications of this ruling, that has been appealed to The Third Circuit Court of Appeals, is that as a river it may not be managed for public use.", "\n\nReferences\n\nExternal links\nLouisiana Department of Wildlife\nUSGS Modeling the Bathymetry of Catahoula Lake\n\nCategory:Lakes of Louisiana\nCategory:Ramsar sites in the United States\nCategory:Bodies of water of La Salle Parish, Louisiana\nCategory:Bodies of water of Rapides Parish, Louisiana\nCategory:Wetlands and bayous of Louisiana" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.014285714285714285, 0, 0.02247191011235955, 0, 0, 0, 0, 0, 0, 0, 0, 0.007633587786259542, 0, 0.006578947368421052, 0.012084592145015106 ]
0.004204
5
[ { "analysis_explanation": null, "end": 14, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 30, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16 }, { "analysis_explanation": null, "end": 84, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69 }, { "analysis_explanation": null, "end": 124, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115 }, { "analysis_explanation": null, "end": 139, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126 }, { "analysis_explanation": null, "end": 155, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141 }, { "analysis_explanation": null, "end": 324, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 320 }, { "analysis_explanation": null, "end": 417, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 408 }, { "analysis_explanation": null, "end": 488, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 472 }, { "analysis_explanation": null, "end": 540, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 527 }, { "analysis_explanation": null, "end": 553, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 542 }, { "analysis_explanation": null, "end": 718, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 705 }, { "analysis_explanation": null, "end": 770, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 765 }, { "analysis_explanation": null, "end": 1055, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1041 }, { "analysis_explanation": null, "end": 1214, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1206 }, { "analysis_explanation": null, "end": 1282, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1265 }, { "analysis_explanation": null, "end": 1409, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1399 }, { "analysis_explanation": null, "end": 1420, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1416 }, { "analysis_explanation": null, "end": 1877, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1863 }, { "analysis_explanation": null, "end": 1949, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1932 }, { "analysis_explanation": null, "end": 1993, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1978 }, { "analysis_explanation": null, "end": 2047, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2033 }, { "analysis_explanation": null, "end": 2100, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2091 } ]
[ "Gugi Waaka\n\nHore Wiremu \"Gugi\" Waaka (1938 – 5 July 2014), also known as Gugi Walker, was a New Zealand musical entertainer. ", "A guitarist and singer, he was a founding member of the Quin Tikis and the Maori Volcanics Showband.", "\n\nBiography\nOf Ngāti Awa and Ngāti Pūkeko descent, Waaka grew up at Poroporo, near Whakatane.", "\n\nAfter serving in the air force in the late 1950s, Waaka began his show business career and was a founding member of the Quin Tikis. ", "Moving to Australia, he formed in the Polynesian Trio with his brother and sister-in-law, Nuki and Mahora Waaka, in 1961. ", "The trio then joined with Matti Kemp, John Clarke and Hector Epae, forming the Maori Volcanics Showband in 1964. ", "Waaka left the band after a few months following a minor disagreement with Nuki.", "\n\nWaaka was a member of a number of other show bands, including the Maori Premiers and the New Zealand Impacts Showband, and formed the eponymous Gugi Walker Quartet.", "\n\nBetween 2002 and 2007 Waaka performed at the annual Aotearoa Māori Sports Awards, providing post-awards entertainment.", "\n\nFollowing his death from heart problems in July 2014, Waaka's body lay in state at Papakura Marae.", "\n\nReferences \n\nCategory:1930s births\nCategory:2014 deaths\nCategory:Ngāti Awa\nCategory:People from Whakatane\nCategory:New Zealand male singers\nCategory:New Zealand guitarists\nCategory:Male guitarists\nCategory:New Zealand expatriates in Australia" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.016, 0.02, 0.021505376344086023, 0.014925373134328358, 0.01639344262295082, 0.035398230088495575, 0, 0.012048192771084338, 0.008333333333333333, 0.02, 0 ]
0.014964
5
[ { "analysis_explanation": null, "end": 23, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 29, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25 }, { "analysis_explanation": null, "end": 42, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38 }, { "analysis_explanation": null, "end": 56, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45 }, { "analysis_explanation": null, "end": 84, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73 }, { "analysis_explanation": null, "end": 103, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92 }, { "analysis_explanation": null, "end": 258, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253 }, { "analysis_explanation": null, "end": 366, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 352 }, { "analysis_explanation": null, "end": 469, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 460 }, { "analysis_explanation": null, "end": 544, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 540 }, { "analysis_explanation": null, "end": 561, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 549 }, { "analysis_explanation": null, "end": 570, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 566 }, { "analysis_explanation": null, "end": 608, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 598 }, { "analysis_explanation": null, "end": 621, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 610 }, { "analysis_explanation": null, "end": 637, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 626 }, { "analysis_explanation": null, "end": 683, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 679 }, { "analysis_explanation": null, "end": 723, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 711 }, { "analysis_explanation": null, "end": 764, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 760 }, { "analysis_explanation": null, "end": 771, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 766 }, { "analysis_explanation": null, "end": 929, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 910 }, { "analysis_explanation": null, "end": 952, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 931 }, { "analysis_explanation": null, "end": 1102, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1093 }, { "analysis_explanation": null, "end": 1275, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1264 }, { "analysis_explanation": null, "end": 1309, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1298 }, { "analysis_explanation": null, "end": 1366, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1355 }, { "analysis_explanation": null, "end": 1391, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1382 } ]
[ "Getting to know incoming ANA President Ernest Grant\n\nAug 9th 2018\n\nErnest Grant, PhD, RN, FAAN, was elected to serve as president of the American Nurses Association (ANA) at the ANA Membership Assembly in June. ", "Effective January 2019, Grant will be the first man to serve as ANA president. ", "Learn about Grant’s leadership journey, future vision for nursing, and health care passions in this special preview of September’s ANA on the Frontline.", "\n\nYou are now leaving the American Nurses Foundation\n\nThe American Nurses Foundation is a separate charitable organization under Section 501(c)(3) of the Internal Revenue Code. ", "The Foundation does not engage in political campaign activities or communications.", "\n\nThe Foundation expressly disclaims any political views or communications published on or accessible from this website." ]
{ "pile_set_name": "Pile-CC" }
[ 0.02843601895734597, 0.012658227848101266, 0.006578947368421052, 0.01694915254237288, 0.012195121951219513, 0.008333333333333333 ]
0.014192
5
[ { "analysis_explanation": null, "end": 51, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39 }, { "analysis_explanation": null, "end": 65, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53 }, { "analysis_explanation": null, "end": 79, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67 }, { "analysis_explanation": null, "end": 209, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205 }, { "analysis_explanation": null, "end": 233, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221 }, { "analysis_explanation": null, "end": 418, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 409 } ]
[ "American Idol (season 15)\n\nThe fifteenth season of American Idol, also branded as American Idol: The Farewell Season, premiered on the Fox television network on January 6, 2016. ", "Ryan Seacrest continued as the show's host, while Jennifer Lopez, Keith Urban, and Harry Connick Jr. returned as judges. ", "Scott Borchetta also returned as the in-house mentor. ", "This season was four to six weeks shorter than seasons 2 through 14. ", "On April 7, Trent Harmon was announced as the season's winner and La'Porsha Renae was the runner-up. ", "Harmon was the third consecutive winner to never be in the bottom two or three, and the eighth male winner in nine years.", "\n\nIt was the series' final season to air on Fox. ", "Despite its publicity that the series would be ending, it was announced by ABC that the network would revive American Idol in May 2017; the revival started in 2018.", "\n\nChanges\nFor the first time, performances by the Top 24 were judged solely by the show's judges and producers, who determined which contestants were eliminated. ", "From each group of 12, seven advanced and five were eliminated, resulting in a Top 14 for the third week of the semi-finals.", "\n\nThe voting limit for this season was ten votes per contestant per voting method, half of what it was the previous season.", "\n\nRegional auditions\nAuditions took place in:\n\nThe American Idol \"Audition Bus Tour\" visited Seattle, Washington; Providence, Rhode Island; Baltimore, Maryland; San Diego, California; Pittsburgh, Pennsylvania; Tucson, Arizona; Indianapolis, Indiana; Santa Fe, New Mexico; Athens, Georgia; Tulsa, Oklahoma; and Oxford, Mississippi. ", " Auditions were also held in Wilmington, North Carolina. ", "The show also partnered with two technology companies to allow people to audition using video recording kiosks and mobile apps in Culver City, California, and Nashville, Tennessee.", "\n\nKanye West made a surprise appearance as an auditioner in San Francisco, where he performed \"Gold Digger\". ", "His audition was shown near the end of the first episode.", "\n\nHollywood week \nHollywood Week aired in three parts over two weeks. ", "They were filmed at the Dolby Theatre in Hollywood, California in mid-late November 2015. ", "Contestants participated in three rounds: lines of ten, groups, and solos.", "\n\nSemi-finalists \n\nThe following is a list of the Top 24 contestants who were eliminated:\n\nThe following is a list of the Top 14 contestants who were eliminated:\n\nSemi-finals \nThe Top 24 semifinalists will be split into two groups of twelve. ", "They were filmed at The Vibiana in Los Angeles, California. ", " Pre-taped performances of the first group will air on February 10 and the second group on February 17. ", "On the following day each week, pre-taped performances of each contestant performing a duet with a past Idol contender will air, as will the judges selection of seven contestants from each group to advance to the Top 14. ", "The past contestants for group one were season 2 winner Ruben Studdard, season 3 winner Fantasia Barrino, season 10 winner Scotty McCreery, season 10 runner-up Lauren Alaina, season 13 winner Caleb Johnson, and last season's winner Nick Fradiani. ", "The past contestants for group two were season 4 finalist Constantine Maroulis, season 5 finalists Chris Daughtry and Kellie Pickler, season 6 winner Jordin Sparks, season 7 winner David Cook, and season 10 finalist Haley Reinhart.", "\n\nGroup 1\n\nGroup 2\n\nWild Card round \nFollowing the judges selection of four semifinalists to advance to the Finals, the remaining ten semifinalists competed for the viewers' vote to advance six of them to complete the final group of ten. ", "They were filmed February 23, 2016, at CBS Television City in Hollywood, California, and aired February 24, 2016.", "\n\nFinalists \n\n Trent Harmon (born October 8, 1990) is from Amory, Mississippi. ", "Harmon fell into music when his mother taught him to sing \"Amazing Grace\" at the age of 5. ", "His family owns a farm and a restaurant. ", "He sang and performed in numerous musicals throughout high school and college. ", "Before his graduation from the University of Arkansas at Monticello, he led worship services on campus. ", "He previously tried out for an audition on The Voice. ", "He auditioned in Little Rock, Arkansas, singing \"Unaware\" by Allen Stone. ", "When Harmon suffered mononucleosis during Hollywood Week, he continued by singing Sam Smith's \"Lay Me Down\" as his first solo performance. ", "In group round, he was not able to perform with other contestants due to his sickness and the producers allowed him to perform a solo to advance. ", "He landed a spot in the Top 24 during Showcase Week after performing Elton John's \"Tiny Dancer\". ", "On April 7, Harmon was named as the winner of the fifteenth season and received a recording contract with Big Machine Records. ", "His single \"Falling\" was then released, and peaked at number 3 on the iTunes Top 100.", "\n La'Porsha Renae (born August 1, 1993) is a call representative from McComb, Mississippi. ", "At 16, she once tried out for Idol during the eighth season. ", " After her college graduation at the age of 22, Renae was a former victim of domestic abuse. ", "After a year, she separated with her husband and moved to McComb with her one month old daughter Nayalee Keya. ", " Accompanied with her daughter, she returned to audition at Little Rock, Arkansas and earned her golden ticket by performing in front of the judges with Radiohead's Creep. ", "During Hollywood Week, she performed Katy Perry's \"Roar\" in her first solo performance. ", "She advanced to the Top 24 after she sang \"The House of the Rising Sun\" at Showcase Week. ", "She was the last female contestant. ", "Renae was announced as the runner-up on April 7. ", "It was revealed on the season finale that Renae had received a recording contract with Big Machine Records.", "\n Dalton Rapattoni (born February 6, 1996) is from Sunnyvale, Texas. ", "At the age of 11, he started learning to play guitar. ", "Rapattoni works as a vocal coach in School of Rock. ", "He was a member of the band Fly Away Hero. ", "In 2012, Rapattoni was discovered in a national talent search where he was part of Disney boy band IM5 with other four members. ", "After he left the band in 2014, he reformed his former band Fly Away Hero with new bandmates. ", "Rapattoni auditioned in Little Rock, Arkansas and sang \"The Phantom of the Opera\". ", "In his first solo performance in Hollywood rounds, he sang \"California Dreamin'\" by The Mamas & the Papas. ", "He sang Olivia Newton-John's \"Hopelessly Devoted to You\" in his final solo performance. ", "He advanced to the Top 24 after he sang \"It's Gonna Be Me\" by NSYNC during Showcase Week. ", " He was eliminated on April 6 and finished in third place.", "\n MacKenzie Bourg (born September 11, 1992) is from Lafayette, Louisiana. ", "He was a contestant on the third season of The Voice where he was defaulted to CeeLo Green's team after being voted off in the first live show. ", "Bourg auditioned at Atlanta performing a medley of songs by the judges. ", "He sang his original song \"Roses\" for his final solo performance to advance to the Showcase round. ", "Bourg advanced to the top 24 after he performed \"Can't Help Falling in Love\". ", "He was eliminated on March 31. ", "Bourg released his single \"Roses\" in association with Big Machine Records on April 7. ", "His single peaked at number 4 of the iTunes Top 100.", "\nSonika Vaid (born August 4, 1995) was originally from Weston, Massachusetts who moved to Martha's Vineyard. ", "She is of Indian descent and her parents immigrated to the U.S. when she was a child. ", "She began singing at the age of three. ", "Aside from singing, she also plays the piano. ", "She graduated from Weston High School in 2013. ", "Prior to entering Idol, she was studying biology and a regular performer at a local park near her home for special events. ", "Vaid sang \"Look at Me\" by Carrie Underwood at her audition in Denver, Colorado and received high praises from the judges, earning a golden ticket to Hollywood. ", "She then progressed to the first round of Hollywood week and sang \"Almost Is Never Enough\". ", "Vaid made it to the final Hollywood solo round, where she performed \"One Last Time\" by Ariana Grande. ", "In Showcase round, she performed \"I Surrender\" by Celine Dion and advanced to the Top 24. ", "She was eliminated on March 24.", "\nTristan McIntosh (born April 25, 2000) is from Nashville, Tennessee. ", "McIntosh won Q108's Clarksville's Got Talent competition in April 2013 at the age of 13. ", "Her mother Amy was an army major who works in the military overseas. ", "She performs at special events and venues. ", "She was also a member of the Children's Christian choir and the Let Freedom Sing Tour in the past. ", "McIntosh auditioned at Little Rock, Arkansas, performing \"Why Baby Why\" by Mickey Guyton. ", "During Hollywood Week, she sang \"Something in the Water\" by Carrie Underwood as her first solo performance. ", "She advanced to the Showcase round after performing her final solo performance, \"What Hurts the Most\". ", "She advanced to the Top 24 after singing \"Stronger\" by Faith Hill. ", "She was eliminated on March 17.", "\nLee Jean (born September 10, 1999) is from Bluffton, South Carolina. ", "Jean's first experience in music is singing in high school campus. ", "He was part of a duo with fellow musician Hannah Lindsey Lane. ", "He auditioned at Atlanta and sang Ed Sheeran's \"I See Fire\". ", "He sang \"Stitches\" by Shawn Mendes for his final solo performance. ", " In Showcase week, he sang \"Make It Rain\" to land a spot in the top 24. ", "He was eliminated along with Avalon Young on March 10.", "\nAvalon Young (born July 16, 1994) is from San Diego, California. ", "She was named by her mother after the album of the same name by Roxy Music. ", "She learned how to play guitar during her middle school years. ", "Young began singing during her senior year and was a band member of \"Over the Edge\". ", "Young originally works as a server at a restaurant. ", "She auditioned in San Francisco, California by performing an acoustic version of \"XO\" by Beyoncé. ", "During the final round of Hollywood week, Young sang Ariana Grande's \"One Last Time\" to advance in the Showcase Round. ", "She sang \"Yo (Excuse Me Miss)\" by Chris Brown and advanced to the top 24 semifinals. ", "She was eliminated along with Lee Jean on March 10.", "\nGianna Isabella (born March 30, 2000) is from Jackson, New Jersey. ", "She is the daughter of singer Brenda K. Starr. ", "In 2014, Gianna won the 'New York Dream Night Talent Search' competition. ", "She auditioned in Philadelphia and sang \"The House of the Rising Sun\". ", "She sang \"One Night Only\" during her first solo performance in Hollywood Week. ", "She sang her mother's hit single \"I Still Believe\" during Showcase Week to advance to the Top 24. ", "She was one of the first two finalists to be eliminated on March 3.", "\nOlivia Rox (born January 16, 1999) is from Agoura Hills, California. ", " Olivia is the daughter of saxophonist Warren Hill and music producer Tamara Van Cleef. ", "She wrote her first song on the piano at the age of 4. ", "She earned her golden ticket during an audition in San Francisco, California, after she performed \"When I Was Your Man\" by Bruno Mars. ", " She advanced in the first round of Hollywood Week by performing \"Genie in a Bottle\" by Christina Aguilera. ", "She sang one of her composed original songs to advance for the Showcase week. ", "She advanced to the Top 24 after she sang Maroon 5's \"Love Somebody\". ", "She was one of the first two finalists to be eliminated on March 3.", "\n\nFinals \n\nThe finals took place over six weeks, consisting of seven live shows. ", "They were filmed at CBS Television City in Hollywood, California. ", " There were 10 finalists. ", "Two finalists were eliminated in the first two weeks and one in each subsequent week, based on viewers' votes and the Judges' Save. ", "Scott Borchetta served as the finalists' mentor.", "\n\nTop 10 – Songs from 2002–present \nGuest judge: Kelly Clarkson\n\nTop 8 – Idol Grammy Hits \n\n Group performance: \"Confident\" with Demi Lovato\nNote: Olivia Rox performed \"Trouble\" and Gianna Isabella performed \"If I Ain't Got You\" in the Top 8 performance night for a spot in the top eight. ", "They were part of the Top 10 week's Bottom 3 along with Avalon Young. ", "However, both of them were eliminated and did not advance.", "\n\nTop 6 – American Idol All Time Song Book\nFor the first time this season, the contestants paired up to sing duets.", "\n\nNote: Lee Jean performed \"Let It Be\" and Avalon Young performed \"P.Y.T. (Pretty Young Thing)\" in the Top 6 performance night for a spot in the top six. ", "They were part of the Top 8 week's Bottom 3 along with Sonika Vaid. ", "However, both of them were eliminated and did not advance.", "\n\nTop 5 – America's Twitter Song Choice\nThe finalists performed songs requested by the voting public through Twitter. ", "For the first time in the competition, each finalist performed two songs.", "\n\nNote: Tristan McIntosh performed \"Independence Day\" in the Top 5 performance night for a spot in the top five. ", "She was part of the Top 6 week's Bottom 2 along with Sonika Vaid. ", "However, she was eliminated and did not advance.", "\n\nTop 4 – Classic rock / Sia\nGuest mentors: Sia & Stevie Van Zandt\n\nTop 3 – Hometown Dedication / Scott Borchetta's Choice / Judges' Choice\nEach finalist performed a song dedicated to their hometown, a song Scott Borchetta chose, and a song the judges chose.", "\n\nNote: MacKenzie Bourg performed \"Hallelujah\" in the Hometown Dedication round, but did not advance to the Top 3.", "\n\nTop 2 – Original's Single / Simon Fuller's Choice / Favorite Performance\n\nGroup performance: \"Stole the Show\"\nNote: Dalton Rapattoni performed \"Strike A Match\" in the Original's Single round, but did not advance to the Top 2.", "\n\nElimination chart \n\n The judges' save starts.", "\n The judges' save ends.", "\n\nContestants who appeared on other seasons/shows \n\nMacKenzie Bourg was a semifinalist on the third season of The Voice and was on Team Cee Lo, but was eliminated on the first live show of the season.", "\nAdam Lasher, C.J. Johnson, and Sonika Vaid all auditioned for The Voice. ", "However, none of them scored a chair turn.", "\nOlivia Rox appeared on the eighth season of America's Got Talent; however, she was cut during \"Vegas Week\".", "\nShelbie Z was a contestant on the fifth season of The Voice on Team Blake. ", "She was eliminated during the first live show.", "\nJenna Renae appeared on the tenth season of America's Got Talent; however, she was cut during Week 2 of the Judge's Cuts.", "\nStephany Negrete was a finalist on a program called \"Tengo Talento, Mucho Talento\", season 12, on Estrella TV, an American channel dedicated to the Latino culture.", "\n Anatalia Villaranda tried out on the twelfth season of The Voice was on Team Alicia. ", "She was eliminated during the first live show.", "\n Lindita Halimi won the Festivali i Këngës 55 in Albania, so she would represent Albania in the Eurovision Song Contest 2017 in Kiev, Ukraine with the song \"World\"; however, she was eliminated in Semifinal 1.", "\nThree contestants in the sixteenth season appeared in this season:\nJurnee (eliminated on the last day of Hollywood Week)\nMarcio Donaldson (his group round performance aired on Hollywood Week)\nCatie Turner (turned down by the producers before her audition)\n\nGuest performances\n\nFormer contestants who performed on the April 7 finale included Clay Aiken, Lauren Alaina, Kris Allen, David Archuleta, Fantasia Barrino, Clark Beckham, Bo Bice, Kelly Clarkson, David Cook, Bucky Covington, Chris Daughtry, Diana DeGarmo, Lee DeWyze, Colton Dixon, Melinda Doolittle, James Durbin, Nick Fradiani, Candice Glover, Danny Gokey, Mikalah Gordon, Tamyra Gray, Justin Guarini, Kree Harrison, Taylor Hicks, Amber Holcomb, Jennifer Hudson, George Huff, Allison Iraheta, Casey James, Caleb Johnson, Skylar Laine, Joshua Ledet, Blake Lewis, Kimberley Locke, LaToya London, Sanjaya Malakar, Constantine Maroulis, Scotty McCreery, Katharine McPhee, Phillip Phillips, Kellie Pickler, Brandon Rogers, Jessica Sanchez, Carly Smithson, Jordin Sparks, Ruben Studdard, Pia Toscano, Jasmine Trias, Carrie Underwood, Elliott Yamin, and Ace Young.", "\n\nReception\n\nU.S. Nielsen ratings \n\nLive + same day ratings\n\nSeason 15 premiered to 10.96 million viewers, the second lowest since the series premiere. ", " It received an all-time-low 3.0/9 18–49 rating, down 9% from last season. ", "The season finale however had 13.30 million viewers, 5 million more than the season 14 finale.", "\n\nLive + 7 day (DVR) ratings\n\nInternational broadcasts\nThe season premiered in Australia on Fox8 and in New Zealand on Prime on January 7, 2016 and in the United Kingdom on January 11, 2016 on 4Music. ", "The show broadcasts live throughout Africa and Middle Eastern territories on DSTV's Vuzu Channel 114, but due to it being broadcast at 2 am, there are repeats during the week. ", "The show started in Iran on August 2017 on PMC.", "\n\nMusic releases\nMusic releases\n\nConcert tour\nThis was the first season without a concert tour.", "\n\nReferences\n\nExternal links\n\nCategory:American Idol seasons\nCategory:2016 American television seasons" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.02247191011235955, 0.03305785123966942, 0.018518518518518517, 0, 0.009900990099009901, 0, 0.02040816326530612, 0.012195121951219513, 0, 0, 0, 0.0030211480362537764, 0, 0, 0, 0, 0, 0, 0, 0, 0.016666666666666666, 0, 0, 0.020242914979757085, 0.02586206896551724, 0.004201680672268907, 0.008849557522123894, 0.012658227848101266, 0, 0, 0, 0.009615384615384616, 0.018518518518518517, 0.013513513513513514, 0.014388489208633094, 0, 0.020618556701030927, 0.015748031496062992, 0, 0.02197802197802198, 0.01639344262295082, 0.010752688172043012, 0.018018018018018018, 0.005813953488372093, 0.011363636363636364, 0.011111111111111112, 0, 0, 0.018691588785046728, 0.014492753623188406, 0, 0.019230769230769232, 0.023255813953488372, 0.015625, 0, 0.012048192771084338, 0.009345794392523364, 0.011363636363636364, 0.022222222222222223, 0, 0.02702702702702703, 0.006944444444444444, 0, 0.010101010101010102, 0.01282051282051282, 0, 0.011627906976744186, 0, 0.027522935779816515, 0, 0, 0, 0.02127659574468085, 0.008130081300813009, 0.00625, 0, 0.00980392156862745, 0.022222222222222223, 0, 0.02857142857142857, 0.033707865168539325, 0, 0, 0, 0.022222222222222223, 0.009259259259259259, 0.009708737864077669, 0.014705882352941176, 0, 0.02857142857142857, 0.014925373134328358, 0.015873015873015872, 0.01639344262295082, 0.014925373134328358, 0.013888888888888888, 0.018518518518518517, 0.015151515151515152, 0.013157894736842105, 0, 0, 0, 0.01020408163265306, 0.025210084033613446, 0.011764705882352941, 0.0196078431372549, 0.029411764705882353, 0.02127659574468085, 0, 0, 0, 0.01020408163265306, 0, 0.02857142857142857, 0.022727272727272728, 0, 0.007352941176470588, 0.009259259259259259, 0.01282051282051282, 0.014285714285714285, 0, 0, 0.015151515151515152, 0, 0, 0.020833333333333332, 0.01384083044982699, 0.014285714285714285, 0, 0, 0.012987012987012988, 0.014705882352941176, 0, 0, 0, 0.008849557522123894, 0.015151515151515152, 0, 0.007751937984496124, 0, 0.013215859030837005, 0, 0, 0.005, 0.05405405405405406, 0, 0.009259259259259259, 0.013157894736842105, 0, 0.00819672131147541, 0.012195121951219513, 0.022988505747126436, 0, 0.014354066985645933, 0.045535714285714284, 0, 0, 0, 0.004975124378109453, 0.011363636363636364, 0.02127659574468085, 0.010526315789473684, 0 ]
0.009678
5
[ { "analysis_explanation": null, "end": 24, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15 }, { "analysis_explanation": null, "end": 47, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27 }, { "analysis_explanation": null, "end": 176, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161 }, { "analysis_explanation": null, "end": 191, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 178 }, { "analysis_explanation": null, "end": 242, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 228 }, { "analysis_explanation": null, "end": 255, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244 }, { "analysis_explanation": null, "end": 278, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261 }, { "analysis_explanation": null, "end": 314, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299 }, { "analysis_explanation": null, "end": 364, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 353 }, { "analysis_explanation": null, "end": 386, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 369 }, { "analysis_explanation": null, "end": 420, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 408 }, { "analysis_explanation": null, "end": 432, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 425 }, { "analysis_explanation": null, "end": 446, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 434 }, { "analysis_explanation": null, "end": 474, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 468 }, { "analysis_explanation": null, "end": 503, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 488 }, { "analysis_explanation": null, "end": 529, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 523 }, { "analysis_explanation": null, "end": 643, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 633 }, { "analysis_explanation": null, "end": 826, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 818 }, { "analysis_explanation": null, "end": 855, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 851 }, { "analysis_explanation": null, "end": 1121, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1107 }, { "analysis_explanation": null, "end": 1174, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1163 }, { "analysis_explanation": null, "end": 1262, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1243 }, { "analysis_explanation": null, "end": 1362, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1355 }, { "analysis_explanation": null, "end": 1374, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1364 }, { "analysis_explanation": null, "end": 1386, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1376 }, { "analysis_explanation": null, "end": 1400, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1388 }, { "analysis_explanation": null, "end": 1411, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1402 }, { "analysis_explanation": null, "end": 1421, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1413 }, { "analysis_explanation": null, "end": 1432, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1423 }, { "analysis_explanation": null, "end": 1444, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1434 }, { "analysis_explanation": null, "end": 1456, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1446 }, { "analysis_explanation": null, "end": 1470, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1458 }, { "analysis_explanation": null, "end": 1478, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1472 }, { "analysis_explanation": null, "end": 1487, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1480 }, { "analysis_explanation": null, "end": 1501, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1489 }, { "analysis_explanation": null, "end": 1510, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1503 }, { "analysis_explanation": null, "end": 1520, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1512 }, { "analysis_explanation": null, "end": 1532, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1522 }, { "analysis_explanation": null, "end": 1540, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1534 }, { "analysis_explanation": null, "end": 1549, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1542 }, { "analysis_explanation": null, "end": 1556, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1551 }, { "analysis_explanation": null, "end": 1566, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1558 }, { "analysis_explanation": null, "end": 1578, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1572 }, { "analysis_explanation": null, "end": 1591, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1580 }, { "analysis_explanation": null, "end": 1631, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1621 }, { "analysis_explanation": null, "end": 1647, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1633 }, { "analysis_explanation": null, "end": 1790, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1779 }, { "analysis_explanation": null, "end": 1802, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1792 }, { "analysis_explanation": null, "end": 1817, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1808 }, { "analysis_explanation": null, "end": 1828, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1819 }, { "analysis_explanation": null, "end": 1840, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1830 }, { "analysis_explanation": null, "end": 1901, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1888 }, { "analysis_explanation": null, "end": 1979, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1965 }, { "analysis_explanation": null, "end": 2009, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1995 }, { "analysis_explanation": null, "end": 2061, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2052 }, { "analysis_explanation": null, "end": 2113, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2104 }, { "analysis_explanation": null, "end": 2125, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2115 }, { "analysis_explanation": null, "end": 2151, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2129 }, { "analysis_explanation": null, "end": 2514, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2503 }, { "analysis_explanation": null, "end": 2526, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2516 }, { "analysis_explanation": null, "end": 2593, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2582 }, { "analysis_explanation": null, "end": 2629, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2618 }, { "analysis_explanation": null, "end": 2661, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2634 }, { "analysis_explanation": null, "end": 2922, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2908 }, { "analysis_explanation": null, "end": 2956, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2940 }, { "analysis_explanation": null, "end": 2990, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2975 }, { "analysis_explanation": null, "end": 3025, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3012 }, { "analysis_explanation": null, "end": 3057, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3044 }, { "analysis_explanation": null, "end": 3076, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3063 }, { "analysis_explanation": null, "end": 3097, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3084 }, { "analysis_explanation": null, "end": 3178, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3158 }, { "analysis_explanation": null, "end": 3213, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3199 }, { "analysis_explanation": null, "end": 3232, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3218 }, { "analysis_explanation": null, "end": 3263, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3250 }, { "analysis_explanation": null, "end": 3291, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3281 }, { "analysis_explanation": null, "end": 3330, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3316 }, { "analysis_explanation": null, "end": 3602, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3585 }, { "analysis_explanation": null, "end": 3639, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3630 }, { "analysis_explanation": null, "end": 3651, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3641 }, { "analysis_explanation": null, "end": 3680, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3663 }, { "analysis_explanation": null, "end": 3707, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3695 }, { "analysis_explanation": null, "end": 3729, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3714 }, { "analysis_explanation": null, "end": 3757, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3746 }, { "analysis_explanation": null, "end": 3765, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3759 }, { "analysis_explanation": null, "end": 3848, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3836 }, { "analysis_explanation": null, "end": 4037, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4027 }, { "analysis_explanation": null, "end": 4156, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4145 }, { "analysis_explanation": null, "end": 4166, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4158 }, { "analysis_explanation": null, "end": 4200, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4189 }, { "analysis_explanation": null, "end": 4213, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4207 }, { "analysis_explanation": null, "end": 4295, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4284 }, { "analysis_explanation": null, "end": 4568, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4556 }, { "analysis_explanation": null, "end": 4594, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4587 }, { "analysis_explanation": null, "end": 4602, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4596 }, { "analysis_explanation": null, "end": 4650, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4630 }, { "analysis_explanation": null, "end": 4812, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4797 }, { "analysis_explanation": null, "end": 4833, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4819 }, { "analysis_explanation": null, "end": 4871, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4865 }, { "analysis_explanation": null, "end": 4884, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4873 }, { "analysis_explanation": null, "end": 4891, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4889 }, { "analysis_explanation": null, "end": 4945, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4928 }, { "analysis_explanation": null, "end": 4992, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4979 }, { "analysis_explanation": null, "end": 4999, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4994 }, { "analysis_explanation": null, "end": 5051, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5045 }, { "analysis_explanation": null, "end": 5103, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5097 }, { "analysis_explanation": null, "end": 5126, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5113 }, { "analysis_explanation": null, "end": 5148, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5136 }, { "analysis_explanation": null, "end": 5220, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5209 }, { "analysis_explanation": null, "end": 5230, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5222 }, { "analysis_explanation": null, "end": 5311, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5302 }, { "analysis_explanation": null, "end": 5370, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5358 }, { "analysis_explanation": null, "end": 5540, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5535 }, { "analysis_explanation": null, "end": 5582, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5575 }, { "analysis_explanation": null, "end": 5631, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5626 }, { "analysis_explanation": null, "end": 5708, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5692 }, { "analysis_explanation": null, "end": 5731, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5715 }, { "analysis_explanation": null, "end": 5750, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5741 }, { "analysis_explanation": null, "end": 5757, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5752 }, { "analysis_explanation": null, "end": 5775, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5762 }, { "analysis_explanation": null, "end": 5915, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5911 }, { "analysis_explanation": null, "end": 6066, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6062 }, { "analysis_explanation": null, "end": 6165, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6154 }, { "analysis_explanation": null, "end": 6175, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6167 }, { "analysis_explanation": null, "end": 6255, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6246 }, { "analysis_explanation": null, "end": 6348, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6328 }, { "analysis_explanation": null, "end": 6526, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6519 }, { "analysis_explanation": null, "end": 6571, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6556 }, { "analysis_explanation": null, "end": 6596, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6578 }, { "analysis_explanation": null, "end": 6615, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6606 }, { "analysis_explanation": null, "end": 6626, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6617 }, { "analysis_explanation": null, "end": 6667, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6651 }, { "analysis_explanation": null, "end": 6777, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6772 }, { "analysis_explanation": null, "end": 6799, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6792 }, { "analysis_explanation": null, "end": 6948, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6943 }, { "analysis_explanation": null, "end": 7050, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7042 }, { "analysis_explanation": null, "end": 7057, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7052 }, { "analysis_explanation": null, "end": 7136, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7129 }, { "analysis_explanation": null, "end": 7202, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7191 }, { "analysis_explanation": null, "end": 7223, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7209 }, { "analysis_explanation": null, "end": 7251, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7245 }, { "analysis_explanation": null, "end": 7266, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7253 }, { "analysis_explanation": null, "end": 7286, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7280 }, { "analysis_explanation": null, "end": 7297, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7289 }, { "analysis_explanation": null, "end": 7315, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7309 }, { "analysis_explanation": null, "end": 7362, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7358 }, { "analysis_explanation": null, "end": 7422, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7406 }, { "analysis_explanation": null, "end": 7515, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7511 }, { "analysis_explanation": null, "end": 7644, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7640 }, { "analysis_explanation": null, "end": 7682, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7666 }, { "analysis_explanation": null, "end": 7708, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7702 }, { "analysis_explanation": null, "end": 7718, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7710 }, { "analysis_explanation": null, "end": 7798, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7789 }, { "analysis_explanation": null, "end": 7856, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7842 }, { "analysis_explanation": null, "end": 7896, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7892 }, { "analysis_explanation": null, "end": 7927, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7918 }, { "analysis_explanation": null, "end": 7992, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7979 }, { "analysis_explanation": null, "end": 8055, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8044 }, { "analysis_explanation": null, "end": 8114, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8106 }, { "analysis_explanation": null, "end": 8132, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8116 }, { "analysis_explanation": null, "end": 8153, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8139 }, { "analysis_explanation": null, "end": 8172, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8163 }, { "analysis_explanation": null, "end": 8183, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8174 }, { "analysis_explanation": null, "end": 8193, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8185 }, { "analysis_explanation": null, "end": 8216, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8205 }, { "analysis_explanation": null, "end": 8255, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8245 }, { "analysis_explanation": null, "end": 8272, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8259 }, { "analysis_explanation": null, "end": 8288, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8285 }, { "analysis_explanation": null, "end": 8435, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8426 }, { "analysis_explanation": null, "end": 8493, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8485 }, { "analysis_explanation": null, "end": 8519, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8508 }, { "analysis_explanation": null, "end": 8529, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8521 }, { "analysis_explanation": null, "end": 8573, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8560 }, { "analysis_explanation": null, "end": 8651, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8635 }, { "analysis_explanation": null, "end": 8884, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8876 }, { "analysis_explanation": null, "end": 8894, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8886 }, { "analysis_explanation": null, "end": 8919, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8901 }, { "analysis_explanation": null, "end": 8937, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8929 }, { "analysis_explanation": null, "end": 8953, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8939 }, { "analysis_explanation": null, "end": 8959, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8955 }, { "analysis_explanation": null, "end": 9083, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9064 }, { "analysis_explanation": null, "end": 9109, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9102 }, { "analysis_explanation": null, "end": 9131, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9119 }, { "analysis_explanation": null, "end": 9180, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9168 }, { "analysis_explanation": null, "end": 9229, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9216 }, { "analysis_explanation": null, "end": 9337, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9329 }, { "analysis_explanation": null, "end": 9371, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9358 }, { "analysis_explanation": null, "end": 9390, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9381 }, { "analysis_explanation": null, "end": 9402, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9392 }, { "analysis_explanation": null, "end": 9711, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9698 }, { "analysis_explanation": null, "end": 9723, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9713 }, { "analysis_explanation": null, "end": 9776, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9769 }, { "analysis_explanation": null, "end": 9818, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9804 }, { "analysis_explanation": null, "end": 9825, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9820 }, { "analysis_explanation": null, "end": 9925, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9921 }, { "analysis_explanation": null, "end": 9942, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9931 }, { "analysis_explanation": null, "end": 10020, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10012 }, { "analysis_explanation": null, "end": 10032, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10024 }, { "analysis_explanation": null, "end": 10049, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10034 }, { "analysis_explanation": null, "end": 10070, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10056 }, { "analysis_explanation": null, "end": 10087, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10080 }, { "analysis_explanation": null, "end": 10099, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10089 }, { "analysis_explanation": null, "end": 10146, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10131 }, { "analysis_explanation": null, "end": 10155, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10151 }, { "analysis_explanation": null, "end": 10163, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10157 }, { "analysis_explanation": null, "end": 10252, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10240 }, { "analysis_explanation": null, "end": 10536, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10529 }, { "analysis_explanation": null, "end": 10548, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10538 }, { "analysis_explanation": null, "end": 10571, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10555 }, { "analysis_explanation": null, "end": 10593, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10581 }, { "analysis_explanation": null, "end": 10605, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10595 }, { "analysis_explanation": null, "end": 10613, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10607 }, { "analysis_explanation": null, "end": 10656, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10645 }, { "analysis_explanation": null, "end": 10692, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10676 }, { "analysis_explanation": null, "end": 10747, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10735 }, { "analysis_explanation": null, "end": 10814, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10801 }, { "analysis_explanation": null, "end": 10826, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10816 }, { "analysis_explanation": null, "end": 10883, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10873 }, { "analysis_explanation": null, "end": 10990, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10972 }, { "analysis_explanation": null, "end": 11068, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11051 }, { "analysis_explanation": null, "end": 11206, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11199 }, { "analysis_explanation": null, "end": 11253, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11239 }, { "analysis_explanation": null, "end": 11339, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11330 }, { "analysis_explanation": null, "end": 11351, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11341 }, { "analysis_explanation": null, "end": 11430, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11411 }, { "analysis_explanation": null, "end": 11462, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11442 }, { "analysis_explanation": null, "end": 11525, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11510 }, { "analysis_explanation": null, "end": 11573, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11563 }, { "analysis_explanation": null, "end": 11583, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11579 }, { "analysis_explanation": null, "end": 11625, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11606 }, { "analysis_explanation": null, "end": 11697, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11686 }, { "analysis_explanation": null, "end": 11714, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11704 }, { "analysis_explanation": null, "end": 11754, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11739 }, { "analysis_explanation": null, "end": 11816, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11797 }, { "analysis_explanation": null, "end": 11881, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11872 }, { "analysis_explanation": null, "end": 12046, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12035 }, { "analysis_explanation": null, "end": 12103, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12095 }, { "analysis_explanation": null, "end": 12275, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12267 }, { "analysis_explanation": null, "end": 12307, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12296 }, { "analysis_explanation": null, "end": 12383, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12376 }, { "analysis_explanation": null, "end": 12580, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12564 }, { "analysis_explanation": null, "end": 12701, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12693 }, { "analysis_explanation": null, "end": 12733, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12722 }, { "analysis_explanation": null, "end": 12848, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12832 }, { "analysis_explanation": null, "end": 13004, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12989 }, { "analysis_explanation": null, "end": 13196, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13182 }, { "analysis_explanation": null, "end": 13286, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13270 }, { "analysis_explanation": null, "end": 13514, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13499 }, { "analysis_explanation": null, "end": 13553, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13537 }, { "analysis_explanation": null, "end": 13589, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13583 }, { "analysis_explanation": null, "end": 13646, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13636 }, { "analysis_explanation": null, "end": 13659, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13648 }, { "analysis_explanation": null, "end": 13673, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13661 }, { "analysis_explanation": null, "end": 13690, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13679 }, { "analysis_explanation": null, "end": 13774, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13764 }, { "analysis_explanation": null, "end": 13804, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13787 }, { "analysis_explanation": null, "end": 13815, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13808 }, { "analysis_explanation": null, "end": 13881, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13872 }, { "analysis_explanation": null, "end": 13918, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13902 }, { "analysis_explanation": null, "end": 14005, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13994 }, { "analysis_explanation": null, "end": 14034, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14018 }, { "analysis_explanation": null, "end": 14045, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14038 }, { "analysis_explanation": null, "end": 14094, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14088 }, { "analysis_explanation": null, "end": 14132, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14116 }, { "analysis_explanation": null, "end": 14209, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14200 }, { "analysis_explanation": null, "end": 14238, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14230 }, { "analysis_explanation": null, "end": 14270, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14264 }, { "analysis_explanation": null, "end": 14299, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14280 }, { "analysis_explanation": null, "end": 14331, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14313 }, { "analysis_explanation": null, "end": 14363, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14357 }, { "analysis_explanation": null, "end": 14426, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14412 }, { "analysis_explanation": null, "end": 14467, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14460 }, { "analysis_explanation": null, "end": 14499, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14492 }, { "analysis_explanation": null, "end": 14543, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14539 }, { "analysis_explanation": null, "end": 14552, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14545 }, { "analysis_explanation": null, "end": 14661, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14641 }, { "analysis_explanation": null, "end": 14685, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14674 }, { "analysis_explanation": null, "end": 14693, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14687 }, { "analysis_explanation": null, "end": 14721, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14709 }, { "analysis_explanation": null, "end": 14757, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14741 }, { "analysis_explanation": null, "end": 14824, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14812 }, { "analysis_explanation": null, "end": 14944, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14937 }, { "analysis_explanation": null, "end": 14971, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14961 }, { "analysis_explanation": null, "end": 14986, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14973 }, { "analysis_explanation": null, "end": 14998, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14988 }, { "analysis_explanation": null, "end": 15015, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15000 }, { "analysis_explanation": null, "end": 15033, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15017 }, { "analysis_explanation": null, "end": 15048, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15035 }, { "analysis_explanation": null, "end": 15057, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15050 }, { "analysis_explanation": null, "end": 15073, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15059 }, { "analysis_explanation": null, "end": 15085, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15075 }, { "analysis_explanation": null, "end": 15118, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15104 }, { "analysis_explanation": null, "end": 15133, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15120 }, { "analysis_explanation": null, "end": 15145, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15135 }, { "analysis_explanation": null, "end": 15159, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15147 }, { "analysis_explanation": null, "end": 15178, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15161 }, { "analysis_explanation": null, "end": 15193, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15181 }, { "analysis_explanation": null, "end": 15208, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15195 }, { "analysis_explanation": null, "end": 15224, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15210 }, { "analysis_explanation": null, "end": 15237, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15226 }, { "analysis_explanation": null, "end": 15253, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15239 }, { "analysis_explanation": null, "end": 15266, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15255 }, { "analysis_explanation": null, "end": 15282, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15268 }, { "analysis_explanation": null, "end": 15297, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15284 }, { "analysis_explanation": null, "end": 15311, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15299 }, { "analysis_explanation": null, "end": 15326, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15313 }, { "analysis_explanation": null, "end": 15343, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15328 }, { "analysis_explanation": null, "end": 15356, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15345 }, { "analysis_explanation": null, "end": 15373, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15358 }, { "analysis_explanation": null, "end": 15386, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15375 }, { "analysis_explanation": null, "end": 15401, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15388 }, { "analysis_explanation": null, "end": 15415, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15403 }, { "analysis_explanation": null, "end": 15429, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15417 }, { "analysis_explanation": null, "end": 15442, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15431 }, { "analysis_explanation": null, "end": 15459, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15444 }, { "analysis_explanation": null, "end": 15474, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15461 }, { "analysis_explanation": null, "end": 15491, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15476 }, { "analysis_explanation": null, "end": 15513, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15493 }, { "analysis_explanation": null, "end": 15530, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15515 }, { "analysis_explanation": null, "end": 15548, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15532 }, { "analysis_explanation": null, "end": 15566, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15550 }, { "analysis_explanation": null, "end": 15582, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15568 }, { "analysis_explanation": null, "end": 15598, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15584 }, { "analysis_explanation": null, "end": 15615, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15600 }, { "analysis_explanation": null, "end": 15631, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15617 }, { "analysis_explanation": null, "end": 15646, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15633 }, { "analysis_explanation": null, "end": 15662, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15648 }, { "analysis_explanation": null, "end": 15675, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15664 }, { "analysis_explanation": null, "end": 15690, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15677 }, { "analysis_explanation": null, "end": 15708, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15692 }, { "analysis_explanation": null, "end": 15723, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15710 }, { "analysis_explanation": null, "end": 15962, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15951 }, { "analysis_explanation": null, "end": 16071, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16066 }, { "analysis_explanation": null, "end": 16145, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16136 }, { "analysis_explanation": null, "end": 16172, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16161 }, { "analysis_explanation": null, "end": 16200, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16185 }, { "analysis_explanation": null, "end": 16226, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16208 }, { "analysis_explanation": null, "end": 16246, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16230 }, { "analysis_explanation": null, "end": 16300, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16294 }, { "analysis_explanation": null, "end": 16319, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16305 }, { "analysis_explanation": null, "end": 16397, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16393 }, { "analysis_explanation": null, "end": 16432, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16424 }, { "analysis_explanation": null, "end": 16458, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16454 }, { "analysis_explanation": null, "end": 16473, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16462 }, { "analysis_explanation": null, "end": 16551, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16535 }, { "analysis_explanation": null, "end": 16657, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16649 }, { "analysis_explanation": null, "end": 8202, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 8198 } ]
[ "I saw keys in my dream. ", "Didn’t know exactly what it meant but God has been communicating with me through keys. ", "I wanted to know what this key meant this time. ", "I went to church today and today’s word gave me an interpretation to my dream- delay.", "\n\nAt the office I dozed off on my desk during lunch break with my face on top of papers. ", "In my dream my face was on a pool of my own drool and somebody whispered to me “Anong pangalan mo sa impierno?” ", "Ha? ", "I asked him to repeat because I didn’t quite get it. “", "Anong pangalan mo… sa impierno?” ", "he stressed. ", "Then I woke up.", "\n\nIn this dream I see people fleeing to secure grounds a day before the doomsday of Dec 21. ", "I was a bit worried because I didn’t bother to leave my place and just watched the people as they prepare to go. ", "I knew in my heart there was something big that’s going to happen.", "\n\nThis came as a surprise dream because I have not had any prophetic dream for a long time. ", "I usually ask God for a dream of this nature before I sleep at night but since I felt God gave me enough dreams in the past I say that’s it and I don’t need any more.", "\nI saw the sun emitting some kind of bright strips of fireballs in the sky then the words “Fuck” “Roll” appeared in the sky. ", "Instantaneously those solar flares rolled down to earth and start burning people. ", "Those people some distance from me were swept by the fires from heaven and stopped before us unable to penetrate that shield of protection surrounding me and the people behind me. ", "Those people with me were spared.", "\n\nA high blue building explodes and completely reduced to pieces. ", "I was watching it from another building and saw the debris coming to us in a speed of light. ", "I screamed Lord protect us!!!!!!! ", "I woke up breathing heavily. ", "Then in the next dream, it feels like tribulation period.", "\n\nToday I had a dream about tsunami. ", "In the dream I saw people fleeing from approaching tsunami. ", "I can see water on the ground and the whole panic scared me. ", "I was at home during this scene. ", "I cautioned my mother who I see struggling to run faster to a nearby cliff." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 181, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 176 }, { "analysis_explanation": null, "end": 191, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 186 }, { "analysis_explanation": null, "end": 417, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 412 }, { "analysis_explanation": null, "end": 517, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 503 }, { "analysis_explanation": null, "end": 623, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 618 }, { "analysis_explanation": null, "end": 653, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647 }, { "analysis_explanation": null, "end": 993, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 988 }, { "analysis_explanation": null, "end": 1795, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1790 } ]
[ "Counting objects: 5, done.", "\nCompressing objects: 50% (1/2) \rCompressing objects: 100% (2/2) \rCompressing objects: 100% (2/2), done.", "\nWriting objects: 33% (1/3) \rWriting objects: 66% (2/3) \rWriting objects: 100% (3/3) \rWriting objects: 100% (3/3), 268 bytes, done.", "\nTotal 3 (delta 1), reused 0 (delta 0)\nTo ../satellite/\n 865f920..f9ca10d asdf -> asdf\n ! [", "rejected] master -> master (non-fast forward)\nerror: failed to push some refs to '../satellite/'\n" ]
{ "pile_set_name": "Github" }
[ 0, 0, 0, 0, 0 ]
0
5
[]
[ "//\n// MAOverlay.h\n// MAMapKit\n//\n// \n// Copyright (c) 2011年 Autonavi Inc. All rights reserved.", "\n//\n\n#import \"MAAnnotation.h\"\n#import \"MATypes.h\"\n#import \"MAGeometry.h\"\n\n/*!", "\n @brief 该类是地图覆盖物的基类,所有地图的覆盖物需要继承自此类\n */\n@protocol MAOverlay <MAAnnotation>\n@required\n\n/*!", "\n @brief 返回区域中心坐标.", "\n */\n@property (nonatomic, readonly) CLLocationCoordinate2D coordinate;\n\n/*!", "\n @brief 区域外接矩形\n */\n@property (nonatomic, readonly) MAMapRect boundingMapRect;\n\n@end" ]
{ "pile_set_name": "Github" }
[ 0.01020408163265306, 0, 0.03333333333333333, 0.05555555555555555, 0.013157894736842105, 0.03571428571428571 ]
0.024661
5
[ { "analysis_explanation": null, "end": 182, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 176 }, { "analysis_explanation": null, "end": 280, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265 }, { "analysis_explanation": null, "end": 370, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 357 } ]
[ "Open Tryouts Offer Alternative to National Exposure\n\nThe \"Reebok Basketball Breakthrough Challenge\" is a free open tryout for athletes to be accepted to a national talent showcase.", "\n\nI've been working in sports in the Washington metro area since 2008, starting with an internship at ESPN (formerly Sportstalk) 980. ", "The following summer, I earned an internship in the New Media department for the Washington Mystics.", "\n\nWorking for the Mystics was an incredible experience. ", "I did what I do here (learn and drop serious knowledge on sports) with some pretty awesome people (one of which I continue to work with here at WUSA). ", "One such person was a local D.C. kid, through and through, who was born and raised in the District and was attending Howard University during our internship.", "\n\nThis kid knew everybody. ", "We connected through our shared love of women's basketball and hip-hop music. ", "We still talk to this day, well after a year after we graduated and two years since our internship.", "\n\nMy buddy has a habit of randomly messaging me over Facebook. ", "Knowing about my job of delivering the most interesting perspectives and giving the most dynamic analysis of local high school sports, he asked if I wanted to check out a basketball combine hosted by Reebok. ", "I figured I'd check it out since I could get more exposure to the younger ballers in the area as well as my daily basketball fix (it was an off-day during the NBA Finals).", "\n\nThe Reebok Basketball Breakout Challenge was implanted to be a way to boost the profile of less-visible high school players. ", "In over 14 try-outs around the country, the top kids at each site are then invited to the national showcase at Philadelphia University, where they are evaluated by college coaches where they hopefully raise their recruiting profile and get on the radar for some schools. ", "The Washington, D.C. try-out at Coolidge High had plenty of players battling out for an invite to Philly.", "\n\n\"There are some real tough-nosed kids playing real hard, showing their ability to play the game at the elite level, which is what we're definitely looking for,\" said Amos Leak, an event coordinator with Grassroots who helped organize and evaluate the tryouts with Reebok.", "\n\nWhile the national challenge sounds like every other basketball showcase sponsored by Boost Mobile, Under Armour, NesQuik, and the local Thai restaurant up Wisconsin Ave., ", "the FREE (players interested just need to register for their area's tryout online) open invites to the tryouts make the Reebok Breakout Challenge stand out from the crowd. ", "The best way of putting the spirit of the Headliner tryouts: \"finding that diamond in the rough.\"", "\n\n\"John Wall is a perfect example, he wasn't a big prospect coming out of high school and he needed the opportunity to blossom and become the player we all know he is now,\" said Leak.", "\n\nA lot of the big time summer basketball showcases have deep ties with sponsors. ", "The summer showcase culture has become so intertwined with corporate dollars that the showcases have evolved into mini All-Star games. ", "With the kind of money sponsors pour into these showcases, the sponsor expects the best of the best playing exciting basketball, which can distract from the evaluation exercise. ", "And often, these elite players are already being looked at by 30 schools or have already committed.", "\n\nSo for some players who are just beginning to make a name for themselves and don't have the AAU machine that's necessary to motor along their recruitment, the Breakout Challenge proves the perfect opportunity for players like Rockville High's sophomore point guard Ty White. ", "White heard about the Breakout Challenge through a former teammate.", "\n\n\"I'm just trying to get my name out there and get coaches to look at me. ", "I want to show I can be a good point guard that can lead a team, get my teammates in the game, and score when I need to,\" said White.", "\n\nBy the time I rolled into Coolidge's gym, the tryout was in the midst of fitting in as many games as possible. ", "Free throws and ticky-tack fouls were tossed out as the goal of the tryout was to get players like White as many games against as many different players as possible.", "\n\nNow the tryout invites players to the national 5-day camp in Philadelphia on a need-only basis. ", "Over the weekend, the camp decided to select five players and one alternate. ", "One was Obie Oleka, a power forward out of Prince George's County with great hops. ", "I caught up him with after he dominated one of his games, and you can check out my interview with Oleka and some of his highlights in the video.", "\n\nBut you've got to give credit to the brain trust who thought up a free tryout for high school players to have the chance to attend a high profile national camp. ", "You also have to hand it to the players for getting out there and pushing toward their future. ", "College recruitment is a tough process where a lot politicking and schmoozing are critical elements and it's refreshing to see the process be decided on the floor.", "\n\n\"(The players) need the opportunity to prove themselves, it's not about politics, it's about playing the game,\" said Leak." ]
{ "pile_set_name": "Pile-CC" }
[ 0.005555555555555556, 0.007462686567164179, 0.02, 0, 0.006622516556291391, 0.006369426751592357, 0, 0, 0, 0, 0.004807692307692308, 0, 0, 0.0036900369003690036, 0, 0.01098901098901099, 0.017241379310344827, 0.011627906976744186, 0.010309278350515464, 0.01092896174863388, 0, 0.007407407407407408, 0, 0, 0.01444043321299639, 0.014925373134328358, 0.013333333333333334, 0.007518796992481203, 0.008849557522123894, 0, 0, 0, 0.012048192771084338, 0, 0, 0, 0, 0.008064516129032258 ]
0.005321
5
[ { "analysis_explanation": null, "end": 226, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216 }, { "analysis_explanation": null, "end": 248, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244 }, { "analysis_explanation": null, "end": 333, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 313 }, { "analysis_explanation": null, "end": 651, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647 }, { "analysis_explanation": null, "end": 717, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 709 }, { "analysis_explanation": null, "end": 905, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 897 }, { "analysis_explanation": null, "end": 924, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 918 }, { "analysis_explanation": null, "end": 957, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 948 }, { "analysis_explanation": null, "end": 1362, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1357 }, { "analysis_explanation": null, "end": 1396, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1386 }, { "analysis_explanation": null, "end": 1831, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1821 }, { "analysis_explanation": null, "end": 1837, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1833 }, { "analysis_explanation": null, "end": 1921, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1915 }, { "analysis_explanation": null, "end": 2098, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2089 }, { "analysis_explanation": null, "end": 2336, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2332 }, { "analysis_explanation": null, "end": 2647, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2638 }, { "analysis_explanation": null, "end": 2817, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2813 }, { "analysis_explanation": null, "end": 2847, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2841 }, { "analysis_explanation": null, "end": 3585, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3577 }, { "analysis_explanation": null, "end": 3592, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3587 }, { "analysis_explanation": null, "end": 3860, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3855 }, { "analysis_explanation": null, "end": 3896, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3888 }, { "analysis_explanation": null, "end": 4191, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4186 }, { "analysis_explanation": null, "end": 4212, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4200 }, { "analysis_explanation": null, "end": 4251, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4240 }, { "analysis_explanation": null, "end": 4330, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4320 }, { "analysis_explanation": null, "end": 4377, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4355 }, { "analysis_explanation": null, "end": 4498, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4493 } ]
[ "Feel Young\n\nis a monthly josei manga magazine published by Shōdensha in Japan. ", "Manga artists whose stories have run in this magazine include Moyoco Anno, Mitsue Aoki, Mitsukazu Mihara, Kiriko Nananan, Mari Okazaki, Erica Sakurazawa, Ebine Yamaji, and others.", "\n\nManga\nIC in a Sunflower (1994–97) by Mitsukazu Mihara\nHelter Skelter (1995–97) by Kyoko Okazaki\nHappy Mania (1996–01) by Moyoco Anno\nSayonara Midori-chan (1996–97) by Kyūta Minami\nDolis (1998) by Maki Kusomoto\nDoll (1998–02) by Mitsukazu Mihara\nBeautiful People (2001) by Mitsukazu Mihara\nLove My Life (2001) by Ebine Yamaji\nThe Embalmer (2002–13) by Mitsukazu Mihara\nStrawberry Shortcakes (2002) by Kiriko Nananan\nNew Hana no Asuka-gumi! (", "2003–09) by Satosumi Takaguchi\nPiece of Cake (2003–08) by George Asakura \nSuppli (2003–09) by Mari Okazaki\nBunny Drop (2005–11) by Yumi Unita\nGozen 3-ji no Muhōchitai (2008–09) by Yōko Nemu\nNatsuyuki Rendezvous (2009–12) by Haruka Kawachi\n\nReferences\n\nExternal links\n Official website\n\nCategory:1989 establishments in Japan\nCategory:Japanese monthly manga magazines\nCategory:Josei manga magazines\nCategory:Magazines established in 1989\nCategory:Shodensha" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.012658227848101266, 0.0446927374301676, 0.029411764705882353, 0.015418502202643172 ]
0.025545
5
[ { "analysis_explanation": null, "end": 24, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17 }, { "analysis_explanation": null, "end": 30, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25 }, { "analysis_explanation": null, "end": 77, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72 }, { "analysis_explanation": null, "end": 84, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79 }, { "analysis_explanation": null, "end": 165, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154 }, { "analysis_explanation": null, "end": 183, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167 }, { "analysis_explanation": null, "end": 199, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185 }, { "analysis_explanation": null, "end": 213, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201 }, { "analysis_explanation": null, "end": 231, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215 }, { "analysis_explanation": null, "end": 245, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233 }, { "analysis_explanation": null, "end": 267, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 259 }, { "analysis_explanation": null, "end": 282, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273 }, { "analysis_explanation": null, "end": 327, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 296 }, { "analysis_explanation": null, "end": 366, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 341 }, { "analysis_explanation": null, "end": 421, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 414 }, { "analysis_explanation": null, "end": 450, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 446 }, { "analysis_explanation": null, "end": 473, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 455 }, { "analysis_explanation": null, "end": 520, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 487 }, { "analysis_explanation": null, "end": 526, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 522 }, { "analysis_explanation": null, "end": 560, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 531 }, { "analysis_explanation": null, "end": 566, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 562 }, { "analysis_explanation": null, "end": 583, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 571 }, { "analysis_explanation": null, "end": 648, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 610 }, { "analysis_explanation": null, "end": 654, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 650 }, { "analysis_explanation": null, "end": 673, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 659 }, { "analysis_explanation": null, "end": 682, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 674 }, { "analysis_explanation": null, "end": 707, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 700 }, { "analysis_explanation": null, "end": 730, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 712 }, { "analysis_explanation": null, "end": 780, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 758 }, { "analysis_explanation": null, "end": 817, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 794 }, { "analysis_explanation": null, "end": 852, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 831 }, { "analysis_explanation": null, "end": 866, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 856 }, { "analysis_explanation": null, "end": 875, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 868 }, { "analysis_explanation": null, "end": 910, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 880 }, { "analysis_explanation": null, "end": 919, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 912 }, { "analysis_explanation": null, "end": 960, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 924 }, { "analysis_explanation": null, "end": 1023, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1018 }, { "analysis_explanation": null, "end": 1041, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1033 }, { "analysis_explanation": null, "end": 1049, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1042 }, { "analysis_explanation": null, "end": 1080, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1075 }, { "analysis_explanation": null, "end": 1135, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1131 } ]
[ "Background {#S0001}\n==========\n\nSafety is essential for humanity's peace, growth, prosperity, full realization of its potentials, and achievement of virtues.[@CIT0001] Accordingly, in many psychological, sociological, political, and management theories, need for safety is referred to as one of the fundamental needs of humans.[@CIT0002]\n\nOne of the social environments where safety is of utmost importance is medical centers, including hospitals. ", "In healthcare systems, patient safety has started to receive attention since the latter half of the 1990s and in recent years, it has become a high priority in medical and clinical policies.[@CIT0003],[@CIT0004] Thus, by carefully designing systems and processes, healthcare systems are trying to minimize potentially harmful factors, and patients are at the center of these policies.[@CIT0005] Feeling safe is an essential need of hospitalized patients and vital to feeling well, reducing pain, and improving the quality of care[@CIT0006]--[@CIT0010].", "\n\nIn recent years, however, emerging and reemerging viral diseases have threatened the psychological safety of humans in general and patients in particular.[@CIT0011] Emerging diseases are defined as diseases which appear for the first time in a region or the whole world, have high severity, and rapidly affect a large population.[@CIT0011],[@CIT0012] According to World Health Organization, over recent years, more than 30 emerging infections of varying types, extensions, and severities have appeared in different parts of the world.[@CIT0013] And since there is not a specialized treatment for many of these emerging diseases, they take on epidemic or pandemic proportions over wide geographic areas, increase the number of the infected and deaths, and raise medical costs.[@CIT0011]\n\nIn 2019, a new disease introduced to \"COVID-2019\" that etiological agent is severe acute respiratory syndrome coronavirus 2: \"SARS-CoV-2\"started from China and rapidly spread in over 100 countries, including Iran. ", "In addition, COVID-2019 in China, Italy and Iran have similar infection patterns, this disease has killed thousands of people in these countries.[@CIT0014],[@CIT0015] The initial symptoms of the disease are similar to those of influenza, but the infection gradually develops and affects the respiratory, cardiac, and renal systems.", "The patients who are transferred to medical centers often have signs of dyspnea, tachypnea, and respiratory failure[@CIT0016] There has not been a treatment or vaccine for COVID-2019 up to now and medical personnel can only provide supportive care to the patients.[@CIT0017],[@CIT0018]\n\nAs the first and most important protectors of people's health, the medical personnel in the world are faced with various caring and ethical challenges and issues in dealing with this highly infectious and contagious disease. ", "Some studies have shown that caregivers of patients with COVID-2019 are exposed to psychological crises, including stress, anxiety and depression, also physical crises, such as high blood pressure and fatigue.[@CIT0019],[@CIT0020] But one major challenge in caring for COVID-19 patients is protecting their psychological safety which has a direct impact on the quality of care provided to these patients. ", "The present study is the first work of qualitative research addressing the psychological safety of COVID-19 patients in Iran and other countries. ", "Due to the high contagiousness of the disease and quarantine restrictions, it is neither possible nor ethical to explore the concept of psychological safety from the perspective of the patients infected with the coronavirus. ", "The patients' health professionals who have the closest contact with the patients and spend long periods with them have the best understanding of the patients and their conditions. ", "Accordingly, the focus of the present study is on the health professionals' perception of the psychological safety of COVID-19 patients in Iran. ", "The researchers hope that the findings of the study will help health administrators and health professionals provide a supportive atmosphere where the rights and dignity of the patients and health professionals are properly respected. ", "The present study aims to determine health professionals' perception of the psychological safety of patients infected with the coronavirus (COVID-19).", "\n\nMethods {#S0002}\n=======\n\nThe present study is a work of qualitative research which relies on conventional content analysis. ", "In qualitative research, conventional content analysis is employed when little is known about the subject under study. ", "As a review of literature showed that the concept of psychological safety of COVID-19 patients had not been studied before, the researchers used the above-mentioned approach.[@CIT0021],[@CIT0022]\n\nThe participants consisted of 17 health professionals (6 doctors and 11 nurses) who provided care to COVID-19 patients. ", "Selected via purposeful sampling, the participants represented a wide variety in terms of age, gender, work experience, marital status, etc. ", "The inclusion criteria were: being Iranian, having a good command of Farsi, being in practice in an infection unit for COVID-19 patients, and being able to provide adequate and rich information. ", "Data were collected through 17 semi-structured individual interviews and field notes to the point of saturation from February to April 2020. ", "The interviews were conducted at times and places chosen by the participants in the hospitals designated for the coronavirus infection during the epidemic period of the disease in Iran.", "\n\nEach interview began with a few general questions, including: \"Can you describe your typical day of caring for COVID-19 patients?\", \"", "How do you perceive the psychological safety of COVID-19 patients?\", \"", "What factors affect the psychological safety of these patients?\", ", "and \"What conditions can threaten their psychological safety?\" ", "Subsequently, based on the respondents' answers to the initial questions, follow-up questions would be asked to add to the clarity of the data: \"Can you explain further?\", \"", "What do you mean by that?\", ", "and \"Can you give an example?\". ", "The interviews were conducted in line with the main objective of the study. ", "Lasting from 30 to 45 minutes, each interview was immediately transcribed and read and re-read several times by the first author. ", "Data were analyzed immediately after each interview and the next interview was designed based on the information gathered from its predecessors. ", "The interviews were continued to the point where no new categories could be extracted from the data and information on the dimensions of each category had reached saturation. ", "At the same time as they were collected, the data were analyzed using the conventional content analysis method, ie considering the explicit and implied content of the units of meaning, key points were extracted from the text as open codes. ", "Based on their differences and similarities, the codes were categorized this process was continued until themes could be extracted.[@CIT0023]\n\nRigor {#S0002-S2001}\n-----\n\nThe trustworthiness of the data was tested using Lincoln and Guba's criteria.[@CIT0024] Accordingly, to increase the credibility and accuracy of the data, the researchers used a combination of sources semi-structured interviews, field notes, member check, and peer check. ", "To achieve proportionality, a sampling technique with a maximum variation (age, gender, and work experience) was used. ", "To fulfill the transferability criterion, a full description of the results, the data analysis, and quotations of the participants' statements were provided.", "\n\nEthical Considerations {#S0002-S2002}\n----------------------\n\nAll participants gave written informed consent to participate in the study and included publication of their responses. ", "The present study was conducted in accordance with the principles of the revised Declaration of Helsinki, a statement of ethical principles which directs physicians and other participants in medical research involving human subjects. ", "Moreover, the study was approved by the local Ethics Committee of Fasa University of Medical Sciences, Fasa, Iran (IR.FUMS.REC.1398.195).", "\n\nResults {#S0003}\n=======\n\nIn the present study, 17 health professionals who were responsible for COVID-19 patients in public medical centers were interviewed. ", "The participants consisted of 6 doctors and 11 nurses. [", "Table 1](#T0001){ref-type=\"table\"} shows the participants' demographics.", "Table 1Individual Social Characteristics of the ParticipantsParticipantsSexAge (Year)Marital StatusEducational LevelWork Experience (Years)P1Female25SingleBachelor's degree in nursing13P2Female28MarriedBachelor's degree in nursing10P3Male44MarriedSpecialist Infectious Diseases18P4Female53MarriedSpecialist Pulmonary Diseases2P5Male27MarriedBachelor's degree in nursing8P6Female32SingleBachelor's degree in nursing7P7Female29MarriedBachelor's degree in nursing9P8Male41MarriedSpecialist Infectious Diseases10P9Female28SingleBachelor's degree in nursing8P10Male39MarriedSpecialist Pulmonary Diseases18P11Female44MarriedBachelor's degree in nursing5P12Female28SingleBachelor's degree in nursing15P13Male36SingleBachelor's degree in nursing3P14Male34MarriedBachelor's degree in nursing2P15Female38MarriedBachelor's degree in nursing2P16Female42SingleSpecialist Pulmonary Diseases13P17Female49MarriedSpecialist Infectious Diseases5\n\nThree main themes \"respect for dignity\", \"comprehensive support\" and \"peaceful environment\" with 11 categories were extracted from the data ([Table 2](#T0002){ref-type=\"table\"}).Table 2Themes and Categories Extracted from Content AnalysisCategoryThemeRespect for psychological privacyAvoidance of stigmatizationRespect for confidentialityAvoidance of pitying behaviorsRespect for patients' preferencesRespect for dignityFamily SupportMedical supportSocial supportSpiritual supportComprehensive supportStructural factorsAdequacy of facilitiesPeaceful environment\n\nRespect for Dignity {#S0003-S2001}\n-------------------\n\nThe participants stated that respecting the psychological privacy and confidentiality of hospitalized COVID-19 patients was essential to maintaining their dignity. ", "They also mentioned that it was important to avoid pitying behaviors and labeling the patients (stigmatization) and to provide care in a fair manner. ", "The theme of respect for dignity is comprised of five categories: respect for psychological privacy, respect for confidentiality, avoidance of pitying behaviors, avoidance of stigmatization, and respect for patients' preferences.", "\n\n### Respect for Psychological Privacy {#S0003-S2001-S3001}\n\nThe interviewed health professionals attached great importance to respecting the psychological privacy of COVID-19 patients. ", "These patients suffer from a disease which is still incurable, have to be under quarantine, and are worried about themselves and their families, all of which facts distress them and occasionally cause the patients or their families to become aggressive toward health professionals'. ", "However, health professionals are expected to understand these patients' stressful conditions and respect their psychological privacy in their interactions with them. \"", "Conditions are critical here in Iran due to the coronavirus epidemic and the number of the infected is increasing every day. ", "The health professionals are very active and are risking their lives to care for these patients. ", "But we lack equipment and resources and there aren't enough masks and gloves available. ", "Sometimes, patients have to wait to be tested or when their companions ask for a mask, there aren't any available. ", "They may get agitated and become aggressive and insult the staff. ", "But the health professionals must understand the conditions the patients and their companions are dealing with and consider their difficult psychological conditions while they are interacting with them. (", "Participant 2)\"\n\n### Avoidance of Stigmatization {#S0003-S2001-S3002}\n\nAccording to the participants, labeling the patients or their families as coronavirus-stricken can threaten the social relationships of the patients and their families even after recovery and put their psychological safety at risk. \"", "Right after an individual tests positive for coronavirus, all their family members are tested too and their home is disinfected. ", "Often, family members test negative and are not infected. ", "Healthy family members and recovered patients return home of course. ", "But people avoid them because of their terror and may even stop them from entering their neighborhood and stores and label them coronavirus carriers. ", "Such behaviors cause emotional distress to the patients and their families. (", "Participant 17)\"\n\n### Respect for Confidentiality {#S0003-S2001-S3003}\n\nIn addition, the participants mentioned that health professionals must not reveal information about the patients and their medical conditions and the number of deaths via photos or videos on social media. ", "They stressed that the medical personnel must not disclose this information to anyone except the authorities. \"", "In this coronavirus crisis, though it is important to keep people informed about the critical conditions in the country, maintaining patient confidentiality is still essential. ", "The health professionals should not spread any personal or public information related to the number of the infected, deaths, or the patients' identity on social media. ", "This kind of information should be revealed only through medical and legal channels. ", "The medical information of these patients will remain confidential and their psychological safety and the psychological safety of their families will be respected. (", "Participant 5)\"\n\n### Avoidance of Pitying Behaviors {#S0003-S2001-S3004}\n\nFrom the participants' perspective, to maintain the dignity of these patients, especially those whose condition is critical, health professionals should avoid taking undue pity on them. \"", "Some of the patients are from the slums or are peddlers who live and work in unpleasant financial and environmental conditions. ", "They are admitted and given care when they are in critical conditions. ", "Well, in this crisis, these people are at higher risk of getting the disease. ", "Even before this, you felt sorry for them when you saw them. ", "However, in their interactions with these patients, the medical personnel should avoid pitying behaviors or looks despite the fact that they feel sympathetic towards them. (", "Participant 10)\"\n\n### Respect for Patients' Preferences {#S0003-S2001-S3005}\n\nShowing respect for the COVID-19 patients' preferences is another important category under the theme of respect for their dignity. ", "The health professionals believed that the patients' preferences and decisions regarding self-care, being quarantined at home, and religious beliefs should be respected. \"", "Some of the patients in better health conditions have medical education or are highly-educated and wealthy and it is possible for them to be quarantined at home and continue the process of their recovery there. ", "Maybe those can be allowed to decide where they want to be quarantined. ", "This can even raise their chances of recovery as they won't have to be near other patients infected with the virus and they will have more peace and feel that their dignity has been respected. (", "Participant 15)\"\n\nComprehensive Support {#S0003-S2002}\n---------------------\n\nBased on the participants' responses, comprehensive support of patients infected with the coronavirus is a key factor in maintaining and improving their psychological safety. ", "Accordingly, these patients must be provided with full family, medical, social, and spiritual support. ", "This theme consists of four categories: family support, medical support, social support, and spiritual support.", "\n\n### Family Support {#S0003-S2002-S3001}\n\nThe participants stated that family support is crucial to patients' psychological safety, especially the respect that children show their infected parents and their willingness to stay with them and help with caring for them despite the fact that COVID-19 is highly contagious. \"", "The families of the infected patients won't leave their patients alone; especially the children of those who are not in critical conditions insist that they will take all precautions to be allowed to stay with their parents. ", "This makes the patients who are infected with the coronavirus, especially the older ones, feel better and be more cooperative in their treatment and thus have better psychological safety. (", "Participant 4)\"\n\n### Medical Support {#S0003-S2002-S3002}\n\nThe participants also referred to the role of health professionals in improving the psychological safety of COVID-19 patients: as the most important and closest individuals to these patients, health professionals are in constant contact with the patients and can, through kind behaviors, create a sense of safety for them in their critical conditions. \"", "The medical personnel (the doctors and the nurses) don't leave the patients alone for a second even when it's very dangerous to be close to them. ", "Even when the patients are very depressed and start to cry, they give them hugs and try to soothe them and this makes the patients feel more peaceful and secure. (", "Participant 1)\"\n\n### Social Support {#S0003-S2002-S3003}\n\nAccording to the participants, this disease has terrified people and caused them to ostracize the infected. ", "Social support of the patients by public and non-profit organizations in the form of educating the public about COVID-19 and how to interact with the infected and providing medical and sanitary equipment and facilities can contribute to the psychological safety of the patients in the society. \"", "This disease has created a lot of fear in people. ", "Organizations run by the government and NGOs can inform people about the disease, its incubation period, and the manner of dealing with the infected before and after recovery so people can overcome their fear and behave more appropriately toward the patients and their families, especially after they recover. ", "This way, the patients will feel better. ", "On the other hand, the government and NGOs have started to supply medical masks and gowns and other protective equipment. ", "Well, these social bodies have been able to decrease people's terror to a great extent and teach them that by taking precautions, they can interact with the patients more respectfully and support them in this crisis. (", "Participant 9)\"\n\n### Spiritual Support {#S0003-S2002-S3004}\n\nAnother source of support referred to by the participants was the COVID-19 patients' belief in God and His blessings: the patients perceive God as having supernatural powers and control over every aspect of their lives and a reliable source of support which will help them get over these hard times with the hope of recovery. \"", "On many occasions I've seen patients whispering prayers and asking God to be cured. ", "They also ask us to pray for their recovery. ", "Their belief in God and divine powers gives them feelings of peace and safety. (", "Participant. ", "12)\"\n\nPeaceful Environment {#S0003-S2003}\n--------------------\n\nAccording to the participants, since patients infected with the coronavirus have to stay for 2--3 weeks in the infection units designated for COVID-19 patients and their physical contact with the outside world is forbidden, a well-structured environment with adequate and satisfactory facilities can help them have peace and psychological safety. ", "This theme has two categories: structural factors and adequacy of facilities.", "\n\n### Structural Factors {#S0003-S2003-S3001}\n\nThe health professionals stated that the areas designated for COVID-19 patients---both those whose conditions are critical and are in intensive care units and those whose cases are mild---must have a proper structure in terms of hygiene, temperature, silence, and bed so that the patients can have peace in those environments and be willing to receive care there. \"", "It is true that this infection was so sudden and has become widespread and the number of the infected is huge, but we need clinical environments with a good structure---they should be clean and quiet, air-conditioned, and regularly disinfected. ", "This will make the patients feel secure and want to stay in this environment. (", "Participant 15)\"\n\n### Adequacy of Facilities {#S0003-S2003-S3002}\n\nThe participants stated that facilities which match the patients' age groups, including access to the Internet, television, books, etc. ", "are integral to a peaceful environment and the psychological safety of the patients. \"", "We should allow the patients, as long as it is safe, to have access to at least one or two things which entertain them in the ward. ", "For example, all the patients have cellphones which are properly disinfected and then returned to them. ", "They also have access to free Internet and television so they can have more fun, comfort, and peace in the clinical environment. (", "Participant 13)\"\n\nDiscussion {#S0004}\n==========\n\nCaring for patients suffering from emerging or reemerging diseases is a taxing job posing myriad clinical challenges to health professionals.[@CIT0025],[@CIT0026] One major clinical challenge in caring for patients, especially those infected with the coronavirus, is maintaining and improving their psychological safety.[@CIT0027] Health professionals are expected to respect and consider their patients' psychological safety as an important of their job.[@CIT0004] The COVID-19 pandemic which has spread in over 100 countries and is responsible for the infection and death of an increasing number of people has created such terror of the disease and the infected that the psychological safety of the patients in medical centers and the society is at risk. ", "Thus, the present study was an attempt at determining health professionals' perception of the psychological safety of the patients infected with the virus. ", "Three main themes were extracted from the collected data: respect for dignity, comprehensive support, and peaceful environment.", "\n\nRespecting the dignity of hospitalized patients is an important responsibility of health professionals and is essential to maintaining their psychological safety.[@CIT0021],[@CIT0028] In the present study, the theme of respect for the dignity of COVID-19 patients was found to be comprised of five categories: respect for psychological privacy, respect for confidentiality, avoidance of pitying behaviors, avoidance of stigmatization, and respect for preferences.[@CIT0028],[@CIT0029]\n\nSimilarly, recent studies in Iran stress the significance of respecting patients' dignity, psychological privacy, and confidentiality in systematic and ethical care, which is indicative of the high status of patient dignity in Iranian cultures. ", "However, these studies report that, occasionally, due to work overload, extended and consecutive shifts, and shortage of workforce and equipment, health professionals fail to provide ethical care which demands respect for patient dignity.[@CIT0028],[@CIT0030],[@CIT0031]\n\nHowever, in Iran, as a result of the common cultural beliefs, the current environmental conditions, and insufficiency of medicine and equipment due to the sanction, COVD-19 patients are experiencing increased tension in the life-and-death situation they are in. ", "The patients and their families are given such labels as \"corona-stricken\" and avoided by people. ", "All this psychological tension causes the patients and their families to occasionally lose control over their thoughts and behaviors and become aggressive towards the medical teams. ", "Health professionals are expected to understand their situation, avoid stigmatizing them, and treat them kindly toward maintaining their dignity. ", "Yet, at times, health professionals grow impatient with the patients' disrespectful manners and react harshly, which threatens the patients' psychological safety. ", "The interviewed health professionals mentioned that it is important to the patients and their families that their identity and medical information remain confidential and out of reach of the non-medical staff and other patients. ", "Only authorities should be allowed to announce the number of the infected and deaths without revealing any names. ", "Similarly, many other studies stress the importance of maintaining patient confidentiality as a main aspect of respect for patient dignity.[@CIT0032]--[@CIT0034]\n\nAvoidance of pitying behaviors is another important category extracted from the data. ", "Even though sympathizing with patients is a significant aspect of the supportive role of health professionals, they need to avoid pitying looks and words or any extreme compassion and kindness that destroys human's dignity. ", "Inappropriate pitying may make COVID-19 patients disturbed and aggressive and undermine their self-confidence. ", "Studies show that sympathizing with patients helps them feel better and get over the hard part of their diseases more easily, but inappropriate expressions of pity are detrimental to the patients' self-confidence and psychological safety.[@CIT0010] Although, health professionals, due to the care of these patients have reported more fatigue, depression and stress than before the coronavirus crisis but health professionals are the most important people who have close interaction and communication with patients with COVID 2019, therefore, they play an important and key role in providing psychological support and empathy to these patients. ", "Interaction, kindness, conversation, and empathy away from pity improve patients' senses.[@CIT0035],[@CIT0036]\n\nAccording to the participants' views, showing respect for the preferences of patients infected with the coronavirus is very important to maintaining and improving their psychological safety. ", "The health professionals should respect the patients' decisions regarding their type of treatment and, if possible, the location of their stay in the hospital or at home. ", "Considering the facts that many people have become infected and medical environments are contaminated, patients in good financial conditions and the possibility to receive care at home in rooms separate from their families should be allowed to recover at home under the care of a family member or a private health professionals. ", "These conditions will minimize their exposure to the coronavirus and assure them that they are less likely to transfer their disease to their families or the medical personnel. ", "This will give the patients more peace and psychological safety. ", "The study of Matiti (2008) shows that in order for patient dignity to be maintained, patients should be allowed to participate in their medical decision-making process, which is consistent with the findings of the present study.[@CIT0037] Likewise, Bagheri et al (2012) refer to the participation of patients with cardiac diseases in their treatment plans as the most important factor in maintaining their dignity.[@CIT0029] Thus, it is likely that allowing COVID-19 patients to participate in the making of medical decisions which apply to them will cause them to feel more valuable and psychologically secure.", "\n\nAnother theme extracted from the data is comprehensive support of COVID-19 patients. ", "The participants stated that full support (family, medical, social, and spiritual support) of the patients is an important factor in maintaining and improving their psychological safety. ", "Family members, as the most important sources of support for patients, play a vital role in their care. ", "Even when the infected patients are receiving care from the healthcare system, the support of the family continues and makes the members feel closer to each other.[@CIT0038] In a similar vein, many studies report that family and social support of patients, regardless of their disease, facilitates their adaptation to their condition, thereby improving their psychological safety.[@CIT0027] Similarly, the study of Bailey et al shows that family support reduces patients' anxiety and helps them adapt to their disease and feel better.[@CIT0039]\n\nAnother source of support referred to by the participants is the health professionals who can inspire the patients with hope by being kind to them and smiling at them. ", "Also, by singing and playing music for the patients, health professionals help improve the patients' morale and sense of psychological safety. ", "Hearing the soothing and reassuring words of the doctors and nurses reduces fear and anxiety in the patients and largely satisfies their need for psychological safety.[@CIT0040] Similarly, Mollon et al stress the supportive role of medical personnel in alleviating the pain and suffering of patients.[@CIT0041]\n\nThe participants also mentioned that social support, both from the government and non-governmental organizations, can prove very effective in controlling the coronavirus crisis, reducing anxiety, and consequently improving the psychological safety of the infected. ", "Along the same lines, many other studies report that social organizations and bodies which support hospitalized patients and vulnerable groups in the society play an important role in the enhancement of the psychological safety of patients.[@CIT0010],[@CIT0027],[@CIT0032]\n\nIn the present study, another category under the theme of comprehensive care is spiritual support which is perceived as divine blessings and help from supernatural sources. ", "As the essence of humanity, spirituality is visible in humans' interactions with God, including prayers and invocations, which are performed in the hope of achieving love, faith, and hope.[@CIT0042],[@CIT0043] Though there is mention of the contribution of spiritual support to creating peace and comfort in patients in several studies, divine support, as a factor in psychological safety, has received little attention. ", "The Iranians' strong religious beliefs account for their perception of divine support as a major factor in their achievement of psychological safety.", "\n\nThe final theme extracted from the data in the present study is peaceful environment with the categories of structural factors and adequacy of facilities. ", "The equipment in the environment where patients are cared for plays a key role in their achievement of psychological safety.[@CIT0041],[@CIT0044] Contracting a disease and being placed in the unfamiliar environment of a hospital result in patients' feeling terrified and insecure, a common cause of stress for patients. ", "An unsatisfactory structure in a clinical environment has an adverse effect on the physical and psychological well-being of patients.[@CIT0001],[@CIT0010],[@CIT0027] On the other hand, studies report that a proper structure in clinical environments, including good light, ventilation, cleanliness, and silence, has a positive impact on the recovery of patients, which is consistent with the findings of the present study. ", "Structural factors become especially important in the case of patients with special conditions or a critical illness.[@CIT0045]\n\nAdequacy of facilities, the other dimension of peaceful environment, refers to access to comforts and entertainment. ", "Over time, mankind has become increasingly dependent on digital and electronic devices for entertainment and losing access to these facilities can be stressful. ", "The participants believed that there is need for easy access to modern means of entertainment in the units designated for COVID-19 patients. ", "In a similar vein, Nadighara et al (2016) state that access to facilities significantly contributes to patients' feeling secure.[@CIT0046]\n\nIn conclusion, maintaining and improving the psychological safety of COVID-19 patients in Iran is a major challenge in providing high-quality care to these patients. ", "From the perspective of the participants of the present study, to feel psychologically secure, the patients infected with the coronavirus should be given comprehensive support, have their dignity respected, and receive care in a peaceful environment.", "\n\nLimitations {#S0005}\n===========\n\nOne of the limitations of the present study is that, due to the very high contagiousness of COVID-19, data were collected only through individual interviews via video call. ", "It is suggested that future studies employ other methods of collecting qualitative data, including field notes, observation, and focus group interviews, to add to the richness of the collected data.", "\n\nConclusion {#S0006}\n==========\n\nThe spread of the COVID-19 pandemic in all the provinces of Iran and the increasing number of the infected and deaths has posed the most serious clinical challenge to the healthcare system in the present decade. ", "Meanwhile, maintaining and enhancing the psychological safety of the infected is an important issue in this crisis, thus the need for identifying and understanding the factors which threaten the psychological safety of these patients. ", "The findings of the present study show that receiving care in a peaceful environment where their dignity is respected and they are given comprehensive support is central to the patients' achievement of psychological safety. ", "It follows that there is an urgent need for proper cultural, professional, and organizational efforts to provide COVID-19 patients with an environment where they are given care while their psychological safety is respected. ", "Health officials and policy-makers can use the findings of the present study to create a supportive environment free of clinical tension which addresses the various aspects of the psychological safety of patients to provide high-quality care.", "\n\nThis paper was extracted from a research project with the ethical code (IR.FUMS.REC.1398.195) in Fasa University of Medical Sciences, Fasa, Iran. ", "The authors appreciate Fasa University of Medical Sciences for financially supporting this research.", "\n\nDisclosure {#S0007}\n==========\n\nThe authors report no conflicts of interest in this work.", "\n" ]
{ "pile_set_name": "PubMed Central" }
[ 0.004464285714285714, 0.009057971014492754, 0.005982053838484547, 0.00906344410876133, 0.005859375, 0.0049382716049382715, 0, 0, 0, 0, 0, 0, 0, 0, 0.006309148264984227, 0, 0.005128205128205128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009029345372460496, 0, 0, 0, 0, 0.014598540145985401, 0, 0, 0, 0.004672897196261682, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006578947368421052, 0, 0, 0.014492753623188406, 0, 0, 0, 0, 0, 0, 0, 0, 0.0038314176245210726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0024271844660194173, 0, 0, 0.006024096385542169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0024271844660194173, 0, 0, 0, 0, 0, 0, 0, 0.006195786864931847, 0, 0, 0.004092769440654843, 0.0056179775280898875, 0, 0, 0, 0, 0, 0, 0.008032128514056224, 0, 0, 0.0015527950310559005, 0.006600660066006601, 0.005847953216374269, 0, 0, 0, 0.006546644844517185, 0, 0, 0, 0.0056022408963585435, 0, 0.005199306759098787, 0.006711409395973154, 0.004750593824228029, 0, 0, 0.00625, 0.0071090047393364926, 0.0040650406504065045, 0, 0, 0.0032679738562091504, 0, 0, 0, 0, 0, 0, 0, 0, 0.013513513513513514, 0.01, 0, 0 ]
0.001457
5
[ { "analysis_explanation": null, "end": 553, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 525 }, { "analysis_explanation": null, "end": 573, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 561 }, { "analysis_explanation": null, "end": 841, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 823 }, { "analysis_explanation": null, "end": 1016, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1004 }, { "analysis_explanation": null, "end": 1409, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1397 }, { "analysis_explanation": null, "end": 1544, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1529 }, { "analysis_explanation": null, "end": 1795, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1791 }, { "analysis_explanation": null, "end": 1943, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1938 }, { "analysis_explanation": null, "end": 2000, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1996 }, { "analysis_explanation": null, "end": 2034, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2029 }, { "analysis_explanation": null, "end": 2041, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2036 }, { "analysis_explanation": null, "end": 2050, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2046 }, { "analysis_explanation": null, "end": 2516, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2506 }, { "analysis_explanation": null, "end": 3375, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3371 }, { "analysis_explanation": null, "end": 3946, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3942 }, { "analysis_explanation": null, "end": 5078, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5071 }, { "analysis_explanation": null, "end": 5370, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5348 }, { "analysis_explanation": null, "end": 5556, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5552 }, { "analysis_explanation": null, "end": 6231, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6215 }, { "analysis_explanation": null, "end": 8135, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8131 }, { "analysis_explanation": null, "end": 8141, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8137 }, { "analysis_explanation": null, "end": 8472, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8461 }, { "analysis_explanation": null, "end": 8665, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8631 }, { "analysis_explanation": null, "end": 8849, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8817 }, { "analysis_explanation": null, "end": 9172, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9140 }, { "analysis_explanation": null, "end": 9264, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9230 }, { "analysis_explanation": null, "end": 11220, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11216 }, { "analysis_explanation": null, "end": 11307, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11298 }, { "analysis_explanation": null, "end": 19032, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19030 }, { "analysis_explanation": null, "end": 19197, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19187 }, { "analysis_explanation": null, "end": 22522, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22518 }, { "analysis_explanation": null, "end": 22723, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22716 }, { "analysis_explanation": null, "end": 23022, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23018 }, { "analysis_explanation": null, "end": 25313, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25309 }, { "analysis_explanation": null, "end": 26492, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26486 }, { "analysis_explanation": null, "end": 26498, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26494 }, { "analysis_explanation": null, "end": 26735, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26722 }, { "analysis_explanation": null, "end": 26741, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26737 }, { "analysis_explanation": null, "end": 29775, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29767 }, { "analysis_explanation": null, "end": 31392, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31377 }, { "analysis_explanation": null, "end": 31398, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31394 }, { "analysis_explanation": null, "end": 31592, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31588 }, { "analysis_explanation": null, "end": 32417, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32413 }, { "analysis_explanation": null, "end": 32563, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32545 }, { "analysis_explanation": null, "end": 33629, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33625 }, { "analysis_explanation": null, "end": 33635, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33631 }, { "analysis_explanation": null, "end": 8153, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 8143 }, { "analysis_explanation": null, "end": 33573, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 33563 }, { "analysis_explanation": null, "end": 18, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 13 }, { "analysis_explanation": null, "end": 4349, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 4344 }, { "analysis_explanation": null, "end": 7048, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7043 }, { "analysis_explanation": null, "end": 7054, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7049 }, { "analysis_explanation": null, "end": 7642, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7637 }, { "analysis_explanation": null, "end": 7648, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7643 }, { "analysis_explanation": null, "end": 8181, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 8176 }, { "analysis_explanation": null, "end": 8397, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 8392 }, { "analysis_explanation": null, "end": 9541, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 9536 }, { "analysis_explanation": null, "end": 9974, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 9969 }, { "analysis_explanation": null, "end": 9980, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 9975 }, { "analysis_explanation": null, "end": 10592, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 10587 }, { "analysis_explanation": null, "end": 10598, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 10593 }, { "analysis_explanation": null, "end": 10604, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 10599 }, { "analysis_explanation": null, "end": 11936, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 11931 }, { "analysis_explanation": null, "end": 11942, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 11937 }, { "analysis_explanation": null, "end": 11948, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 11943 }, { "analysis_explanation": null, "end": 12726, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 12721 }, { "analysis_explanation": null, "end": 12732, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 12727 }, { "analysis_explanation": null, "end": 12738, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 12733 }, { "analysis_explanation": null, "end": 13713, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 13708 }, { "analysis_explanation": null, "end": 13719, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 13714 }, { "analysis_explanation": null, "end": 13725, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 13720 }, { "analysis_explanation": null, "end": 14491, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 14486 }, { "analysis_explanation": null, "end": 14497, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 14492 }, { "analysis_explanation": null, "end": 14503, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 14498 }, { "analysis_explanation": null, "end": 15334, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 15329 }, { "analysis_explanation": null, "end": 15340, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 15335 }, { "analysis_explanation": null, "end": 15781, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 15776 }, { "analysis_explanation": null, "end": 15787, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 15782 }, { "analysis_explanation": null, "end": 15793, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 15788 }, { "analysis_explanation": null, "end": 16535, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 16530 }, { "analysis_explanation": null, "end": 16541, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 16536 }, { "analysis_explanation": null, "end": 16547, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 16542 }, { "analysis_explanation": null, "end": 17257, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 17252 }, { "analysis_explanation": null, "end": 17263, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 17258 }, { "analysis_explanation": null, "end": 17269, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 17264 }, { "analysis_explanation": null, "end": 18464, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 18459 }, { "analysis_explanation": null, "end": 18470, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 18465 }, { "analysis_explanation": null, "end": 18476, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 18471 }, { "analysis_explanation": null, "end": 19064, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 19059 }, { "analysis_explanation": null, "end": 19070, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 19065 }, { "analysis_explanation": null, "end": 19549, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 19544 }, { "analysis_explanation": null, "end": 19555, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 19550 }, { "analysis_explanation": null, "end": 19561, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 19556 }, { "analysis_explanation": null, "end": 20307, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 20302 }, { "analysis_explanation": null, "end": 20313, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 20308 }, { "analysis_explanation": null, "end": 20319, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 20314 }, { "analysis_explanation": null, "end": 20948, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 20943 }, { "analysis_explanation": null, "end": 31934, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 31929 }, { "analysis_explanation": null, "end": 32339, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 32334 }, { "analysis_explanation": null, "end": 33756, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 33751 } ]
[ "8 players comprise 2013 Saints practice squad\n\nGriffin, an undrafted rookie from Tulane, completed 32-of-59 passes for 380 yards with two touchdowns and a pick in four preseason games. ", "The Saints elected to start the season with two quarterbacks on the gameday roster: Drew Brees and Luke McCown.", "\n\nWR No. ", "18 Saalim Hakim\n\nHakim caught two balls for 61 yards this preseason, including a 53-yard hook up with Griffin versus Miami Thursday night.", "\n\nTE No. ", "81 Michael Higgins\n\nHiggins caught three passes for 15 yards in the exhibition season.", "\n\nFB No. ", "36 Austin Johnson\n\nJohnson will serve as a safety blanket for Jed Collins, the only fullback on the active roster, in the event of an injury.", "\n\nOT No. ", "70 Marcel Jones\n\nJones will provide offensive line depth to New Orleans in the case of an injury.", "\n\nCB No. ", "30 Jumal Rolle\n\nRolle joined the Saints Tuesday after being claimed off waivers from Buffalo. ", "He is an undrafted rookie who made 16 interceptions in his collegiate career at Catawba College in North Carolina.", "\n\nOL Senio Kelemete\n\nKelemete spent last season, his first in the NFL, with the Arizona Cardinals. ", "He played in one game, the team’s season finale, at right guard. ", "He was the first offensive lineman in NFL history to make a reception in his debut, catching a deflected Brian Hoyer pass intended for Andre Roberts for 10 yards.", "\n\nGriffin, an undrafted rookie from Tulane, completed 32-of-59 passes for 380 yards with two touchdowns and a pick in four preseason games. ", "The Saints elected to start the season with two quarterbacks on the gameday roster: Drew Brees and Luke McCown.", "\n\nWR No. ", "18 Saalim Hakim\n\nHakim caught two balls for 61 yards this preseason, including a 53-yard hook up with Griffin versus Miami Thursday night.", "\n\nTE No. ", "81 Michael Higgins\n\nHiggins caught three passes for 15 yards in the exhibition season.", "\n\nFB No. ", "36 Austin Johnson\n\nJohnson will serve as a safety blanket for Jed Collins, the only fullback on the active roster, in the event of an injury.", "\n\nOT No. ", "70 Marcel Jones\n\nJones will provide offensive line depth to New Orleans in the case of an injury.", "\n\nCB No. ", "30 Jumal Rolle\n\nRolle joined the Saints Tuesday after being claimed off waivers from Buffalo. ", "He is an undrafted rookie who made 16 interceptions in his collegiate career at Catawba College in North Carolina.", "\n\nOL Senio Kelemete\n\nKelemete spent last season, his first in the NFL, with the Arizona Cardinals. ", "He played in one game, the team’s season finale, at right guard. ", "He was the first offensive lineman in NFL history to make a reception in his debut, catching a deflected Brian Hoyer pass intended for Andre Roberts for 10 yards." ]
{ "pile_set_name": "Pile-CC" }
[ 0.005405405405405406, 0.02702702702702703, 0, 0.007246376811594203, 0, 0.023255813953488372, 0, 0.014184397163120567, 0, 0, 0, 0.02127659574468085, 0.008771929824561403, 0.020202020202020204, 0, 0.018518518518518517, 0.007142857142857143, 0.02702702702702703, 0, 0.007246376811594203, 0, 0.023255813953488372, 0, 0.014184397163120567, 0, 0, 0, 0.02127659574468085, 0.008771929824561403, 0.020202020202020204, 0, 0.018518518518518517 ]
0.009172
5
[ { "analysis_explanation": null, "end": 23, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19 }, { "analysis_explanation": null, "end": 279, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269 }, { "analysis_explanation": null, "end": 295, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284 }, { "analysis_explanation": null, "end": 299, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297 }, { "analysis_explanation": null, "end": 326, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 307 }, { "analysis_explanation": null, "end": 413, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406 }, { "analysis_explanation": null, "end": 426, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 421 }, { "analysis_explanation": null, "end": 435, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 427 }, { "analysis_explanation": null, "end": 441, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 436 }, { "analysis_explanation": null, "end": 477, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 453 }, { "analysis_explanation": null, "end": 535, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514 }, { "analysis_explanation": null, "end": 570, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 547 }, { "analysis_explanation": null, "end": 617, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 606 }, { "analysis_explanation": null, "end": 715, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 696 }, { "analysis_explanation": null, "end": 764, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 753 }, { "analysis_explanation": null, "end": 819, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 801 }, { "analysis_explanation": null, "end": 845, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 838 }, { "analysis_explanation": null, "end": 890, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 883 }, { "analysis_explanation": null, "end": 1005, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 991 }, { "analysis_explanation": null, "end": 1052, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1041 }, { "analysis_explanation": null, "end": 1285, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1274 }, { "analysis_explanation": null, "end": 1317, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1304 }, { "analysis_explanation": null, "end": 1339, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1332 }, { "analysis_explanation": null, "end": 1564, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1554 }, { "analysis_explanation": null, "end": 1580, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1569 }, { "analysis_explanation": null, "end": 1584, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1582 }, { "analysis_explanation": null, "end": 1611, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1592 }, { "analysis_explanation": null, "end": 1698, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1691 }, { "analysis_explanation": null, "end": 1711, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1706 }, { "analysis_explanation": null, "end": 1720, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1712 }, { "analysis_explanation": null, "end": 1726, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1721 }, { "analysis_explanation": null, "end": 1762, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1738 }, { "analysis_explanation": null, "end": 1820, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1799 }, { "analysis_explanation": null, "end": 1855, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1832 }, { "analysis_explanation": null, "end": 1902, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1891 }, { "analysis_explanation": null, "end": 2000, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1981 }, { "analysis_explanation": null, "end": 2049, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2038 }, { "analysis_explanation": null, "end": 2104, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2086 }, { "analysis_explanation": null, "end": 2130, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2123 }, { "analysis_explanation": null, "end": 2175, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2168 }, { "analysis_explanation": null, "end": 2290, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2276 }, { "analysis_explanation": null, "end": 2337, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2326 }, { "analysis_explanation": null, "end": 2570, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2559 }, { "analysis_explanation": null, "end": 2602, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2589 } ]
[ "Q:\n\nGravitational potential energy on a see-saw\n\nWhy is it that the total gravitational potential energy of two objects on a see-saw is always constant, no matter the angle?", "\nEDIT: The see-saw is in equilibrium, i.e. the torques on each side balance when the two objects are at the same height. ", "Thus the distances of the two objects from the pivot needn't be the same if their masses are different.", "\n\nA:\n\nBEFORE QUESTION EDIT (Pivot in the middle)\nThis is actually not always true. ", "In general, the gravitational potential energy is given as $U=mgh$, so the gravitational potential energy for each object is then:\n$U_1=m_1gh_1$\n$U_2=m_2gh_2$\nAnd so the total gravitational potential energy is\n$U=m_1gh_1+m_2gh_2=g(m_1h_1+m_2h_2)$\nNow, let's start the see-saw at a level position and say that in this position $U=g(m_1h_1+m_2h_2)=0$. In other words, let's say at this position $h_1=h_2=0$. If potential energy remains constant, then $U=0$ must be true at any orientation\nNow if we rotate the see-saw in either direction, we can argue through symmetry that $h_2=-h_1$. Therefore $U=gh_1(m_1-m_2)$. So we can see that the only way to keep our potential at $0$ is for the masses to be equal. ", "If this is not the case then the potential energy changes. ", "For example, let's say $m_1>m_2$. Then if we move $m_1$ up and $m_2$ down, we see that $U>0$. This is because gravity is doing more negative work on $m_1$ than it is doing positive work on $m_2$.\nTherefore, the only way for your statement to be true is if $m_1=m_2$. In this case gravity is always doing equal but opposite amounts of work on the objects, and so the potential energy is not changing.", "\nGENERAL CASE (Pivot located so net torque is always 0)\nIf net torque is $0$, then the following is true:\n$m_1gx=m_2g(L-x)$ where the see-saw has length $L$ and $x$ is the distance between $m_1$ and the pivot. ", "Expressing $m_2$ in terms of $m_1$ then gives\n$m_2=\\frac{m_1x}{L-x}$\nNow if we think about rotating the see-saw to some angle $\\theta$, we can use trigonometry to show that\n$h_1=xsin(\\theta)$\n$h_2=-(L-x)sin(\\theta)$ (the negative sign is present since if $h_1$ increases, $h_2$ must decrease)\nSo then if we combine all of our work we get \n$U=g(m_1h_1+m_2h_2)=g[m_1xsin(\\theta)-\\frac{m_1x}{L-x}(L-x)sin(\\theta)]=0$\nTherefore, no matter the angle $U=0$ (or it will stay at some constant value).", "\nYou could also make a more qualitative argument that the system will move so that potential energy is minimized. ", "At any angle the system will not move (since net torque about the pivot will always be 0), so you can argue that the potential energy must be constant at all angles.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 1270, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1267 } ]
[ "[Results and current objectives of Austro-Germano-Swiss working group for maxillary and facial tumors (DOSAK) (author's transl)].", "\nThe author describes the creation and field of activity of the Austro-Germano-Swiss working group for maxillary and facial tumors (DOSAK). ", "The first problem discussed by the group was that of the comparison of therapeutic results in epitheliomas of the buccal mucosa, based on the classification established by the U.I.C.C. (Union Internationale Contre le Cancer) in 1973. ", "The objective of DOSAK is to select the statistically confirmed best therapeutic protocols by conducting comparative clinical trials in several centres." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.007751937984496124, 0.007142857142857143, 0.004273504273504274, 0 ]
0.004792
5
[ { "analysis_explanation": null, "end": 55, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35 }, { "analysis_explanation": null, "end": 213, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193 }, { "analysis_explanation": null, "end": 453, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 445 }, { "analysis_explanation": null, "end": 501, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 497 } ]
[ "Whether to judge on effort or results\n\nUnless someone is spectacularly inept, there’s always a reasonable sounding explanation for why the project they were involved with fell short. ", "Maybe the direction was unclear, maybe the technology was harder than expected, maybe it was just too ambitious.", "\n\nIt’s sound and human to be sympathetic to such woes, even if you think things should have gone better or faster or made more of an impact. ", "But at some point, you have to decide whether you’re judging someone’s work merely on their earnest effort or whether it’s by the results (or lack thereof).", "\n\nTo me, that’s the dividing line between someone able to lead a team executing a vision, and someone who’s simply on a team working to a plan. ", "I can’t fault someone who’ve done their part well if the whole thing falters, unless their part was the responsibility of the whole thing.", "\n\nIt’s in this executive leap where judgement is rendered as much on all the things you did, as on all the things you didn’t do. ", "If you’re leading the charge, almost everything that happens could have happened differently by the weight of your choices. ", "You have to accept that if you want to play the lead part.", "\n\nThis negative space, the actions not taken, is carried on confidence. ", "Can you maintain that confidence? ", "Can you build it? ", "If not, soon nothing else matters. ", "You can’t be effective without confidence. ", "That’s the whole buck-stops-here premise.", "\n\nThe hardest part is just how fuzzy that evaluation can be. ", "What does it actually mean to “lose confidence”? ", "It’s usually a build up of so many little things, then the final snowflake that bends the leaf of the bamboo.", "\n\nThe problem is that most creative, entrepreneurial work can’t be examined as a closed system. ", "You don’t get to hold all other variables stable while you examine just the one. ", "Which means conclusions can only be drawn from the whole, fuzzy picture.", "\n\nBeing a leader means accepting such uncertainty, and making or accepting the most compelling choice regardless." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[]
[ "[Tumors of different histological type in unilateral salivary glands: a case report].", "\nTumors of synchronous benign and malignant in unilateral salivary glands have rarely been reported. ", "A case of 21-year-old girl who was diagnosed as synchronously adenoid cystic carcinoma of the left parotid and pleomorphic adenoma of the left submandibular gland. ", "The classification, clinic pathology, diagnosis, possible mechanism were discussed based on similar literatures." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 207, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196 } ]
[ "Composite products comprising a metal matrix and a strengthening or reinforcing phase such as ceramic particulates, whiskers, fibers or the like, show great promise for a variety of applications because they combine some of the stiffness and wear resistance of the reinforcing phase with the ductility and toughness of the metal matrix. ", "Generally, a metal matrix composite will show an improvement in such properties as strength, stiffness, contact wear resistance, and elevated temperature strength retention relative to the matrix metal in monolithic form, but the degree to which any given property may be improved depends largely on the specific constituents, their volume or weight fraction, and how they are processed in forming the composite. ", "In some instances, the composite also may be lighter in weight than the matrix metal per se. ", "Aluminum matrix composites reinforced with ceramics such as silicon carbide in particulate, platelet, or whisker form, for example, are of interest because of their higher stiffness, wear resistance and high temperature strength relative to aluminum.", "\nVarious metallurgical processes have been described for the fabrication of aluminum matrix composites, including methods based on powder metallurgy techniques and liquid-metal infiltration techniques which make use of pressure casting, vacuum casting, stirring, and wetting agents. ", "With powder metallurgy techniques, the metal in the form of a powder and the reinforcing material in the form of a powder, whiskers, chopped fibers, etc., ", "are admixed and then either cold-pressed and sintered, or hot-pressed. ", "The maximum ceramic volume fraction in silicon carbide reinforced aluminum matrix composites produced by this method has been reported to be about 25 volume percent in the case of whiskers, and about 40 volume percent in the case of particulates.", "\nThe production of metal matrix composites by powder metallurgy techniques utilizing conventional processes imposes certain limitations with respect to the characteristics of the products attainable. ", "The volume fraction of the ceramic phase in the composite is limited typically, in the case of particulates, to about 40 percent. ", "Also, the pressing operation poses a limit on the practical size attainable. ", "Only relatively simple product shapes are possible without subsequent processing (e.g., forming or machining) or without resorting to complex presses. ", "Also, nonuniform shrinkage during sintering can occur, as well as nonunifromity of microstructure due to segregation in the compacts and grain growth.", "\nU.S. Pat. ", "No. ", "3,970,136, granted Jul. 20, 1976, to J. C. Cannell et al., ", "describes a process for forming a metal matrix composite incorporating a fibrous reinforcement, e.g. silicon carbide or alumina whiskers, having a predetermined pattern of fiber orientation. ", "The composite is made by placing parallel mats or felts of coplanar fibers in a mold with a reservoir of molten matrix metal, e.g., aluminum, between at least some of the mats, and applying pressure to force molten metal to penetrate the mats and surround the oriented fibers. ", "Molten metal may be poured onto the stack of mats while being forced under pressure to flow between the mats. ", "Loadings of up to about 50% by volume of reinforcing fibers in the composite have been reported.", "\nThe above-described infiltration process, in view of its dependence on outside pressure to force the molten matrix metal through the stack of fibrous mats, is subject to the vagaries of pressure-induced flow processes, i.e., possible non-uniformity of matrix formation, porosity, etc. ", "Non-uniformity of properties is possible even though molten metal may be introduced at a multiplicity of sites within the fibrous array. ", "Consequently, complicated mat/reservoir arrays and flow pathways need to be provided to achieve adequate and uniform penetration of the stack of fiber mats. ", "Also, the aforesaid pressure-infiltration method allows for only a relatively low reinforcement to matrix volume fraction to be achieved because of the difficulty inherent in infiltrating a large mat volume. ", "Still further, molds are required to contain the molten metal under pressure, which adds to the expense of the process. ", "Finally, the aforesaid process, limited to infiltrating aligned particles or fibers, is not directed to formation of aluminum metal matrix composites reinforced with materials in the form of randomly oriented particles, whiskers or fibers.", "\nIn the fabrication of aluminum matrix-alumina filled composites, aluminum does not readily wet alumina, thereby making it difficult to form a coherent product. ", "Various solutions to this problem have been suggested. ", "One such approach is to coat the alumina with a metal (e.g., nickel or tungsten), which is then hot-pressed along with the aluminum. ", "In another technique, the aluminum is alloyed with lithium, and the alumina may be coated with silica. ", "However, these composites exhibit variations in properties, or the coatings can degrade the filler, or the matrix contains lithium which can affect the matrix properties.", "\nU.S. Pat. ", "No. ", "4,232,091 to R. W. Grimshaw et al., ", "overcomes certain difficulties in the art which are encountered in the production of aluminum matrix-alumina composites. ", "This patent describes applying pressures of 75-375 kg/cm.sup.2 to force molten aluminum (or molten aluminum alloy) into a fibrous or whisker mat of alumina which has been preheated to 700.degree. ", "to 1050.degree. ", "C. The maximum volume ratio of alumina to metal in the resulting solid casting was 0.25/1. ", "Because of its dependency on outside force to accomplish infiltration, this process is subject to many of the same deficiencies as that of Cannell et al.", "\nEuropean Patent Application Publication No. ", "115,742 describes making aluminum-alumina composites, especially useful as electrolytic cell components, by filling the voids of a preformed alumina matrix with molten aluminum. ", "The application emphasizes the non-wettability of alumina by aluminum, and therefore various techniques are employed to wet the alumina throughout the preform. ", "For example, the alumina is coated with a wetting agent of a diboride of titanium, zirconium, hafnium, or niobium, or with a metal, i.e., lithium, magnesium, calcium, titanium, chromium, iron, cobalt, nickel, zirconium, or hafnium. ", "Inert atmospheres, such as argon, are employed to facilitate wetting. ", "This reference also shows applying pressure to cause molten aluminum to penetrate an uncoated matrix. ", "In this aspect, infiltration is accomplished by evacuating the pores and then applying pressure to the molten aluminum in an inert atmosphere, e.g., argon. ", "Alternatively, the preform can be infiltrated by vapor-phase aluminum deposition to wet the surface prior to filling the voids by infiltration with molten aluminum. ", "To assure retention of the aluminum in the pores of the preform, heat treatment, e.g., at 1400.degree. ", "to 1800.degree. ", "C., in either a vacuum or in argon is required. ", "Otherwise, either exposure of the pressure infiltrated material to gas or removal of the infiltration pressure will cause loss of aluminum from the body.", "\nThe use of wetting agents to effect infiltration of an alumina component in an electrolytic cell with molten metal is also shown in European Patent Application Publication No. ", "94353. ", "This publication describes production of aluminum by electrowinning with a cell having a cathodic current feeder as a cell liner or substrate. ", "In order to protect this substrate from molten cryolite, a thin coating of a mixture of a wetting agent and solubility suppressor is applied to the alumina substrate prior to start-up of the cell or while immersed in the molten aluminum produced by the electrolytic process. ", "Wetting agents disclosed are titanium, zirconium, hafnium, silicon, magnesium, vanadium, chromium, niobium, or calcium, and titanium is stated as the preferred agent. ", "Compounds of boron, carbon and nitrogen are described as being useful in suppressing the solubility of the wetting agents in molten aluminum. ", "The reference, however, does not suggest the production of metal matrix composites, nor does it suggest the formation of such a composite in, for example, a nitrogen atmosphere.", "\nIn addition to application of pressure and wetting agents, it has been disclosed that an applied vacuum will aid the penetration of molten aluminum into a porous ceramic compact. ", "For example, U.S. Pat. ", "No. ", "3,718,441, granted Feb. 27, 1973, to R. L. Landingham, reports infiltration of a ceramic compact (e.g., boron carbide, alumina and beryllia) with either molten aluminum, beryllium, magnesium, titanium, vanadium, nickel or chromium under a vacuum of less than 10.sup.-6 torr. ", "A vacuum of 10.sup.-2 to 10.sup.-6 torr resulted in poor wetting of the ceramic by the molten metal to the extent that the metal did not flow freely into the ceramic void spaces. ", "However, wetting was said to have improved when the vacuum was reduced to less than 10.sup.-6 torr.", "\nU.S. Pat. ", "No. ", "3,864,154, granted Feb. 4, 1975, to G. E. Gazza et al., ", "also shows the use of vacuum to achieve infiltration. ", "This patent describes loading a cold-pressed compact of AlB.sub.12 powder onto a bed of cold-pressed aluminum powder. ", "Additional aluminum was then positioned on top of the AlB.sub.12 powder compact. ", "The crucible, loaded with the AlB.sub.12 compact \"sandwiched\" between the layers of aluminum powder, was placed in a vacuum furnace. ", "The furnace was evacuated to approximately 10.sup.-5 torr to permit outgassing. ", "The temperature was subsequently raised to 1100.degree. ", "C. and maintained for a period of 3 hours. ", "At these conditions, the molten aluminum penetrated the porous AlB.sub.12 compact.", "\nU.S. Pat. ", "No. ", "3,364,976, granted Jan. 23, 1968, to John N. Reding et al., ", "discloses the concept of creating a self-generated vacuum in a body to enhance penetration of a molten metal into the body. ", "Specifically, it is disclosed that a body, e.g., a graphite mold, a steel mold, or a porous refractory material, is entirely submerged in a molten metal. ", "In the case of a mold, the mold cavity, which is filled with a gas reactive with the metal, communicates with the externally located molten metal through at least one orifice in the mold. ", "When the mold is immersed into the melt, filling of the cavity occurs as the self-generated vacuum is produced from the reaction between the gas in the cavity and the molten metal. ", "Particularly, the vacuum is a result of the formation of a solid oxidized form of the metal. ", "Thus, Reding et al. ", "disclose that it is essential to induce a reaction between gas in the cavity and the molten metal. ", "However, utilizing a mold to create a vacuum may be undesirable because of the inherent limitations associated with use of a mold. ", "Molds must first be machined into a particular shape; then finished, machined to produce an acceptable casting surface on the mold; then assembled prior to their use; then disassembled after their use to remove the cast piece therefrom; and thereafter reclaim the mold, which most likely would include refinishing surfaces of the mold or discarding the mold if it is no longer acceptable for use. ", "Machining of a mold into a complex shape can be very costly and time-consuming. ", "Moreover, removal of a formed piece from a complex-shaped mold can also be difficult (i.e., cast pieces having a complex shape could be broken when removed from the mold). ", "Still further, while there is a suggestion that a porous refractory material can be immersed directly in a molten metal without the need for a mold, the refractory material would have to be an integral piece because there is no provision for infiltrating a loose or separated porous material absent the use of a container mold (i.e., it is generally believed that the particulate material would typically disassociate or float apart when placed in a molten metal). ", "Still further, if it was desired to infiltrate a particulate material or loosely formed preform, precautions should be taken so that the infiltrating metal does not displace at least portions of the particulate or preform resulting in a non-homogeneous microstructure.", "\nAccordingly, there has been a long felt need for a simple and reliable process to produce shaped metal matrix composites which does not rely upon the use of applied pressure or vacuum (whether externally applied or internally created), or damaging wetting agents to create a metal matrix embedding another material such as a ceramic material. ", "Moreover, there has been a long felt need to minimize the amount of final machining operations needed to produce a metal matrix composite body. ", "The present invention satisfies these needs by providing a spontaneous infiltration mechanism for infiltrating a material (e.g., a ceramic material), which is formed into a preform, with molten matrix metal (e.g., aluminum) in the presence of an infiltrating atmosphere (e.g., nitrogen) under normal atmospheric pressures so long as an infiltration enhancer is present at least at some point during the process." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.09090909090909091, 0, 0.01694915254237288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009708737864077669, 0, 0.09090909090909091, 0, 0.027777777777777776, 0, 0, 0, 0, 0, 0.022222222222222223, 0, 0, 0, 0.014285714285714285, 0, 0.00641025641025641, 0, 0, 0, 0, 0, 0.005649717514124294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01090909090909091, 0, 0, 0.09090909090909091, 0, 0.017857142857142856, 0, 0, 0, 0, 0, 0, 0, 0, 0.09090909090909091, 0, 0.016666666666666666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.005448
5
[ { "analysis_explanation": null, "end": 2561, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2557 }, { "analysis_explanation": null, "end": 2603, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2590 }, { "analysis_explanation": null, "end": 2621, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2608 }, { "analysis_explanation": null, "end": 5078, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5074 }, { "analysis_explanation": null, "end": 5115, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5101 }, { "analysis_explanation": null, "end": 8414, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8410 }, { "analysis_explanation": null, "end": 8456, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8443 }, { "analysis_explanation": null, "end": 8477, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8461 }, { "analysis_explanation": null, "end": 8982, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8978 }, { "analysis_explanation": null, "end": 9023, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9011 }, { "analysis_explanation": null, "end": 9046, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9028 }, { "analysis_explanation": null, "end": 9611, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9604 }, { "analysis_explanation": null, "end": 9700, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9696 }, { "analysis_explanation": null, "end": 9742, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9729 }, { "analysis_explanation": null, "end": 9768, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9747 }, { "analysis_explanation": null, "end": 10528, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10516 }, { "analysis_explanation": null, "end": 5304, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 5299 }, { "analysis_explanation": null, "end": 5435, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 5429 }, { "analysis_explanation": null, "end": 5451, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 5444 }, { "analysis_explanation": null, "end": 6906, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 6899 }, { "analysis_explanation": null, "end": 6922, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 6915 }, { "analysis_explanation": null, "end": 8688, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 8683 }, { "analysis_explanation": null, "end": 8716, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 8711 }, { "analysis_explanation": null, "end": 8729, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 8724 }, { "analysis_explanation": null, "end": 8967, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 8962 }, { "analysis_explanation": null, "end": 9164, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 9158 }, { "analysis_explanation": null, "end": 9280, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 9274 }, { "analysis_explanation": null, "end": 9337, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 9331 }, { "analysis_explanation": null, "end": 9482, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 9477 }, { "analysis_explanation": null, "end": 9564, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 9557 }, { "analysis_explanation": null, "end": 9682, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 9676 } ]
[ "\n47 F.Supp. ", "265 (1942)\nIn re ROGERS.", "\nNo. ", "759.", "\nDistrict Court, N. D. Texas, Dallas Division.", "\nOctober 31, 1942.", "\nMaury Hughes and T. F. Monroe, both of Dallas, Tex., ", "for petitioner.", "\nClyde Hood, Asst. ", "U. S. Atty., ", "John A. Erhard, Asst. ", "U. S. Atty., ", "and C. O. Eastus, U. S. Atty., ", "all of Dallas, Tex., ", "and Major H. H. Schultz, Judge Advocate, for the United States.", "\nATWELL, District Judge.", "\nThe Selective Service Act of 1940, in Sec. ", "5 (d) provides that: \"Regular or duly ordained ministers of religion, and students *266 who are preparing for the ministry in theological or divinity schools, recognized as such for more than one year prior to the date of enactment of this Act [September 16, 1940], shall be exempt from training and service (but not from registration).\" ", "Title 50 U.S.C.A.Appendix § 301 etc., ", "and particularly § 305(d) as to ministers.", "\n\"A regular minister of religion\" is a man who customarily preaches and teaches the principles of religion of a recognized church, religious sect, or, religious organization of which he is a member, without having been formally ordained as a minister of religion; and who is recognized by such church, sect, or organization as a minister.", "\n\"A duly ordained minister of religion\" is a man who has been ordained in accordance with the ceremonial, ritual or discipline of a recognized church, religious sect, or religious organization, to teach and preach its doctrines, and to administer its rites and ceremonies and public worship; and who customarily performs those duties.", "\nWhether the petitioner is a \"regular\" or an \"ordained minister\" of this religion is the point at issue. ", "If he is, he is entitled to deferment under class IV-D.\nThe local Board held that he was not. ", "He appealed to the Appeal Board, and that Board affirmed the finding of the local Board. ", "He took no further appeal, and no further appeal has been taken.", "\nThe petitioner charges that the two Boards \"acted arbitrarily and capriciously.\" ", "The general meaning of that particular phrase is \"without any reasonable cause, without cause based upon the law; without reason given; in disregard of evidence. ", "It is comparable to, without justification or excuse; with no substantial evidence to support it; a conclusion contrary to substantial, competent evidence.\"", "\nWhen such an attack is made upon an executive Board, charged with the performance of a duty, the court must inquire into the happenings before such Board and determine whether the allegation is correct. ", "The court may not substitute its judgment for that of a duly constituted executive agency. ", "If the finding of the agency is supported by testimony, then the finding will usually stand and may not be said to be \"arbitrary and capricious.\" ", "The rule is not changed by the fact that the nation is at war. ", "War is made under the Constitution. ", "The writ of habeas corpus may be resorted to by the citizen. ", "Sec. ", "9, Art. ", "1, Constitution. ", "See United States v. Greime, 3 Cir., ", "128 F.2d 811.", "\nThe testimony before the two Boards and here, made up largely of the petitioner's verified questionnaire, shows that the petitioner was an attorney, who had the advantage of a law school education; is about forty-five years old, and has an office in Tulsa, Oklahoma. ", "He is the owner of several farms, oil and gas properties, and other interests which he says are worth approximately $294,000. ", "That his income for the year 1941 was approximately $12,000. ", "From 1929 to 1932 he was a reader in the Tulsa church. ", "He may not be a reader in that particular organization for longer than three years, but is liable to be called as a substitute. ", "During the years that have passed since 1932 he has never been called as a substitute. ", "During several summers he has gone to Boston and further enriched himself in the learning of his church. ", "He is a member of the Board of Directors of the Tulsa church. ", "He married a few months ago. ", "In February, 1941, he was offered a position in the Judge Advocate's office of the United States Army, which he declined. ", "He devotes, and has devoted, the most of his time to his large property and industrial interests. ", "For a number of years he has taken no outside employment as an attorney. ", "He has talked to some persons and has sought to benefit them through the Christian Science religion. ", "He was unable to name any amount, nor to approximate the same, that he has earned from such alleged healing.", "\nThis cursory review of the testimony indicates that his description of himself as an attorney, and as engaged in looking after his own affairs, rather than as \"a regular or ordained minister,\" justifies the truthfulness of his answers and evidence as given in his questionnaire, and before the Boards. ", "It also shows rather conclusively that the Selective Service officers did not act either \"arbitrarily\" or \"capriciously\". ", "They had reasonable cause, based upon the law and supported by the evidence, to find that he was not entitled to deferment. ", "It is rather clear that \"he was not customarily engaged in the duties\" of either an \"ordained\" or a \"regular\" minister. ", "As somewhat helpful, see Helvering v. Rankin, 295 U.S. 123, 131, 55 S.Ct. ", "732, 79 L.Ed. ", "1343; Elmhurst Cemetery Co. v. Commissioner, 300 U.S. 37, 40, 57 S.Ct. ", "324, 81 L.Ed. ", "491.", "\n*267 To hold otherwise would be to disregard not only the facts as disclosed by him, but to overlook the difficulty experienced at this hearing in getting him to avoid evasiveness and to answer direct questions.", "\nThe writ must be discharged, and the petitioner returned to the custody of the Army.", "\nI am substituting this brief opinion for the rather lengthy one delivered at the conclusion of the case.", "\n" ]
{ "pile_set_name": "FreeLaw" }
[ 0, 0, 0, 0, 0.06521739130434782, 0, 0.018518518518518517, 0, 0.10526315789473684, 0.07692307692307693, 0.09090909090909091, 0.07692307692307693, 0.03225806451612903, 0, 0.031746031746031744, 0.08333333333333333, 0.022727272727272728, 0, 0, 0, 0, 0, 0.009523809523809525, 0.010638297872340425, 0.033707865168539325, 0, 0, 0, 0, 0.00980392156862745, 0, 0, 0.015873015873015872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.016129032258064516, 0, 0.01639344262295082, 0, 0, 0.009900990099009901, 0, 0, 0.00819672131147541, 0, 0, 0.013513513513513514, 0, 0.014084507042253521, 0, 0, 0, 0.011764705882352941, 0, 0 ]
0.011543
5
[ { "analysis_explanation": null, "end": 20, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16 }, { "analysis_explanation": null, "end": 72, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61 }, { "analysis_explanation": null, "end": 107, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91 }, { "analysis_explanation": null, "end": 121, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109 }, { "analysis_explanation": null, "end": 138, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126 }, { "analysis_explanation": null, "end": 154, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148 }, { "analysis_explanation": null, "end": 160, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156 }, { "analysis_explanation": null, "end": 188, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 178 }, { "analysis_explanation": null, "end": 206, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196 }, { "analysis_explanation": null, "end": 223, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209 }, { "analysis_explanation": null, "end": 241, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231 }, { "analysis_explanation": null, "end": 260, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248 }, { "analysis_explanation": null, "end": 272, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262 }, { "analysis_explanation": null, "end": 288, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 282 }, { "analysis_explanation": null, "end": 294, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290 }, { "analysis_explanation": null, "end": 319, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 306 }, { "analysis_explanation": null, "end": 358, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 341 }, { "analysis_explanation": null, "end": 417, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 413 }, { "analysis_explanation": null, "end": 627, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 609 }, { "analysis_explanation": null, "end": 690, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 682 }, { "analysis_explanation": null, "end": 2881, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2878 }, { "analysis_explanation": null, "end": 2917, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2904 }, { "analysis_explanation": null, "end": 2927, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2921 }, { "analysis_explanation": null, "end": 2935, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2929 }, { "analysis_explanation": null, "end": 3206, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3201 }, { "analysis_explanation": null, "end": 3216, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3208 }, { "analysis_explanation": null, "end": 3377, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3364 }, { "analysis_explanation": null, "end": 3422, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3410 }, { "analysis_explanation": null, "end": 3451, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3446 }, { "analysis_explanation": null, "end": 3542, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3519 }, { "analysis_explanation": null, "end": 3604, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3595 }, { "analysis_explanation": null, "end": 3632, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3628 }, { "analysis_explanation": null, "end": 3697, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3682 }, { "analysis_explanation": null, "end": 3719, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3713 }, { "analysis_explanation": null, "end": 3833, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3828 }, { "analysis_explanation": null, "end": 3869, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3853 }, { "analysis_explanation": null, "end": 3888, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3874 }, { "analysis_explanation": null, "end": 4112, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4095 }, { "analysis_explanation": null, "end": 5076, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5067 }, { "analysis_explanation": null, "end": 5086, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5080 }, { "analysis_explanation": null, "end": 5096, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5092 }, { "analysis_explanation": null, "end": 5134, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5130 }, { "analysis_explanation": null, "end": 5183, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5179 }, { "analysis_explanation": null, "end": 5186, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5184 }, { "analysis_explanation": null, "end": 5190, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5188 }, { "analysis_explanation": null, "end": 7, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3 } ]
[ "Functional activity and regulation of human beta 2-adrenergic receptors expressed in Xenopus oocytes.", "\nThe recently cloned human beta-adrenergic cDNA and several mutated forms have been expressed in Xenopus laevis oocytes by injection of RNA made from the cDNA under the control of the bacteriophage SP6 promoter. ", "The cDNA and gene of the beta 2-adrenergic receptor possess the unusual feature of having a second upstream ATG (-101 base pairs) and a 19-codon open reading frame 5' to the initiator methionine codon of the receptor (Kobilka, B. K., Dixon, R. A. F., Frielle, T., Dohlman, H. G., Bolanowski, M., Sigal, I. S., Yang-Feng, T. L., Francke, U., Caron, M. G., and Lefkowitz, R. J. (1987) Proc. ", "Natl. ", "Acad. ", "Sci. ", "U.S.A. 84, 46-50). ", "RNA lacking this upstream AUG and open reading frame was translated approximately 10-fold more efficiently both in an in vitro rabbit reticulocyte system and in oocytes. ", "Injected oocytes but not water injected controls expressed typical beta 2-adrenergic receptors as assessed by ligand binding (450 fmol/mg membrane protein) and catecholamine-stimulated adenylate cyclase (approximately 20 fold). ", "Moreover, these receptors displayed typical agonist-induced homologous desensitization when oocytes were incubated with isoproterenol at room temperature for 3-24 h. Among a series of mutations, truncations of the membrane-anchored core of the receptor eliminated receptor binding and cyclase stimulating activity. ", "In contrast, disruption of one of the cAMP-dependent protein kinase phosphorylation sites or removal of the serine/threonine-rich carboxyl terminus had little or no effect on these functions or on the extent of agonist-induced desensitization relative to that observed with native receptor. ", "These studies validate the beta 2-adrenergic nature of the cloned human beta-adrenergic cDNA, document the utility of the Xenopus oocyte system for studying functional and regulatory properties of receptors coupled to adenylate cyclase, and suggest the possibility that elements in the 5' untranslated region of the beta 2-adrenergic receptor RNA may regulate its translation in vivo." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.0047169811320754715, 0.033419023136246784, 0, 0, 0, 0, 0.011764705882352941, 0, 0, 0.003436426116838488, 0.0026041666666666665 ]
0.004662
5
[ { "analysis_explanation": null, "end": 92, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85 }, { "analysis_explanation": null, "end": 205, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 198 }, { "analysis_explanation": null, "end": 302, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299 }, { "analysis_explanation": null, "end": 545, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 540 }, { "analysis_explanation": null, "end": 552, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 547 }, { "analysis_explanation": null, "end": 562, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 554 }, { "analysis_explanation": null, "end": 571, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 564 }, { "analysis_explanation": null, "end": 591, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 586 }, { "analysis_explanation": null, "end": 603, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 593 }, { "analysis_explanation": null, "end": 614, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 605 }, { "analysis_explanation": null, "end": 621, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 616 }, { "analysis_explanation": null, "end": 632, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 623 }, { "analysis_explanation": null, "end": 639, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 634 }, { "analysis_explanation": null, "end": 659, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 654 }, { "analysis_explanation": null, "end": 666, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 661 }, { "analysis_explanation": null, "end": 681, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 672 }, { "analysis_explanation": null, "end": 688, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 683 }, { "analysis_explanation": null, "end": 694, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 690 }, { "analysis_explanation": null, "end": 725, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 719 }, { "analysis_explanation": null, "end": 728, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 726 }, { "analysis_explanation": null, "end": 1298, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1294 } ]
[ "McBride/Charlie Leake Field Aerodrome\n\nMcBride/Charlie Leake Field Aerodrome, , is located north northwest of McBride, British Columbia, Canada.", "\n\nReferences\n\nCategory:Registered aerodromes in British Columbia\nCategory:Regional District of Fraser-Fort George" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.013793103448275862, 0 ]
0.006897
5
[ { "analysis_explanation": null, "end": 7, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 21, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8 }, { "analysis_explanation": null, "end": 60, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47 }, { "analysis_explanation": null, "end": 118, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 111 }, { "analysis_explanation": null, "end": 136, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120 }, { "analysis_explanation": null, "end": 144, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 138 }, { "analysis_explanation": null, "end": 208, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 192 }, { "analysis_explanation": null, "end": 235, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218 } ]
[ "[Prospects and utilization of xeroradiography in the osteoarticular diagnosis and study of soft parts].", "\nXeroradiography and its physical phenomena are briefly described and attention is drawn to its offer of marked contrast and hence greater perception of details than conventional radiography. ", "A comparison is made between ordinary and xero pictures of the spine, mediastinum and lungs with regard to the definition and identification of individual parts. ", "The literature dealing with results obtained in areas where xeroradiography is best employed (joints and accompanying soft parts) is reviewed and personal experience in this field, based on a nosographic criterion and specific diagnostic choice, is presented. ", "Cases illustrated cover ligamentous microcalcifications, knee meniscus calcifications, shoulder periarticular calcifications, and partial fractures. ", "A comparison is made between conventional and xero pictures of joint changes in rheumatoid and uraemic arthritis, and bone changes in osteomyelitis and specific forms of arthritis. ", "Diagnosis in osteo-necrosis and prosthesis complications is also examined. ", "The results are such as to encourage further use of the method in the gathering of a fuller series of selected cases." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.005208333333333333, 0, 0, 0, 0, 0, 0 ]
0.000651
5
[ { "analysis_explanation": null, "end": 45, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30 }, { "analysis_explanation": null, "end": 532, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 517 }, { "analysis_explanation": null, "end": 660, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 649 } ]
[ "Q:\n\nwarning: expression result unused\n\nchar change(const char c){\n (c >= 'A')&&(c <= 'M') ? (", "c+'N'-'A') : \n((c >= 'N')&&(c <= 'Z') ? (", "c-('N'-'A')) : \n((c >='a')&&(c <= 'm') ? (", "c+'n'-'a') :\n((c >= 'n')&&(c <= 'z') ? (", "c-('n'-'a')) : c )));\n}\n\nWhy I get \"warning: expression result unused\" and \"error: control reaches end of non-void function [-Werror,-Wreturn-type]\"?", "\n\nA:\n\nYou get the warning because the expression gets calculated, and then the result is dropped. ", "This is related to the \"reaching the end of the function without returning a value\" error: adding return in front of the expression will fix both:\nchar change(const char c) {\n return (c >= 'A') && (c <= 'M') ? ", "\n (c+'N'-'A') : ((c >= 'N') && (c <= 'Z') ? ", "\n (c-('N'-'A')) : ((c >='a') && (c <= 'm') ? ", "\n (c+'n'-'a') : ((c >= 'n') && (c <= 'z') ? ", "\n (c-('n'-'a')) : c )));\n}\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[]
[ "Cops called to Brit's house\n\nPolice were summoned to Britney Spears's Beverly Hills home Thursday evening in what LAPD are calling a \"custodial dispute.\" \"", "Around 8 p.m. we got a call about a custodial dispute regarding Britney Spears's children,\" officer Jason Lee said. \"", "Officers are still there. ", "We're trying to resolve the dispute peacefully per a court order.\" ", "Officer Lee could not give further details, but said \"a few\" police were dispatched, but no guns were being drawn. ", "In addition to officers, fire trucks, an ambulance and a police helicopter were all on the scene. ", "Spears, who has visitation rights with her two sons Preston, 2, and Jayden James, 1, was scheduled to give the boys over to her ex-husband, Kevin Federline, at 7 p.m. Thursday. ", "A bodyguard for Federline arrived to pick up the boys at the designated time. ", "Police, and Federline's lawyer, Mark Vincent Kaplan, arrived at the house close to 8 p.m. Earlier in the day, Spears showed up 90 minutes late to a scheduled deposition in her custody case – and stayed for only a fraction of an hour. ", "Back at her Beverly Hills home directly after the hearing, when a photographer asked if Kaplan was nice to her, Spears, 26, responded with an emphatic, \"No!\" ", "Spears's lawyer, Sorrell Trope, who on Wednesday filed a request to withdraw from the singer's custody case, said only: \"No comment.\"" ]
{ "pile_set_name": "Pile-CC" }
[ 0.01935483870967742, 0.017094017094017096, 0, 0, 0.008695652173913044, 0, 0.01694915254237288, 0.01282051282051282, 0.01282051282051282, 0.012658227848101266, 0.015037593984962405 ]
0.010494
5
[ { "analysis_explanation": null, "end": 69, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53 }, { "analysis_explanation": null, "end": 83, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70 }, { "analysis_explanation": null, "end": 97, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89 }, { "analysis_explanation": null, "end": 105, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98 }, { "analysis_explanation": null, "end": 169, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156 }, { "analysis_explanation": null, "end": 236, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220 }, { "analysis_explanation": null, "end": 265, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256 }, { "analysis_explanation": null, "end": 378, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 375 }, { "analysis_explanation": null, "end": 586, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 580 }, { "analysis_explanation": null, "end": 639, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 632 }, { "analysis_explanation": null, "end": 642, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 641 }, { "analysis_explanation": null, "end": 660, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 648 }, { "analysis_explanation": null, "end": 663, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 662 }, { "analysis_explanation": null, "end": 735, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 720 }, { "analysis_explanation": null, "end": 746, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 740 }, { "analysis_explanation": null, "end": 755, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 747 }, { "analysis_explanation": null, "end": 886, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 867 }, { "analysis_explanation": null, "end": 932, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 909 }, { "analysis_explanation": null, "end": 943, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 936 }, { "analysis_explanation": null, "end": 951, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 945 }, { "analysis_explanation": null, "end": 972, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 962 }, { "analysis_explanation": null, "end": 1094, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1081 }, { "analysis_explanation": null, "end": 1163, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1157 }, { "analysis_explanation": null, "end": 1187, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1181 }, { "analysis_explanation": null, "end": 1191, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1189 }, { "analysis_explanation": null, "end": 1233, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1227 }, { "analysis_explanation": null, "end": 1257, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1244 }, { "analysis_explanation": null, "end": 1275, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1266 } ]
[ "Monday, 30 May 2016\n\nFor the first time this summer, both Northern Ireland and the Republic of Ireland will be playing at the European Championships, making it a fitting time to explore the long-running rivalry between these not-so-friendly neighbours.", "\n\nTheir history mirrors the turbulent nature of Irish politics in the 20th century, not unique in terms of sectarian footballing rivalries. ", "You may know about the Auld Firm. ", "However, the footballing relationship between Northern Ireland and the Republic is altogether more complex.", "\n\nSeeds of hostility\n\nFootball has been played in Ireland since the 1860's. ", "The sport was organized in Belfast by the Irish Football Association (IFA). ", "It had initially been more popular among the Protestant communities of Ulster, but by the 1880's, the sport was increasingly gaining traction further south, and the IFA faced accusations of a continuing Ulster-Protestant bias.", "\n\nFor example, from 1882 to 1921 players from Leinster clubs won just 75 caps for the Irish national team, compared to 798 for Ulster players. ", "Belfast was assigned as the de-facto home of Irish football, hosting 48 international matches during this period, compared to only 6 for Dublin.", "\n\nPartition\n\nThe schism in Irish football aligned with the increasingly fragmented nature of the country. ", "British rule had been immensely unpopular, especially among Ireland’s Catholic population, who saw themselves as a conquered people. ", "The British imperial project was discredited by a long record of misgovernance, neglect and under-representation. ", "Symptomatic of this was the Irish famine of the 1840's, causing the population to shrink by more than 20%.", "\n\nUnrest had been simmering , and it boiled over during the Easter Rising of 1916, where Nationalists took up arms for independence. ", "The British brutally crushed the rebellion, executing rebel leaders in the process. ", "Ultimately, this ruthless reaction increased sympathy for the Nationalist cause, and British rule in the entirety of Ireland was becoming untenable.", "\n\nHowever, many in the North - which had a Protestant majority - remained largely loyal. ", "The Scots-Irish Ulster Protestants identified as British, opposing any notions of independence.", "\n\nIn 1920, the British passed the Government of Ireland Act, which set the framework for the division of Ireland, with semi-autonomous parliaments in the North and South. ", "The move was designed to placate calls for home rule in the majority Catholic South whilst also appeasing Northern Protestants.", "\n\nThis did not dampen Nationalist spirits, however. ", "Fighting followed in the Irish War of Independence, and by 1922 the British finally conceded. ", "They granted total independence to the Irish Free State, with the catch that Northern Ireland was able to opt out and remain in the United Kingdom.", "\n\nIn these tumultuous times, it was inevitable that football would become subject to the split. ", "Southern footballing officials, already smarting from decades of neglect and perceived bias from Belfast, created a new Football Association for the Irish Free State. ", "The Football Association of Ireland (FAI) was born.", "\n\nCompeting claims to football sovereignty\n\nWhat followed over the next few decades was a tussle for the identity of Irish Football. ", "Both Football Associations claimed to be the sole representative for the entirety of Ireland, and both used the name \"Ireland\".", "\n\nThe IFA frequently selected players from south of the border to play for their Ireland team. ", "Indeed, there were a total of 38 dual internationals from 1921 to 1950.", "\n\nThe situation became particularly farcical during qualification for the 1950 World Cup, the first tournament that both teams had entered. ", "Four players (Tom Aherne, Reg Ryan, Davy Walsh and Con Martin) played for both the Republic and Northern Ireland during the campaign. ", "All were Southern born, but had been persuaded by the IFA to turn out for the North. ", "The FAI, understandably disgruntled with the situation, started to lobby FIFA for a resolution to the uncertainty.", "\n\nThat resolution came in 1953. ", "FIFA decreed that eligibility would be restricted according to political borders, bringing an end to the dual internationals. ", "Furthermore, in a characteristic compromise, FIFA ruled that neither team could call themselves \"Ireland\". ", "Rather, they would now be officially referred to as the \"Republic of Ireland\" and \"Northern Ireland\".", "\n\nThis arrangement remained largely intact until the Good Friday Agreement of 1998, which allowed Northern Irish nationals to claim citizenship with the Republic, something that has been taken up by many Northern Irish Catholics, such as Daniel Devine, Darron Gibson, Shane Duffy, Marc Wilson, Daniel Kearns, and Paul George.", "\n\nThis has reignited elements of the historical tensions between the two FA's, with the Northern Irish attacking what they perceive as ‘footballing apartheid’.", "\n\nAttempts at reconciliation\n\nRemarkably, in the 1970's, during the height of The Troubles, there were attempts to reunite the two teams. ", "Many pointed to the fact that rugby union was organized on a all-Ireland basis, and argued that unification could help heal the rifts between two nations.", "\n\nReunification had some high profile supporters. ", "George Best was always vocal in his desire to play for a united Ireland team.", "\n\nBetween 1973 and 1980, the two FA's met for a number of meetings to discuss the issue. ", "However, an agreement was never reached. ", "Ultimately, the political fault lines were simply too vast, as Harry Cavan, the IFA president at the time, commented:\n\n“The problem with people who speak glibly of unity in Irish soccer . . . ", "is that they tend to ignore the facts of life here in the North of Ireland. ", "The concept of one Ireland football team may be exciting but, unfortunately, it does not take account of the fact that we are living in troubled times. “", "\n\nA barmy night in Belfast\n\nWith unification now a distant dream, the rivalry continued. ", "One of the most heated clashes between the two teams came in 1993 at Windsor Park, in the final qualification match for the 1994 World Cup.", "\n\nJack Charlton’s Republic of Ireland needed to avoid defeat in order to qualify for the tournament. ", "Northern Ireland were already out of the World Cup, but the prospect of thwarting their neighbours was more than enough motivation.", "\n\nIt was given extra spice by events surrounding the match. ", "In the weeks leading up to it, 23 people had been killed by paramilitaries from both sides of the conflict. ", "Players from the Republic arrived in Belfast accompanied by a massive police presence, with fears that sectarian tensions could boil over.", "\n\nThe mood in Windsor Park was feverish. ", "Jack Charlton commented that “I have never seen a more hostile atmosphere.\" ", "Republic midfielder Alan McLoughlin recalls receiving fervent abuse throughout the match from the stands:\n\n” I could hear it and feel it right behind me. ", "You didn’t dare look around and make eye contact. ", "The venom in their eyes shocked me.”", "\n\nOn the night, Jimmy Quinn’s 73rd minute goal seemed to have sunk the Republic, sending the passionate home support into delirium. ", "However, McLoughlin’s equalizer five minutes later was enough to send the Republic to the World Cup. ", "So ended one of the most heated and hostile football matches ever played on the British Isles.", "\n\nImproving relations?", "\n\nToday political tensions remain, and the tribal nature of football often magnifies this. ", "After all, it was only recently that former Northern Irish international Neil Lennon received abuse and death threats from his own fans. ", "Lennon, a Catholic Celtic player who had voiced his desire for a United-Ireland team, could not be accepted by a section of the Northern Irish support.", "\n\nHowever, the worst of the Troubles seem a long way away. ", "Most will agree that progress has been made in Northern Ireland through the peace process. ", "Furthermore, Northern Ireland and the Republic of Ireland have met each other in friendly matches since, in a less venomous atmosphere.", "\n\nA united Ireland team seems unlikely, and the rivalry will continue. ", "Hopefully, a rivalry that can retain its intensity, but also be one of mutual respect and (begrudging) admiration." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0.013157894736842105, 0.01327433628318584, 0.013986013986013986, 0, 0, 0.007518796992481203, 0, 0, 0, 0, 0, 0, 0, 0.005847953216374269, 0, 0, 0, 0.006802721088435374, 0, 0, 0.0196078431372549, 0.007518796992481203, 0.007874015748031496, 0.010526315789473684, 0, 0, 0.029850746268656716, 0.011764705882352941, 0.008771929824561403, 0, 0.007936507936507936, 0.009345794392523364, 0, 0.018461538461538463, 0, 0.007246376811594203, 0, 0, 0.012987012987012988, 0.011235955056179775, 0, 0.010416666666666666, 0, 0, 0, 0, 0.009900990099009901, 0, 0, 0, 0, 0, 0.013157894736842105, 0.006493506493506494, 0, 0, 0.007575757575757576, 0.009900990099009901, 0, 0, 0, 0.0072992700729927005, 0.013245033112582781, 0.01694915254237288, 0, 0, 0, 0 ]
0.004365
5
[ { "analysis_explanation": null, "end": 19, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 51, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40 }, { "analysis_explanation": null, "end": 74, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58 }, { "analysis_explanation": null, "end": 102, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79 }, { "analysis_explanation": null, "end": 304, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299 }, { "analysis_explanation": null, "end": 333, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 317 }, { "analysis_explanation": null, "end": 487, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 471 }, { "analysis_explanation": null, "end": 588, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 581 }, { "analysis_explanation": null, "end": 603, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 599 }, { "analysis_explanation": null, "end": 641, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 634 }, { "analysis_explanation": null, "end": 738, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 728 }, { "analysis_explanation": null, "end": 760, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 754 }, { "analysis_explanation": null, "end": 777, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 773 }, { "analysis_explanation": null, "end": 892, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 886 }, { "analysis_explanation": null, "end": 940, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 928 }, { "analysis_explanation": null, "end": 999, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 994 }, { "analysis_explanation": null, "end": 1058, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1051 }, { "analysis_explanation": null, "end": 1101, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1096 }, { "analysis_explanation": null, "end": 1194, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1188 }, { "analysis_explanation": null, "end": 1226, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1221 }, { "analysis_explanation": null, "end": 1307, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1300 }, { "analysis_explanation": null, "end": 1367, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1360 }, { "analysis_explanation": null, "end": 1378, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1370 }, { "analysis_explanation": null, "end": 1444, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1437 }, { "analysis_explanation": null, "end": 1580, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1575 }, { "analysis_explanation": null, "end": 1599, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1595 }, { "analysis_explanation": null, "end": 1733, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1729 }, { "analysis_explanation": null, "end": 1753, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1741 }, { "analysis_explanation": null, "end": 1796, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1789 }, { "analysis_explanation": null, "end": 1942, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1931 }, { "analysis_explanation": null, "end": 1961, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1954 }, { "analysis_explanation": null, "end": 1993, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1986 }, { "analysis_explanation": null, "end": 2044, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2039 }, { "analysis_explanation": null, "end": 2069, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2059 }, { "analysis_explanation": null, "end": 2114, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2109 }, { "analysis_explanation": null, "end": 2139, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2128 }, { "analysis_explanation": null, "end": 2161, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2154 }, { "analysis_explanation": null, "end": 2208, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2204 }, { "analysis_explanation": null, "end": 2221, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2214 }, { "analysis_explanation": null, "end": 2311, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2304 }, { "analysis_explanation": null, "end": 2358, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2353 }, { "analysis_explanation": null, "end": 2368, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2363 }, { "analysis_explanation": null, "end": 2453, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2439 }, { "analysis_explanation": null, "end": 2496, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2476 }, { "analysis_explanation": null, "end": 2529, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2518 }, { "analysis_explanation": null, "end": 2611, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2607 }, { "analysis_explanation": null, "end": 2623, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2616 }, { "analysis_explanation": null, "end": 2735, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2719 }, { "analysis_explanation": null, "end": 2788, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2770 }, { "analysis_explanation": null, "end": 2892, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2884 }, { "analysis_explanation": null, "end": 2945, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2938 }, { "analysis_explanation": null, "end": 2988, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2981 }, { "analysis_explanation": null, "end": 3184, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3164 }, { "analysis_explanation": null, "end": 3223, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3218 }, { "analysis_explanation": null, "end": 3326, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3319 }, { "analysis_explanation": null, "end": 3359, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3352 }, { "analysis_explanation": null, "end": 3448, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3441 }, { "analysis_explanation": null, "end": 3520, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3513 }, { "analysis_explanation": null, "end": 3525, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3521 }, { "analysis_explanation": null, "end": 3689, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3679 }, { "analysis_explanation": null, "end": 3699, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3691 }, { "analysis_explanation": null, "end": 3711, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3701 }, { "analysis_explanation": null, "end": 3726, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3716 }, { "analysis_explanation": null, "end": 3777, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3761 }, { "analysis_explanation": null, "end": 3816, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3808 }, { "analysis_explanation": null, "end": 3882, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3877 }, { "analysis_explanation": null, "end": 4027, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4023 }, { "analysis_explanation": null, "end": 4259, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4252 }, { "analysis_explanation": null, "end": 4361, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4345 }, { "analysis_explanation": null, "end": 4444, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4440 }, { "analysis_explanation": null, "end": 4474, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4460 }, { "analysis_explanation": null, "end": 4580, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4566 }, { "analysis_explanation": null, "end": 4590, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4581 }, { "analysis_explanation": null, "end": 4613, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4600 }, { "analysis_explanation": null, "end": 4628, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4615 }, { "analysis_explanation": null, "end": 4641, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4630 }, { "analysis_explanation": null, "end": 4654, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4643 }, { "analysis_explanation": null, "end": 4669, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4656 }, { "analysis_explanation": null, "end": 4686, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4675 }, { "analysis_explanation": null, "end": 4788, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4774 }, { "analysis_explanation": null, "end": 4897, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4893 }, { "analysis_explanation": null, "end": 5196, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5185 }, { "analysis_explanation": null, "end": 5256, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5242 }, { "analysis_explanation": null, "end": 5284, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5263 }, { "analysis_explanation": null, "end": 5465, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5454 }, { "analysis_explanation": null, "end": 5569, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5564 }, { "analysis_explanation": null, "end": 5657, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5637 }, { "analysis_explanation": null, "end": 5685, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5678 }, { "analysis_explanation": null, "end": 5837, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5830 }, { "analysis_explanation": null, "end": 5965, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5961 }, { "analysis_explanation": null, "end": 5981, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5969 }, { "analysis_explanation": null, "end": 6028, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6024 }, { "analysis_explanation": null, "end": 6055, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6040 }, { "analysis_explanation": null, "end": 6075, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6056 }, { "analysis_explanation": null, "end": 6155, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6139 }, { "analysis_explanation": null, "end": 6341, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6332 }, { "analysis_explanation": null, "end": 6481, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6474 }, { "analysis_explanation": null, "end": 6600, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6588 }, { "analysis_explanation": null, "end": 6628, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6615 }, { "analysis_explanation": null, "end": 6699, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6691 }, { "analysis_explanation": null, "end": 6726, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6711 }, { "analysis_explanation": null, "end": 6944, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6935 }, { "analysis_explanation": null, "end": 6959, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6946 }, { "analysis_explanation": null, "end": 6971, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6960 }, { "analysis_explanation": null, "end": 7112, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7094 }, { "analysis_explanation": null, "end": 7256, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7239 }, { "analysis_explanation": null, "end": 7284, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7279 }, { "analysis_explanation": null, "end": 7426, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7412 }, { "analysis_explanation": null, "end": 7452, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7441 }, { "analysis_explanation": null, "end": 7511, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7505 }, { "analysis_explanation": null, "end": 7584, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7570 }, { "analysis_explanation": null, "end": 7647, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7633 }, { "analysis_explanation": null, "end": 7777, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7761 }, { "analysis_explanation": null, "end": 7834, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7818 }, { "analysis_explanation": null, "end": 7862, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7839 }, { "analysis_explanation": null, "end": 7957, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7943 } ]
[ "Patterns of failure in nasopharyngeal cancer treated with megavoltage irradiation.", "\nFrom 1976 to 1982, 78 patients with nasopharyngeal cancer (NPC) were treated with definitive megavoltage irradiation in accordance with a uniform protocol. ", "The results of treatment were analyzed and prognostic factors reviewed. ", "The incidence of primary failures was directly related to the extent of nasopharyngeal disease, since the relapse rate was 11% in T1T2 patients compared with 37.5% in T3T4 patients. ", "Similarly, failure in the neck correlated with the N stage, being negligible for N0 and N1, while 35.7% for N3. ", "The presence of bulky cervical nodes was associated with a higher risk for metastases: hematogenous dissemination occurred in 50% of N3B patients. ", "The histology pattern seemed to significantly affect the ultimate outcome of patients with NPC, since disease-free survival was 65.5% in patients with a diagnosis of undifferentiated carcinoma (UC) and 23.8% in patients with squamous cell carcinoma (SC). ", "The major cause of poor survival in this latter patient group was not only a higher recurrence rate of both primary and nodal disease but a greater incidence of distant metastases as well." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.006369426751592357, 0, 0, 0.008928571428571428, 0, 0.00784313725490196, 0 ]
0.002893
5
[ { "analysis_explanation": null, "end": 100, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83 }, { "analysis_explanation": null, "end": 576, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 574 }, { "analysis_explanation": null, "end": 741, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 738 }, { "analysis_explanation": null, "end": 576, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 574 }, { "analysis_explanation": null, "end": 583, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 581 }, { "analysis_explanation": null, "end": 603, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 601 } ]
[ "About 1 results for \"david edelstein\"\n\nFrom shy bride to passionate campaigner, the story of Princess Diana was more often than not told through photographs.", "On her 20th death anniversary, August 31, a walk down memory lane to remember the iconic 'People's Princess'. ", "Who can forget this iconic moment -- Lady Diana Spencer showing up in her gown for the first time ahead of her wedding to Prince Charles back in 1981?The 20 year old shot into the limelight at this very moment.", "Her gown designed by David Emanuel went down as one of the ...Rediff.com, 1 month ago" ]
{ "pile_set_name": "Pile-CC" }
[ 0.012738853503184714, 0, 0.009523809523809525, 0.023529411764705882 ]
0.011448
5
[ { "analysis_explanation": null, "end": 36, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21 }, { "analysis_explanation": null, "end": 107, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102 }, { "analysis_explanation": null, "end": 198, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189 }, { "analysis_explanation": null, "end": 323, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 310 }, { "analysis_explanation": null, "end": 404, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 390 }, { "analysis_explanation": null, "end": 433, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 413 }, { "analysis_explanation": null, "end": 513, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 500 }, { "analysis_explanation": null, "end": 564, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 553 }, { "analysis_explanation": null, "end": 551, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 538 } ]
[ "Garrett is back to talk about what its like to produce a podcast as well as talk about the industry as as speculate on the video game media industry as a whole. ", "If you ever wanted to know about esports, casting, and the future of gaming then this is the episode to listen to!" ]
{ "pile_set_name": "Pile-CC" }
[ 0.006211180124223602, 0 ]
0.003106
5
[ { "analysis_explanation": null, "end": 7, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 } ]
[ "Hemimyzon pumilicorpora\n\nHemimyzon pumilicorpora is a species of ray-finned fish in the genus Hemimyzon. ", " it is a fresh water fish found in China. ", " Males can reach up to 5.7 cm in length.", "\n\nFootnotes \n \n\nCategory:Hemimyzon\nCategory:Fish described in 1987" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 25, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 48, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25 }, { "analysis_explanation": null, "end": 103, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94 }, { "analysis_explanation": null, "end": 144, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139 }, { "analysis_explanation": null, "end": 250, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246 } ]
[ "Q:\n\nhow to display a message on cart and checkout page for particular category product?", "\n\nlets say i have a category \"test\" and its product \"t1\". ", "IF i add this product to cart, it must show some message \"my custom message\". ", "Also on checkout page, how can i do the same on payment step. ", "i.e check if it is from category test then display this message ?", "\nwhat i tried so far on cart page is this before form on cart.phtml:\n$_catCollection = $this->getItem()->getProduct()->getCategoryCollection();\n\nforeach ($_catCollection as $_category) {\n // do stuff with your Mage_Catalog_Model_Category\n print_r($_category);\n}\n?", ">\n\nBut getting this\nFatal error: Call to a member function getProduct() on a non-object\n\nA:\n\nSet up an attribute for each product that will contain your special message. ", "\nThen you can maybe do something along the lines of:\n <?", "php foreach ($this->getItems() as $item) : ?", ">\n <?", "php if ($item->getSpecialMessage) : ?", ">\n <?", "php echo $item->getSpecialMessage ?", ">\n <?", "php endif ?", ">\n <?", "php endforeach; ?", ">\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0.022727272727272728, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.001263
5
[ { "analysis_explanation": null, "end": 416, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406 }, { "analysis_explanation": null, "end": 587, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 560 }, { "analysis_explanation": null, "end": 684, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 674 }, { "analysis_explanation": null, "end": 844, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 841 }, { "analysis_explanation": null, "end": 1002, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 999 }, { "analysis_explanation": null, "end": 1031, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1017 }, { "analysis_explanation": null, "end": 413, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 406 } ]
[ "Yahoo did a statistical comparison of some defensive midfield partnerships after 3 games in the PL. ", "Now with 11 games gone and a boring international break on hands, it is a good opportunity to see where we stand.", "\n\nFabregas & Matic Vs Toure * Fernandinho\n\nArguably Manchester City’s Yaya Toure and Fernandinho were the best double act in Premiere League last year. ", "But the downturn in form of Yaya Toure has been a major talking point among the media this season.", "\n\nIf we look at the stats, Farbregas has no competition when it comes to Assists, Key Passes and Chances created per game. ", "Matic has astonishingly won 2.4 Tackles per game. ", "The Chelsea pair collectively beat the opposite pair in terms of successful Take-ons although Yaya Toure just comes on top individually. ", "The City pair beat Chelsea pair in terms of Blocks and Aerial Duels but only with a slight margin. ", "Then coming to interceptions Matic alone matches City pair.", "\n\nVerdict: The Chelsea pair win in offensive part of the game comprehensively thanks in no small part to Cesc Fabregas and then match them defensively collectively with Matic dominating. ", "Yaya Toure has been found missing in the creative department of the game this year, and although has worked harder defensively to compensate.", "\n\nFabregas & Matic Vs Flamini & Ramsey\n\nIts the same story in Assists, Key passes and Chance creation with Fabregas overwhelming the opposite triumvirate. ", "Interestingly, when it comes to defensive portion of the game, Flamini surprises by closely matching Matic in Tackles, Blocks and Aerial duels. ", "He made more interceptions but has less success in winning Take-ons. ", "Ramsey on the other hand looks promising when it comes to Key passes and Chance creation.", "\n\nVerdict: The Chelsea pair collectively shrug off Arsenal’s triumvirate. ", "Flamini has been doing his job well and perhaps Ramsey will do better with proven striker to finish chances that he creates.", "\n\nFabregas & Matic Vs Barry & McCarthy\n\nIts shocking how Everton’s midfield partnership has just focused on defensive duties perhaps the perils of having Baines and Coleman to your left and right respectively.", "\n\nLikewise then, let us look at the defensive stats. ", "Chelsea pair win in Tackles and Successful take-ons although Everton pair are quite close. ", "The Everton pair beat Chelsea closely on Aerial Duels and Interceptions. ", "In terms of Blocks, Chelsea pair are nowhere in sights.", "\n\nVerdict: Defensively alone, Everton pair come just out on top of Chelsea pair, but overall it should be no debate that the Chelsea pair are better overall.", "\n\nFabregas & Matic Vs Schiederlin, Davis & Wanyama\n\nIts Everton all over again as we analyze Southampton’s midfield partnership (in terms of Assists, Key Passes, Chances Created) but there is a difference of goals per game with Southampton getting 6 goals from the pair in comparison to Chelsea’s 2.", "\n\nDefensively they make more Tackles and win more Aerial Duels but have lesser number of successful Take-ons. ", "In terms of interceptions and Blocks both teams are quite close to each other.", "\n\nVerdict: The Southampton triumvirate will rank above Chelsea defensively but not overall. ", "BUT there is a crucial piece of information missing here: they haven’t faced the traditional ‘Big Six’ of PL except Tottenham. ", "So their comparison can only be taken with a pinch of salt.", "\n\nDecision\n\nAlthough Fabregas has the luxury of playing a few minutes every game at number 10, he is still by far the best defensive midfielder creatively. ", "Matic has been hailed as being even better then Makelele in the ‘Makelele role’ by Greame Souness.", "\n\nChelsea after 11 games have the best defensive midfield partnership in the Premiere League. ", "Fabregas while heads the creative department, Matic on the hand bosses when it comes to screening his back four.", "\n\nIt can be noted that both pair help each other creatively and defensively. ", "And the fact that Fabregas is willing to do the ugly part and Matic has the quality going forward make them the dream partnership.", "\n\nDo you agree with our assessment? ", "Did we miss any club which could have matched this partnership? ", "Do the stats reflect the picture accurately? ", "Have we missed some telling stat?", "\n\nAll stats are per game and supplied by Squawka" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.01, 0, 0.006578947368421052, 0, 0, 0, 0.0072992700729927005, 0.020202020202020204, 0, 0.0106951871657754, 0.0070921985815602835, 0, 0.006944444444444444, 0, 0.02247191011235955, 0.02702702702702703, 0.016129032258064516, 0.009569377990430622, 0, 0.02197802197802198, 0.0547945205479452, 0.03636363636363636, 0.01910828025477707, 0.010033444816053512, 0.00909090909090909, 0.01282051282051282, 0.010869565217391304, 0.015748031496062992, 0, 0, 0.030612244897959183, 0.010638297872340425, 0, 0, 0, 0, 0, 0, 0, 0.020833333333333332 ]
0.009923
5
[ { "analysis_explanation": null, "end": 263, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242 }, { "analysis_explanation": null, "end": 279, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264 }, { "analysis_explanation": null, "end": 292, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 282 }, { "analysis_explanation": null, "end": 308, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297 }, { "analysis_explanation": null, "end": 362, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 353 }, { "analysis_explanation": null, "end": 402, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 392 }, { "analysis_explanation": null, "end": 461, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 450 }, { "analysis_explanation": null, "end": 738, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 728 }, { "analysis_explanation": null, "end": 904, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 899 }, { "analysis_explanation": null, "end": 1046, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1033 }, { "analysis_explanation": null, "end": 1125, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1115 }, { "analysis_explanation": null, "end": 1197, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1188 }, { "analysis_explanation": null, "end": 1324, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1317 }, { "analysis_explanation": null, "end": 1370, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1362 }, { "analysis_explanation": null, "end": 1629, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1623 }, { "analysis_explanation": null, "end": 1839, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1833 }, { "analysis_explanation": null, "end": 1972, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1965 }, { "analysis_explanation": null, "end": 2068, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2062 }, { "analysis_explanation": null, "end": 2080, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2073 }, { "analysis_explanation": null, "end": 2271, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2264 }, { "analysis_explanation": null, "end": 2424, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2417 }, { "analysis_explanation": null, "end": 2647, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2636 }, { "analysis_explanation": null, "end": 2782, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2771 }, { "analysis_explanation": null, "end": 3054, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3043 }, { "analysis_explanation": null, "end": 3374, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3361 }, { "analysis_explanation": null, "end": 3558, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3544 }, { "analysis_explanation": null, "end": 3660, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3652 }, { "analysis_explanation": null, "end": 3866, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3858 } ]
[ "Q:\n\nR replace values in array with half of the non-zero values in the same columns\n\nI am trying to replace values in columns of an array with half of the non-zero values in the same columns. ", "For instance:\n# example \na <- c(0, 1, 3)\nb <- c(2, NA, 4)\nc <- cbind(a,b)\n# find non-zero minimum and divide by 2 \nm <- apply(c, 2, function(x) min(x[x>0], na.rm = T))/2\n\nI'd like to get this\n a b\n[1,] 0.5 2\n[2,] 1 1\n[3,] 3 4\n\nbut when I try to replace 0 (and NAs) with the values calculated above using:\ncc <- apply(c, 2, function(x) replace(x, x==0, m))\n\nI get the message that NAs are not allowed and that the number of items to replace is not a multiple of replacement length. ", "I understand what the problem is, but can't figure out how to solve it. ", "Thanks for your help.", "\n\nA:\n\nYou can try\napply(c, 2, function(x) \"[<-\"(x, !", "x | is.na(x), min(x[x > 0], na.rm = TRUE) / 2))\n\n# a b\n# [1,] 0.5 2\n# [2,] 1.0 1\n# [3,] 3.0 4\n\nBTW: Please don't use c for the name of an object since it's already the name of a very basic R function.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.006036217303822937, 0, 0, 0, 0.004830917874396135, 0 ]
0.001552
5
[ { "analysis_explanation": null, "end": 230, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229 }, { "analysis_explanation": null, "end": 327, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 326 }, { "analysis_explanation": null, "end": 528, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 527 }, { "analysis_explanation": null, "end": 557, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 553 }, { "analysis_explanation": null, "end": 808, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 807 }, { "analysis_explanation": null, "end": 842, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 837 } ]
[ "/* $Id$ */\n/* Copyright (C) 2004 Alexander Chernov */\n\n/* This file is derived from `arpa/nameser_compat.h' of the GNU C Library,\n version 2.3.2. ", "The original copyright follows. */", "\n\n/* Copyright (c) 1983, 1989\n * The Regents of the University of California. ", " All rights reserved.", "\n * \n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. ", "Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.", "\n * 2. ", "Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.", "\n * 4. ", "Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.", "\n * \n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. ", " IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.", "\n */\n\n/*\n * from nameser.h\t8.1 (Berkeley) 6/2/93\n *\t$BINDId: nameser_compat.h,v 8.11 1999/01/02 08:00:58 vixie Exp $\n */\n\n#ifndef __RCC_ARPA_NAMESER_COMPAT__\n#define\t__RCC_ARPA_NAMESER_COMPAT__\n\n#include <features.h>\n\n#define\t__BIND\t\t19950621\t/* (DEAD) interface version stamp. */", "\n\n/*\n * Structure for query header. ", " The order of the fields is machine- and\n * compiler-dependent, depending on the byte/bit order and the layout\n * of bit fields. ", " We use bit fields only in int variables, as this\n * is all ANSI requires. ", " This requires a somewhat confusing rearrangement.", "\n */\n\ntypedef struct {\n\tunsigned\tid :16;\t\t/* query identification number */\n\t\t\t/* fields in third byte */\n\tunsigned\trd :1;\t\t/* recursion desired */\n\tunsigned\ttc :1;\t\t/* truncated message */\n\tunsigned\taa :1;\t\t/* authoritive answer */\n\tunsigned\topcode :4;\t/* purpose of message */\n\tunsigned\tqr :1;\t\t/* response flag */\n\t\t\t/* fields in fourth byte */\n\tunsigned\trcode :4;\t/* response code */\n\tunsigned\tcd: 1;\t\t/* checking disabled by resolver */\n\tunsigned\tad: 1;\t\t/* authentic data from named */\n\tunsigned\tunused :1;\t/* unused bits (MBZ as of 4.9.3a3) */\n\tunsigned\tra :1;\t\t/* recursion available */\n\t\t\t/* remaining bytes */\n\tunsigned\tqdcount :16;\t/* number of question entries */\n\tunsigned\tancount :16;\t/* number of answer entries */\n\tunsigned\tnscount :16;\t/* number of authority entries */\n\tunsigned\tarcount :16;\t/* number of resource entries */\n} HEADER;\n\n#define PACKETSZ\tNS_PACKETSZ\n#define MAXDNAME\tNS_MAXDNAME\n#define MAXCDNAME\tNS_MAXCDNAME\n#define MAXLABEL\tNS_MAXLABEL\n#define\tHFIXEDSZ\tNS_HFIXEDSZ\n#define QFIXEDSZ\tNS_QFIXEDSZ\n#define RRFIXEDSZ\tNS_RRFIXEDSZ\n#define\tINT32SZ\t\tNS_INT32SZ\n#define\tINT16SZ\t\tNS_INT16SZ\n#define\tINADDRSZ\tNS_INADDRSZ\n#define\tIN6ADDRSZ\tNS_IN6ADDRSZ\n#define\tINDIR_MASK\tNS_CMPRSFLGS\n#define NAMESERVER_PORT\tNS_DEFAULTPORT\n\n#define S_ZONE\t\tns_s_zn\n#define S_PREREQ\tns_s_pr\n#define S_UPDATE\tns_s_ud\n#define S_ADDT\t\tns_s_ar\n\n#define QUERY\t\tns_o_query\n#define IQUERY\t\tns_o_iquery\n#define STATUS\t\tns_o_status\n#define\tNS_NOTIFY_OP\tns_o_notify\n#define\tNS_UPDATE_OP\tns_o_update\n\n#define NOERROR\t\tns_r_noerror\n#define FORMERR\t\tns_r_formerr\n#define SERVFAIL\tns_r_servfail\n#define NXDOMAIN\tns_r_nxdomain\n#define NOTIMP\t\tns_r_notimpl\n#define REFUSED\t\tns_r_refused\n#define YXDOMAIN\tns_r_yxdomain\n#define YXRRSET\t\tns_r_yxrrset\n#define NXRRSET\t\tns_r_nxrrset\n#define NOTAUTH\t\tns_r_notauth\n#define NOTZONE\t\tns_r_notzone\n\n#define DELETE\t\tns_uop_delete\n#define ADD\t\tns_uop_add\n\n#define T_A\t\tns_t_a\n#define T_NS\t\tns_t_ns\n#define T_MD\t\tns_t_md\n#define T_MF\t\tns_t_mf\n#define T_CNAME\t\tns_t_cname\n#define T_SOA\t\tns_t_soa\n#define T_MB\t\tns_t_mb\n#define T_MG\t\tns_t_mg\n#define T_MR\t\tns_t_mr\n#define T_NULL\t\tns_t_null\n#define T_WKS\t\tns_t_wks\n#define T_PTR\t\tns_t_ptr\n#define T_HINFO\t\tns_t_hinfo\n#define T_MINFO\t\tns_t_minfo\n#define T_MX\t\tns_t_mx\n#define T_TXT\t\tns_t_txt\n#define\tT_RP\t\tns_t_rp\n#define T_AFSDB\t\tns_t_afsdb\n#define T_X25\t\tns_t_x25\n#define T_ISDN\t\tns_t_isdn\n#define T_RT\t\tns_t_rt\n#define T_NSAP\t\tns_t_nsap\n#define T_NSAP_PTR\tns_t_nsap_ptr\n#define\tT_SIG\t\tns_t_sig\n#define\tT_KEY\t\tns_t_key\n#define\tT_PX\t\tns_t_px\n#define\tT_GPOS\t\tns_t_gpos\n#define\tT_AAAA\t\tns_t_aaaa\n#define\tT_LOC\t\tns_t_loc\n#define\tT_NXT\t\tns_t_nxt\n#define\tT_EID\t\tns_t_eid\n#define\tT_NIMLOC\tns_t_nimloc\n#define\tT_SRV\t\tns_t_srv\n#define T_ATMA\t\tns_t_atma\n#define T_NAPTR\t\tns_t_naptr\n#define\tT_TSIG\t\tns_t_tsig\n#define\tT_IXFR\t\tns_t_ixfr\n#define T_AXFR\t\tns_t_axfr\n#define T_MAILB\t\tns_t_mailb\n#define T_MAILA\t\tns_t_maila\n#define T_ANY\t\tns_t_any\n\n#define C_IN\t\tns_c_in\n#define C_CHAOS\t\tns_c_chaos\n#define C_HS\t\tns_c_hs\n#define C_NONE\t\tns_c_none\n#define C_ANY\t\tns_c_any\n\n#define\tGETSHORT\t\tNS_GET16\n#define\tGETLONG\t\t\tNS_GET32\n#define\tPUTSHORT\t\tNS_PUT16\n#define\tPUTLONG\t\t\tNS_PUT32\n\n#endif /* __RCC_ARPA_NAMESER_COMPAT__ */\n" ]
{ "pile_set_name": "Github" }
[ 0.006756756756756757, 0, 0, 0, 0, 0, 0, 0, 0, 0.0051813471502590676, 0, 0.0056925996204933585, 0.010526315789473684, 0, 0, 0.013333333333333334, 0, 0.020761245674740483 ]
0.003458
5
[ { "analysis_explanation": null, "end": 32, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28 }, { "analysis_explanation": null, "end": 50, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33 }, { "analysis_explanation": null, "end": 204, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 200 }, { "analysis_explanation": null, "end": 210, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 206 }, { "analysis_explanation": null, "end": 1357, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1348 }, { "analysis_explanation": null, "end": 1584, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1574 }, { "analysis_explanation": null, "end": 1928, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1904 }, { "analysis_explanation": null, "end": 1964, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1940 }, { "analysis_explanation": null, "end": 5098, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5092 }, { "analysis_explanation": null, "end": 5511, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5487 }, { "analysis_explanation": null, "end": 1820, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.6, "start": 1814 }, { "analysis_explanation": null, "end": 1867, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.6, "start": 1857 }, { "analysis_explanation": null, "end": 1057, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1045 }, { "analysis_explanation": null, "end": 1287, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1275 }, { "analysis_explanation": null, "end": 1522, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1510 }, { "analysis_explanation": null, "end": 2014, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 2006 }, { "analysis_explanation": null, "end": 2014, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 2006 } ]
[ "Q:\n\nNo emulator device found in my visual studio to run my android app\n\nToday i download the visual studio 2015 .because i want to start android programming. ", "\nSo i download xamarin for visual studio as you can see here :\n\nSo other packets are installed as you can see here :\n\nSo i create a blank apps and the code is like this :\nnamespace App1\n{\n [Activity(Label = \"App1\", MainLauncher = true, Icon = \"@drawable/icon\")]\n public class MainActivity : Activity\n {\n int count = 1;\n\n protected override void OnCreate(Bundle bundle)\n {\n base.", "OnCreate(bundle);\n\n // Set our view from the \"main\" layout resource\n SetContentView(Resource.", "Layout.", "Main);\n\n // Get our button from the layout resource,\n // and attach an event to it\n Button button = FindViewById<Button>(Resource.", "Id.MyButton);\n\n button.", "Click += delegate { button.", "Text = string.", "Format(\"{0} clicks!\", ", "count++); };\n }\n }\n}\n\nI install this file but i don't know what is that exactly i think it is simulator mono-4.2.2.30-gtksharp-2.12.30-win32-0.", "\nBut when i run this program \n\nI get this error :\nSeverity Code Description Project File Line Suppression State\nWarning @(Content) build action is not supported App1 C:\\Users\\ehsan\\Documents\\Visual Studio 2015\\Projects\\App1\\App1\\Properties\\AndroidManifest.xml\n\nSome thing that i should add is there is no emulator in the list of visual :\n\nThe sdk manager :\n\nA:\n\nYou need to do 2 things for getting the emulator to work properly -\n\nInstall the necessary components in the SDK manager for the Android version you are targetting. ", "Along with System Image.", "\nFor that system image you can choose a preset virtual device present in the AVD Manager. ", "\n\nThen launch the Emulator and ensure you see the home screen is loaded in the Virtual device then start the application from Visual Studio. ", "It will then install the apk into the Virtual device and launch your app. ", "\nSee the sample image of SDK manager installation components\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.006329113924050633, 0.002386634844868735, 0, 0, 0, 0.029411764705882353, 0, 0, 0, 0, 0.007285974499089253, 0, 0, 0.014184397163120567, 0.013513513513513514, 0.016129032258064516 ]
0.005578
5
[ { "analysis_explanation": null, "end": 111, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107 }, { "analysis_explanation": null, "end": 144, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 137 }, { "analysis_explanation": null, "end": 387, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 375 }, { "analysis_explanation": null, "end": 1092, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 1084 }, { "analysis_explanation": null, "end": 1092, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.6, "start": 1086 }, { "analysis_explanation": null, "end": 1109, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.6, "start": 1102 }, { "analysis_explanation": null, "end": 870, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 865 } ]
[ "Introduction\n============\n\nFor decades the beneficial (synthesis of vitamin D) and the adverse (induction of skin cancer) effects of solar UV radiation have been known and discussed. ", "Nevertheless, no consensus exists concerning the optimal balance between positive and negative effects of UV radiation. ", "Vitamin D can be obtained through UVB exposure or diet. ", "Inadequate sun exposure or too low intake of vitamin D can lead to vitamin D deficiency. ", "Deficiency has been reported for different latitudes and seasons.[@R1] Higher UVB radiation doses are obtained by humans in the South than in the North,[@R2] and one might suppose that people in southern regions have a better vitamin D status than people in northern regions. ", "In contrast to such expectations, the vitamin D status is better in Scandinavia than in south Europe.[@R3] This phenomenon has to be explained by other factors than ambient UVB, such as differences in skin color, diet, genetics or vitamin D supplementation. ", "Such factors may play more important roles for the serum 25-hydroxyvitamin D (25(OH)D) levels than thought before.", "\n\nSolar UV radiation can induce direct (UVB) and indirect (UVA) oxidative DNA damage and can lead to carcinogenesis. ", "Non-melanoma skin cancers (NMSC) have different sun exposure patterns. ", "As suggested from etiologic studies, UVB is the most important spectral region in causing squamous cell carcinoma (SCC), while both UVB and UVA may be related to basal cell carcinoma (BCC).[@R4]^,^[@R5] The role of UVA in initiation of CMM is more controversial.[@R6] The risk of skin cancer is very high for xeroderma pigmentosum variant patients with defective excision repair of UVB-type DNA damage, e.g., of cyclobutane pyrimidine dimers (CPD).[@R7] Epidemiological evidences suggest that UVA may be involved in melanomagenesis.[@R8] The newest experimental data obtained by use of mouse models indicate that not only UVB, but also UVA can induce melanoma.[@R9] Human response to UVA radiation cannot be fully elucidated by animal models, and humans may respond differently. ", "However one might expect strong similarities.", "\n\nCMM is more common among indoor workers than among outdoor workers.[@R10] This may have several reasons among them elastosis and skin wrinkling caused by chronic UV exposure and differences in vitamin D status. ", "Epidemiological evidence support the hypothesis that skin aging has a protective effect on melanomagenesis.[@R11] The role of vitamin D in CMM induction has been reviewed and discussed.[@R12]^-^[@R14] It has been demonstrated that vitamin D has anti-proliferative effects on melanoma cells, and that CMM patients with high vitamin D status have thinner lesions and better survival.[@R15] Case-control studies from some European countries, indicate no association of serum 25(OH)D and melanoma, but there is no reason to believe that a good status of vitamin D is disadvantageous.[@R16]\n\nPhotoimmunosuppression contributes to the adverse effects of UV radiation.[@R17]^,^[@R18] UV radiation suppresses immunity,[@R19]^,^[@R20] while vitamin D improves it.[@R21] Organ transplant patients with long-term immunosuppression often develop NMSC, and human papillomavirus infection is an important risk factor.[@R22] The risk of developing CMM seems also to be associated with immunosuppression.[@R23]^,^[@R24] The immunosuppressive effectiveness of UVA is 3-fold higher than that of UVB at standard conditions of noon solar exposure.[@R19] Peaks in both the UVB (300 nm) and UVA (370 nm) regions in the action spectrum of photoimmosuppression suggest that different chromophores and mechanisms are involved in the induction of photoimmunosuppression in these regions. ", "This is important since the ratio of UVB to UVA varies with the latitude and with the time of the day. ", "It is unclear how these variations will affect photoimmunosuppression. ", "In addition to the harmful effect of UVA on the immune system, UVA-formation of free radicals should be taken into account as an important factor in skin carcinogenesis. ", "Not only primary actions of reactive oxygen species in melanoma development and progression is involved,[@R25] but also \"bystander effects\" may play an important role,[@R26] where stress-free cells can be stressed by nearby stressed cells.", "\n\nTo better understand the impact of UV on vitamin D production, erythema induction, DNA damage and CMM induction, it is necessary to look at the separate roles of UVA and UVB for these processes. ", "A good option for such a study is to investigate countries at different latitudes where ratio of UVA to UVB is different. ", "UVB is more scattered and absorbed in the atmosphere than UVA.[@R27] Thus, the latitude gradient of UVB is much greater than that of UVA. ", "However, the latitudinal UVA gradient is more important for melanoma than for non-melanomas.[@R28] For epidemiological evaluations, the place of residence can be used in approximations of UV exposures and their impacts.[@R29]\n\nThe aim of the present study is to determine the relationship between daily or seasonal UV radiation doses, CMM incidence rates and 25(OH)D levels in blood at different geographical latitudes. ", "Dietary vitamin D intake will also be taken into account. ", "North-south gradients of 25(OH)D levels and CMM incidence rates will be calculated based on epidemiological data, and calculations of biological effectiveness depending on action spectra and worldwide data of vitamin D status. ", "The importance of UVA and UVB in CMM induction will be discussed.", "\n\nResults\n=======\n\nDaily UV doses\n--------------\n\nCalculations of daily integrated biological effective UV doses for different latitudes are shown in [Figure 1](#F1){ref-type=\"fig\"}. ", "Daily relative erythema UV doses, doses for photoimmunosuppression and vitamin D production are dependent on the transmission of UV to the ground at different geographical regions. ", "Longer days during the summer at higher latitudes tend to reduce north-south differences ([Fig.", " 1](#F1){ref-type=\"fig\"}). ", "The ratios between summer UV doses at 20°N and 70°N are about 2 for both erythema induction ([Fig.", " 1A](#F1){ref-type=\"fig\"}) and vitamin D production ([Fig.", " 1B](#F1){ref-type=\"fig\"}), and about 1.3 for photoimmunosuppression ([Fig.", " 1C](#F1){ref-type=\"fig\"}). ", "Vitamin D effective daily doses ([Fig.", " 1B](#F1){ref-type=\"fig\"}) and erythema doses ([Fig.", " 1A](#F1){ref-type=\"fig\"}) are comparable. ", "At high latitudes (Scandinavia) production of vitamin D and induction of erythema is significant only from April to October, whereas in the tropics the variations during a year are small ([Fig.", " 1A and B](#F1){ref-type=\"fig\"}).", "\n\n![**", "Figure 1.** ", "UV doses per day at different latitudes on the northern hemisphere for erythema induction (**A**), vitamin D production (**B**) and induction of immunosuppression (**C**).](de-5-150-g1){#F1}\n\nUV penetration\n--------------\n\nThe ratio of UVA to UVB on the skin surface for a typical summer day is about 45 at 60°N latitudes and about 25 at the Equator ([Fig.", " 2](#F2){ref-type=\"fig\"}). ", "At noon both ratios are about 1.7 times larger below than above the epidermis ([Fig.", " 2](#F2){ref-type=\"fig\"}). ", "The ratio of UVA to UVB in the middle of a summer day is more stable and smaller at the Equator than in Oslo and Stockholm ([Fig.", " 2](#F2){ref-type=\"fig\"}).", "\n\n![**", "Figure 2.** ", "UVA and UVB intensities (normalized to the same value at the Equator) before and after penetration of epidermis in Oslo (**A**) and in the Equator (**B**).](de-5-150-g2){#F2}\n\nAnnual UV doses\n---------------\n\nNorth-south gradients of annual biological effective UV doses were calculated using action spectra for DNA damage,[@R30] for erythema[@R31] and immunosuppression inductions[@R19] ([Fig.", " 3](#F3){ref-type=\"fig\"}). ", "An action spectrum with only a small peak in the UVA region gives a much smaller north- south gradient than does the UVB weighted action spectra.", "\n\n![**", "Figure 3.** ", "Latitudinal dependency of annual UV doses on the northern hemisphere for immunosuppression, erythema and DNA damage.](de-5-150-g3){#F3}\n\nLatitude gradient of CMM incidence rates\n----------------------------------------\n\nCountries located in a wide latitudinal range (Norway, Sweden, Finland, New Zealand and Australia) have similar latitudinal gradients of CMM incident rates ([Table 1](#T1){ref-type=\"table\"}; [Fig.", " 4](#F4){ref-type=\"fig\"}). ", "However, in Germany there is a \\'negative\\' gradient for CMM rates. ", "Furthermore, Australia's and Norway's incident rates for females do not follow a linear approximation ([Fig.", " 4](#F4){ref-type=\"fig\"}). ", "The incidence rates in Norway are larger than those in the other Scandinavian countries. ", "Finally, it seems that incidence rates are lower in the southern part of Germany than in the northern part. ", "The slopes of the incidence rates of CMM in Australia are smaller (being 0.23 ± 0.14, p = 0.12 for females) than that of CMM rates when northern countries are taken into the picture. ", "For females these slopes are around 0.59 ± 0.06 (p \\< 0.0001) while for males they are around 0.90 ± 0.06 (p \\< 0.0001). ", "CMM incidence rates for males in Norway are larger (0.94 ± 0.12, p \\< 0.0001) than the rates when other countries are included in the analysis (0.90 ± 0.06, p \\< 0.0001).", "\n\n###### **Table 1.** ", "Characteristics of CMM incidence rates\n\n Country Slopes (Males) P (Males) Slopes (Females) P (Females)\n --------------- ---------------- ----------- ------------------ -------------\n Sweden 0.65 ± 0.14 \\< 0.001 0.55 ± 0.15 \\< 0.01\n Norway 0.94 ± 0.12 \\< 0.0001 1.01 ± 0.17 \\< 0.0001\n Denmark 1.24 ± 1.13 0.33 0.66 ± 1.32 0.64\n Finland 0.63 ± 0.16 0.03 0.66 ± 0.08 \\< 0.01\n Scotland 0.02 ± 0.54 0.97 0.31 ± 1.58 0.88\n Germany -0.94 ± 0.39 0.10 -1.05 ± 0.54 0.15\n Australia 0.77 ± 0.16 \\< 0.01 0.23 ± 0.14 0.12\n All countries 0.90 ± 0.06 \\< 0.0001 0.59 ± 0.06 \\< 0.0001\n\n![**", "Figure 4.** ", "The age-standardized incidence rates (ASIR) according to the world standard population (W) per 100,000 males (**A**) and females (**B**) for CMM in different countries.](de-5-150-g4){#F4}\n\nVitamin D at different latitudes\n--------------------------------\n\nMore vitamin D is synthesized in summer than in winter ([Fig.", " 5A](#F5){ref-type=\"fig\"}) due to higher UVB doses in the summer. ", "Around 1.5 times higher serum 25(OH)D levels were observed during the summer than during the winter in most of the countries ([Fig.", " 5](#F5){ref-type=\"fig\"}). ", "This observation is worthy of being remarked, and, therefore, we expanded on this finding in [Figure 5B](#F5){ref-type=\"fig\"}. ", "After integration of summer- and winter UV doses for vitamin D production at different latitudes, the summer to winter ratios were compared with reported summer to winter ratios of 25(OH)D levels. ", "Such a procedure will minimize the role of different baseline levels and focus on the role of the sun. ", "The absence of any correlation between theoretical and experimental ratios is remarkable and will be discussed.", "\n\n![**", "Figure 5.** ", "Summer and winter levels of 25(OH)D and dietary intake of vitamin D in populations living at different latitudes (**A**). ", "Theoretically estimated relative summer to winter ratios of vitamin D photosynthesis (according to the effective UV doses, [Fig.", " 1B](#F1){ref-type=\"fig\"}) and the summer to winter ratios of measured 25(OH) D levels (**B**). ", "25(OH) D levels are taken from panel (**A**).](de-5-150-g5){#F5}\n\nDiscussion\n==========\n\nThe annual fluence of ambient UV varies strongly with geographical localization. ", "Furthermore, personal sunbathing habits are important for health effects. ", "Self-reported sun exposures are difficult to obtain and unreliable, which introduces large uncertainties in evaluations and predictions. ", "Therefore, we decided to study the crude latitudinal dependency. ", "Place of residence can be used as approximation for UV exposures and their impact at given locations.[@R29] Thus, mathematical modeling, using relevant action spectra, is a valuable tool for estimations of health effects of solar radiation.", "\n\nThe seasonal variation of erythemal exposures are similar to the seasonal variation of vitamin D generating exposures of solar radiation at all latitudes ([Fig.", " 1](#F1){ref-type=\"fig\"}). ", "This is to be expected in view of the similarity of the corresponding action spectra,[@R31]^,^[@R32] both being strongly UVB-weighted. ", "Shapes and relative amplitudes of vitamin D production ([Fig.", " 1B](#F1){ref-type=\"fig\"}) are similar to previously published observations regarding photosynthesis of vitamin D at different latitudes.[@R33] The action spectrum of photoimmunosuppression has a significant UVA contribution[@R19] which explains the relatively high midsummer photoimmunosuppression exposures at high latitudes ([Fig.", " 1C](#F1){ref-type=\"fig\"}).", "\n\nIn agreement with the above data, at all latitudes UVA radiation lasts much longer in the afternoon than the UVB radiation (as here exemplified by the data for Oslo or Stockholm and for the Equator) ([Fig.", " 1](#F1){ref-type=\"fig\"}). ", "Thus, if photoimmunosuppression plays a role for CMM induction, the afternoon is not a good time for sun exposure, since at that time the sun gives minimally of vitamin D but still gives much UVA which may be melanomagenic. ", "The \"danger and benefit\" ratio is certainly related to the UVA/UVB ratio which increases strongly with decreasing solar elevation, i.e., with time before and after noon ([Fig.", " 2](#F2){ref-type=\"fig\"}).", "\n\nSince vitamin D generation is mostly caused by UVB, just as DNA damage and erythema are, while melanomagenesis is caused by UVB and also by UVA radiation, we expect the latitudinal gradient of CMM incidence rates to be smaller than that of vitamin D generation. ", "However, it is known that vitamin D generation is related to skin color[@R34] (which is generally darker at low latitudes), and CMM risk is also related to skin color under similar exposure conditions.", "\n\nWe have calculated the latitudinal dependency of annual ambient exposures of solar radiation leading to immunosuppression, erythema and DNA damage ([Fig.", " 3](#F3){ref-type=\"fig\"}). ", "In view of the similarity of the action spectra the latitudinal dependency of generation of vitamin D, erythema and DNA damage would be similar. ", "When comparing latitudinal gradients of UVA and CMM incidence rates, similarities are found.[@R35] Latitudinal comparisons of UVB, BCC and SCC gradients are more complicated to carry out. ", "This is due to the fact that routine use of sunscreens has been shown to be relatively ineffective in reducing the rates of BCC, while SCC rates did statistically decrease in populations using sunscreens.[@R36] In addition, the latitudinal gradient in Europe of CMM incidence rates for males is opposite that for SCC, while the gradient of BCC is between those of CMM and SCC.[@R28]^,^[@R37] Thus, the UVB impact on BCC and SCC rates may be different.", "\n\nTwo features should be remarked: (1) In Europe, notably in Germany, CMM is more common in the north than in the south ([Fig.", " 4](#F4){ref-type=\"fig\"}); (2) Migration to sunnier countries leads to an increase in CMM risk.[@R38] For the populations of Scandinavia and Australia the rates follow almost the same latitudinal gradient, although for females the gradient in Australia is uncertain ([Fig.", " 4](#F4){ref-type=\"fig\"}). ", "These populations, as well as those in the other analyzed countries, have similar Caucasian skin types, mostly types I−III. ", "It is known that in Germany and in central Europe, the skin type is different in north and south, with increasing skin darkness in the south.[@R39] Skin pigmentation attenuates penetration of UVB, also UVA radiation and, thus, a dark skin type may protect against CMM.[@R40] This is probably the reason for the inverse latitudinal gradient found for CMM in Germany ([Fig.", " 4](#F4){ref-type=\"fig\"}). ", "In addition to the fact that there may be inconsistencies between different cancer registries concerning recording of incidence rates, \\'negative\\' latitudinal gradients of CMM incidence rates may also be related to genetic differences in sensitivities to UVB and UVA. ", "UVB-induced synthesis of previtamin D3 and UVA-induced effects on the deeper skin layers depend on skin pigmentation.[@R41]\n\nSunnier countries have smaller and more stable UVA to UVB ratios during most of the daytime of vitamin D generation ([Fig.", " 2](#F2){ref-type=\"fig\"}). ", "Interestingly, melanoma mortality rates seem to increase with increasing UVA to UVB ratios.[@R28] For a complete evaluation of the relationship between vitamin D photosynthesis in the skin and measured 25(OH)D levels in different countries, skin pigmentation need to be taken into account. ", "An intake of vitamin D rich food leads to lower concentrations of 25(OH)D in humans with dark skin than with white skin.[@R42] This fits with the evolutionary hypothesis for skin lightening at higher latitudes.[@R43] In order to elucidate how the fluence rate of UV varies at the bottom of the epidermis during a day, we used relevant skin transmission coefficients. ", "To generate the same amount of vitamin D, dark skin needs about six times more UVB than light skin.[@R34] Regardless of this fact, Bogh et al. ", "suggested that skin pigmentation is only a secondary factor for limitation of vitamin D production in darker skin, the baseline levels of vitamin D and total cholesterol being more important.[@R44]\n\nVitamin D intake is probably of significant importance for winter vitamin D status in populations with similar genetic constitutions. ", "This suggestion is reflected, not only by decreasing summer/winter ratio of 25(OH)D, but also by shifts from the winter level at 60°N. Daily effective vitamin D doses ([Fig.", " 1](#F1){ref-type=\"fig\"}) are about twice as large at 20°N as at 70°N latitudes. ", "Due to UVB differences in summer and winter there should be significant differences between vitamin D photosynthesis in the skin during summer and winter months at northern latitudes. ", "However, the calculated effective doses of vitamin D-generating radiation do not correlate with the measured levels of vitamin D ([Fig.", " 5B](#F5){ref-type=\"fig\"}). ", "In Norway the vitamin D intake is 10--20% larger in the north than in the south.[@R45] In the late 90s it was reported that the highest fish to meat ratios (0.50--1.26) in food was found in the northwestern region of the Nordic countries, (i.e., in Denmark, Finland, Iceland, Norway and Sweden).[@R46] In the rest of the region the ratio was only 0.07--0.28.[@R46] Nutrition is likely to be the most reasonable explanation why the best vitamin D status in Europe[@R47] is observed in the Nordic countries. ", "The latitudinal variation of multiple sclerosis indicates a beneficial effect of high oral vitamin D intake in northern Europe, where the prevalence decreases with increasing latitude.[@R48] However, Zitterman et al. ", "used all age groups in his search for a latitudinal gradient of the 25(OH)D level, and found that the level decreased with increasing latitude.[@R49] Others researchers have found the opposite.[@R50] Our review of 25(OH)D levels shows no significant latitudinal gradients, neither for vitamin D status in the summer nor for summer/winter ratios, and nor for dietary vitamin D intake ([Fig.", " 5A](#F5){ref-type=\"fig\"}). ", "A high dietary intake of vitamin D, especially in winter, may mask the effect of seasonal variation in UV-exposure. ", "However, the vitamin D status exhibits clear seasonal variation at all northern latitudes, being high in late summer and low in late winter. ", "We find no latitudinal trend neither for the winter nor for the summer vitamin D status ([Fig.", " 5](#F5){ref-type=\"fig\"}), in spite of the fact that the annual doses of vitamin D-generating UVB increase strongly with decreasing latitude ([Fig.", " 4](#F4){ref-type=\"fig\"}). ", "Several possible explanations of this discrepancy can be mentioned: First, the sun seeking behavior of the investigated populations may be more pronounced in the north than in the south. ", "Second, vacations to southern latitudes may play a role.[@R51] Third, the average genetic constitution may be latitudinally dependent, with darker skin types more frequent in the south than in the north. ", "As mentioned above, it is well known that under similar conditions people with a dark skin tend to have lower serum 25(OH)D levels, even when food is the main vitamin D source.[@R42]\n\nThe summer/winter ratio of vitamin D-generating doses has a strong latitudinal dependency ([Fig.", " 5B](#F5){ref-type=\"fig\"}), being two times larger in north Norway than in Australia. ", "On the other hand, the published 25(OH)D levels for summer and winter show no latitudinal dependency of the summer/winter ratio, which is about 1.2 to 1.8 in most countries ([Fig.", " 5B](#F5){ref-type=\"fig\"}). ", "The ratio is about 1.3 at latitudes between 20°N and 40°N, while a ratio of only 1.1 is found for the theoretical vitamin D-generating sun doses ([Fig.", " 5B](#F5){ref-type=\"fig\"}).", "\n\nThe CMM rates are significantly higher in Norway than in the other Scandinavian countries ([Fig.", " 4](#F4){ref-type=\"fig\"}). ", "This is probably related to skin types, since historically the contact with- and immigration from Europe and/or Russia is larger in Finland, Sweden and Denmark than in Norway, which has had a closer contact with England and Ireland where the skin types are light.", "\n\nWe may conclude that 25(OH)D levels in the countries we have studied, depend on vitamin D intake, solar UVB doses, skin color and other genetic properties. ", "Significant variations of the UVA/UVB ratio (mainly due to UVB variations) do not correlate with the lack of a summer and winter latitudinal independency of the 25(OH)D level. ", "In the Nordic countries there is a clear latitudinal gradient for CMM incidence rates. ", "This indicates that UV plays a major role for CMM induction which is of particular importance for the Nordic countries, where the seasonal- and latitudinal UVA and UVB variations are particularly large.", "\n\nMethods and data\n================\n\nRadiative transfer calculations\n-------------------------------\n\nIn the calculations for erythema and photoimmunosuppression effective doses ([Fig.", " 1A and C](#F1){ref-type=\"fig\"}) we used a zonal seasonal total ozone column climatology for each latitude based on ozone measurements with the TOMS instrument on the Nimbus 7 satellite in the time period 1979 -- 1992. ", "For more UVB sensitive vitamin D effective doses ([Fig.", " 1B](#F1){ref-type=\"fig\"}) monthly averaged ozone levels that were obtained until 1989\\'s were used.[@R52] Our accurate multiple scattering radiative transfer model uses the radiative transfer equation solver DISORT.[@R53] The calculations were done for exposures on horizontal surface.", "\n\nThe fluence rate of healthily or carcinogenically effective solar radiation is defined by the expression: *E(t) =***∫***I*(*λ*,*t*) φ(*λ*) *dλ.* ", "The integration being performed over the wavelength (*λ*) region of the solar spectrum. *", "I*(*λ*,*t*) is the solar irradiance at earth's surface, φ(*λ*) is the action spectrum that describes the relative effectiveness of energy at different wavelengths in producing a particular biological response, and *t* is time. ", "The daily effective doses from the sun are: *D =***∫***E*(*t*)*dt*.", "\n\nThe same zonal seasonal climatology, for each latitude, was used to calculate annual UV doses ([Fig.", " 3](#F3){ref-type=\"fig\"}). ", "In the present work we have used CIE proposed action spectrum for UV induced erythema in human skin,[@R31] action spectra for imunnosuppression induction,[@R19] DNA damage[@R30] and vitamin D production.[@R32]\n\nUVA and UVB intensities during the day at the Equator (0°) and in Oslo (60°) initial and after penetration of epidermis ([Fig.", " 2](#F2){ref-type=\"fig\"}) were calculated with FastRT simulation tool.[@R54] FastRT is based on the pseudospherical approximation (SDISORT)[@R55] and is able to ensure high levels of accuracy even for low solar elevation. ", "It was chosen cloudless 2011's 197-th Julian day (the middle of summer's season) in Oslo for variation of solar elevation during the day. ", "Total ozone column 250 Dobson units (DU) was set for The Equator and 330 DU for Oslo. ", "For penetration of white Caucasian skin by UV rays total transmission coefficients was used (directly transmitted light plus that scattered forward).[@R56]\n\nCMM incidence rates\n-------------------\n\nThe age-standardized CMM incidence rates among Caucasians in different countries ([Fig.", " 4](#F4){ref-type=\"fig\"}) (according to the world standard population (ASIR, W) were retrieved from the online database of International Agency for Research of Cancer (IARC)[@R57]^,^[@R58] and published articles.[@R59]^-^[@R61] Epidemiological data for Norway were obtained from the Cancer Registry of Norway. ", "From \"Association of Population-based Cancer Registries in Germany\" were achieved data for Germany.[@R62] Data for Australia and New Zealand were obtained from the Australian Institute of Health and Welfare,[@R63] The New Zealand Cancer Registry,[@R64] and published articles.[@R65]^-^[@R68] Epidemiological data for Scotland are based on the Scottish Cancer Registry data.[@R69]\n\nVitamin D data\n--------------\n\n25(OH)D levels and vitamin D intake in different countries were retrieved from published articles.[@R3]^,^[@R70]^-^[@R95]\n\nStatistical analysis\n--------------------\n\nThe data were analyzed using SigmaPlot 11.0 software from Systat Software, Inc. (Richmond, CA, USA).", "\n\nThe present work was supported by the South-Eastern Norway Regional Health Authority and by Oslo University Hospital. ", "The study has used data from the Cancer Registry of Norway. ", "The interpretation and reporting of these data are the sole responsibility of the authors, and no endorsement by the Cancer Registry of Norway is intended nor should be inferred.", "\n\nPreviously published online: [www.landesbioscience.com/journals/dermatoendocrinology/article/22941](http://www.landesbioscience.com/journals/dermatoendocrinology/article/22941/)\n\n25(OH)D\n\n: 25-hydroxyvitamin D\n\nUV\n\n: ultraviolet\n\nCMM\n\n: cutaneous malignant melanoma\n\nSCC\n\n: squamous cell carcinoma\n\nBCC\n\n: basal cell carcinoma\n\nNo potential conflicts of interest were disclosed.", "\n" ]
{ "pile_set_name": "PubMed Central" }
[ 0, 0, 0, 0, 0.007246376811594203, 0.003875968992248062, 0, 0, 0.014084507042253521, 0.008985879332477536, 0, 0.009389671361502348, 0.012481644640234948, 0, 0, 0.0058823529411764705, 0.008368200836820083, 0, 0, 0.007246376811594203, 0.007142857142857143, 0, 0.004405286343612335, 0, 0, 0, 0.010526315789473684, 0, 0.01020408163265306, 0.017241379310344827, 0.013333333333333334, 0, 0.05263157894736842, 0.019230769230769232, 0, 0.0051813471502590676, 0, 0, 0, 0.0028089887640449437, 0, 0.011904761904761904, 0, 0.007751937984496124, 0, 0, 0, 0.01015228426395939, 0, 0, 0, 0, 0.007211538461538462, 0, 0.029411764705882353, 0.009259259259259259, 0, 0, 0, 0.01092896174863388, 0, 0.0058823529411764705, 0, 0.0012706480304955528, 0, 0.00946372239747634, 0, 0.007633587786259542, 0, 0, 0, 0, 0, 0, 0, 0, 0.0078125, 0, 0, 0, 0, 0, 0.004166666666666667, 0.006172839506172839, 0, 0.014814814814814815, 0.01639344262295082, 0.009009009009009009, 0, 0.00966183574879227, 0, 0.004464285714285714, 0.005714285714285714, 0, 0.003787878787878788, 0.009950248756218905, 0.0064516129032258064, 0, 0, 0.015957446808510637, 0.015521064301552107, 0.015873015873015872, 0.011029411764705883, 0, 0, 0.01078167115902965, 0, 0.007434944237918215, 0.012145748987854251, 0, 0.0034482758620689655, 0.005449591280653951, 0.006993006993006993, 0.003003003003003003, 0.011560693641618497, 0, 0, 0.007407407407407408, 0, 0.011857707509881422, 0.004608294930875576, 0.007712082262210797, 0, 0, 0, 0.010638297872340425, 0.006802721088435374, 0, 0, 0.004901960784313725, 0.007142857142857143, 0, 0.00558659217877095, 0, 0.006622516556291391, 0, 0.02040816326530612, 0, 0, 0, 0, 0.022988505747126436, 0.009900990099009901, 0.005434782608695652, 0.0045662100456621, 0.01818181818181818, 0.006993006993006993, 0, 0, 0, 0, 0.00980392156862745, 0, 0.020771513353115726, 0.009009009009009009, 0, 0.03488372093023256, 0.010526315789473684, 0.025806451612903226, 0.017699115044247787, 0.008333333333333333, 0.016666666666666666, 0.0056179775280898875, 0.007692307692307693, 0 ]
0.005317
5
[ { "analysis_explanation": null, "end": 38, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31 }, { "analysis_explanation": null, "end": 581, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 576 }, { "analysis_explanation": null, "end": 604, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 594 }, { "analysis_explanation": null, "end": 803, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 792 }, { "analysis_explanation": null, "end": 1484, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1467 }, { "analysis_explanation": null, "end": 1819, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1799 }, { "analysis_explanation": null, "end": 2746, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2738 }, { "analysis_explanation": null, "end": 3430, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3426 }, { "analysis_explanation": null, "end": 4649, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4640 }, { "analysis_explanation": null, "end": 5022, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5009 }, { "analysis_explanation": null, "end": 5882, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5872 }, { "analysis_explanation": null, "end": 6259, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6254 }, { "analysis_explanation": null, "end": 6397, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6386 }, { "analysis_explanation": null, "end": 6490, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6474 }, { "analysis_explanation": null, "end": 6543, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6537 }, { "analysis_explanation": null, "end": 6902, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6882 }, { "analysis_explanation": null, "end": 6960, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6953 }, { "analysis_explanation": null, "end": 7001, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6997 }, { "analysis_explanation": null, "end": 7158, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7132 }, { "analysis_explanation": null, "end": 7200, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7193 }, { "analysis_explanation": null, "end": 7213, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7209 }, { "analysis_explanation": null, "end": 7227, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7218 }, { "analysis_explanation": null, "end": 7346, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7339 }, { "analysis_explanation": null, "end": 7397, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7393 }, { "analysis_explanation": null, "end": 7424, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7417 }, { "analysis_explanation": null, "end": 7518, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7512 }, { "analysis_explanation": null, "end": 7873, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7862 }, { "analysis_explanation": null, "end": 8135, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8129 }, { "analysis_explanation": null, "end": 8143, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8137 }, { "analysis_explanation": null, "end": 8152, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8145 }, { "analysis_explanation": null, "end": 8165, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8154 }, { "analysis_explanation": null, "end": 8179, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8170 }, { "analysis_explanation": null, "end": 8324, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8317 }, { "analysis_explanation": null, "end": 8395, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8386 }, { "analysis_explanation": null, "end": 8408, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8402 }, { "analysis_explanation": null, "end": 8537, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8531 }, { "analysis_explanation": null, "end": 8585, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8573 }, { "analysis_explanation": null, "end": 8677, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8670 }, { "analysis_explanation": null, "end": 8758, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8749 }, { "analysis_explanation": null, "end": 9048, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9042 }, { "analysis_explanation": null, "end": 9406, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9400 }, { "analysis_explanation": null, "end": 9427, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9423 }, { "analysis_explanation": null, "end": 9480, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9474 }, { "analysis_explanation": null, "end": 9648, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9644 }, { "analysis_explanation": null, "end": 10295, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10289 }, { "analysis_explanation": null, "end": 10310, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10304 }, { "analysis_explanation": null, "end": 10381, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10371 }, { "analysis_explanation": null, "end": 10482, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10472 }, { "analysis_explanation": null, "end": 10696, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10689 }, { "analysis_explanation": null, "end": 10828, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10822 }, { "analysis_explanation": null, "end": 10838, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10832 }, { "analysis_explanation": null, "end": 11103, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11097 }, { "analysis_explanation": null, "end": 11114, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11108 }, { "analysis_explanation": null, "end": 11258, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11252 }, { "analysis_explanation": null, "end": 11268, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11262 }, { "analysis_explanation": null, "end": 11398, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11378 }, { "analysis_explanation": null, "end": 12165, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12156 }, { "analysis_explanation": null, "end": 13038, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13034 }, { "analysis_explanation": null, "end": 13051, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13042 }, { "analysis_explanation": null, "end": 13071, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13064 }, { "analysis_explanation": null, "end": 13183, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13170 }, { "analysis_explanation": null, "end": 13498, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13494 }, { "analysis_explanation": null, "end": 14051, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14045 }, { "analysis_explanation": null, "end": 14767, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14761 }, { "analysis_explanation": null, "end": 15007, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15001 }, { "analysis_explanation": null, "end": 15027, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15020 }, { "analysis_explanation": null, "end": 15221, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15210 }, { "analysis_explanation": null, "end": 15235, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15226 }, { "analysis_explanation": null, "end": 15337, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15328 }, { "analysis_explanation": null, "end": 15475, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15466 }, { "analysis_explanation": null, "end": 15535, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15528 }, { "analysis_explanation": null, "end": 15557, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15551 }, { "analysis_explanation": null, "end": 15872, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15865 }, { "analysis_explanation": null, "end": 16307, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16300 }, { "analysis_explanation": null, "end": 17055, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17050 }, { "analysis_explanation": null, "end": 17247, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17237 }, { "analysis_explanation": null, "end": 17513, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17507 }, { "analysis_explanation": null, "end": 17648, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17635 }, { "analysis_explanation": null, "end": 17701, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17695 }, { "analysis_explanation": null, "end": 17868, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17862 }, { "analysis_explanation": null, "end": 17978, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17972 }, { "analysis_explanation": null, "end": 17996, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17983 }, { "analysis_explanation": null, "end": 18192, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18186 }, { "analysis_explanation": null, "end": 18285, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18273 }, { "analysis_explanation": null, "end": 18410, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18404 }, { "analysis_explanation": null, "end": 18439, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18432 }, { "analysis_explanation": null, "end": 18448, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18441 }, { "analysis_explanation": null, "end": 18457, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18450 }, { "analysis_explanation": null, "end": 18465, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18459 }, { "analysis_explanation": null, "end": 18677, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18671 }, { "analysis_explanation": null, "end": 18815, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18809 }, { "analysis_explanation": null, "end": 18904, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18889 }, { "analysis_explanation": null, "end": 19221, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19211 }, { "analysis_explanation": null, "end": 19243, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19230 }, { "analysis_explanation": null, "end": 19379, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19373 }, { "analysis_explanation": null, "end": 19555, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19544 }, { "analysis_explanation": null, "end": 19578, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19567 }, { "analysis_explanation": null, "end": 19631, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19625 }, { "analysis_explanation": null, "end": 19650, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19644 }, { "analysis_explanation": null, "end": 20158, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20145 }, { "analysis_explanation": null, "end": 20440, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20427 }, { "analysis_explanation": null, "end": 20585, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20579 }, { "analysis_explanation": null, "end": 20603, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20594 }, { "analysis_explanation": null, "end": 20663, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20657 }, { "analysis_explanation": null, "end": 20674, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20668 }, { "analysis_explanation": null, "end": 20726, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20713 }, { "analysis_explanation": null, "end": 21039, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21033 }, { "analysis_explanation": null, "end": 21070, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21058 }, { "analysis_explanation": null, "end": 21218, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21212 }, { "analysis_explanation": null, "end": 21232, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21226 }, { "analysis_explanation": null, "end": 21253, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21246 }, { "analysis_explanation": null, "end": 21261, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21255 }, { "analysis_explanation": null, "end": 21273, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21266 }, { "analysis_explanation": null, "end": 21288, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21282 }, { "analysis_explanation": null, "end": 21333, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21326 }, { "analysis_explanation": null, "end": 21345, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21338 }, { "analysis_explanation": null, "end": 21651, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21645 }, { "analysis_explanation": null, "end": 21662, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21656 }, { "analysis_explanation": null, "end": 21723, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21717 }, { "analysis_explanation": null, "end": 21905, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21899 }, { "analysis_explanation": null, "end": 22399, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22371 }, { "analysis_explanation": null, "end": 22490, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22483 }, { "analysis_explanation": null, "end": 22543, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22538 }, { "analysis_explanation": null, "end": 23022, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23017 }, { "analysis_explanation": null, "end": 23649, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23642 }, { "analysis_explanation": null, "end": 23664, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23657 }, { "analysis_explanation": null, "end": 23681, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23677 }, { "analysis_explanation": null, "end": 23881, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23868 }, { "analysis_explanation": null, "end": 23987, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23983 }, { "analysis_explanation": null, "end": 23996, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23990 }, { "analysis_explanation": null, "end": 24038, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24009 }, { "analysis_explanation": null, "end": 24047, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24043 }, { "analysis_explanation": null, "end": 24095, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24088 }, { "analysis_explanation": null, "end": 24126, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24120 }, { "analysis_explanation": null, "end": 24161, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24154 }, { "analysis_explanation": null, "end": 24181, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24177 }, { "analysis_explanation": null, "end": 24217, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24208 }, { "analysis_explanation": null, "end": 24438, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24428 }, { "analysis_explanation": null, "end": 24727, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24721 }, { "analysis_explanation": null, "end": 24844, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24837 }, { "analysis_explanation": null, "end": 24902, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24893 }, { "analysis_explanation": null, "end": 24918, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24907 }, { "analysis_explanation": null, "end": 25103, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25095 }, { "analysis_explanation": null, "end": 25445, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25437 }, { "analysis_explanation": null, "end": 25449, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25447 }, { "analysis_explanation": null, "end": 25454, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25451 }, { "analysis_explanation": null, "end": 25541, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25491 }, { "analysis_explanation": null, "end": 25990, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 25914 }, { "analysis_explanation": null, "end": 25913, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 25844 }, { "analysis_explanation": null, "end": 517, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 515 }, { "analysis_explanation": null, "end": 604, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 602 }, { "analysis_explanation": null, "end": 829, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 827 }, { "analysis_explanation": null, "end": 1476, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1474 }, { "analysis_explanation": null, "end": 1484, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1482 }, { "analysis_explanation": null, "end": 1549, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1547 }, { "analysis_explanation": null, "end": 1735, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1733 }, { "analysis_explanation": null, "end": 1819, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1817 }, { "analysis_explanation": null, "end": 1947, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1945 }, { "analysis_explanation": null, "end": 2180, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 2177 }, { "analysis_explanation": null, "end": 2431, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 2428 }, { "analysis_explanation": null, "end": 2509, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 2506 }, { "analysis_explanation": null, "end": 2518, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 2515 }, { "analysis_explanation": null, "end": 2705, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 2702 }, { "analysis_explanation": null, "end": 2903, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 2900 }, { "analysis_explanation": null, "end": 2985, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 2982 }, { "analysis_explanation": null, "end": 2994, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 2991 }, { "analysis_explanation": null, "end": 3034, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 3031 }, { "analysis_explanation": null, "end": 3043, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 3040 }, { "analysis_explanation": null, "end": 3078, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 3075 }, { "analysis_explanation": null, "end": 3227, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 3224 }, { "analysis_explanation": null, "end": 3312, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 3309 }, { "analysis_explanation": null, "end": 3321, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 3318 }, { "analysis_explanation": null, "end": 3451, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 3448 }, { "analysis_explanation": null, "end": 4134, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 4131 }, { "analysis_explanation": null, "end": 4197, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 4194 }, { "analysis_explanation": null, "end": 4649, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 4646 }, { "analysis_explanation": null, "end": 4817, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 4814 }, { "analysis_explanation": null, "end": 4944, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 4941 }, { "analysis_explanation": null, "end": 5653, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 5651 }, { "analysis_explanation": null, "end": 5955, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 5953 }, { "analysis_explanation": null, "end": 6081, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6079 }, { "analysis_explanation": null, "end": 6139, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6137 }, { "analysis_explanation": null, "end": 6214, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6212 }, { "analysis_explanation": null, "end": 6280, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6278 }, { "analysis_explanation": null, "end": 6332, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6330 }, { "analysis_explanation": null, "end": 6574, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6572 }, { "analysis_explanation": null, "end": 6800, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6798 }, { "analysis_explanation": null, "end": 6974, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6972 }, { "analysis_explanation": null, "end": 7085, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7083 }, { "analysis_explanation": null, "end": 7241, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7239 }, { "analysis_explanation": null, "end": 7451, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7449 }, { "analysis_explanation": null, "end": 7606, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7603 }, { "analysis_explanation": null, "end": 7625, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7622 }, { "analysis_explanation": null, "end": 7664, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7661 }, { "analysis_explanation": null, "end": 7679, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7677 }, { "analysis_explanation": null, "end": 7996, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7994 }, { "analysis_explanation": null, "end": 8252, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 8250 }, { "analysis_explanation": null, "end": 8285, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 8283 }, { "analysis_explanation": null, "end": 8488, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 8486 }, { "analysis_explanation": null, "end": 10186, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 10184 }, { "analysis_explanation": null, "end": 10325, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 10323 }, { "analysis_explanation": null, "end": 10521, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 10519 }, { "analysis_explanation": null, "end": 10649, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 10647 }, { "analysis_explanation": null, "end": 11355, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 11353 }, { "analysis_explanation": null, "end": 11506, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 11504 }, { "analysis_explanation": null, "end": 11995, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 11992 }, { "analysis_explanation": null, "end": 12297, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 12295 }, { "analysis_explanation": null, "end": 12407, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 12404 }, { "analysis_explanation": null, "end": 12416, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 12413 }, { "analysis_explanation": null, "end": 12521, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 12519 }, { "analysis_explanation": null, "end": 12655, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 12652 }, { "analysis_explanation": null, "end": 12742, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 12739 }, { "analysis_explanation": null, "end": 12854, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 12852 }, { "analysis_explanation": null, "end": 13086, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 13084 }, { "analysis_explanation": null, "end": 13512, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 13510 }, { "analysis_explanation": null, "end": 13870, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 13867 }, { "analysis_explanation": null, "end": 14156, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 14154 }, { "analysis_explanation": null, "end": 14418, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 14415 }, { "analysis_explanation": null, "end": 14718, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 14715 }, { "analysis_explanation": null, "end": 14890, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 14887 }, { "analysis_explanation": null, "end": 14899, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 14896 }, { "analysis_explanation": null, "end": 15092, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 15090 }, { "analysis_explanation": null, "end": 15185, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 15182 }, { "analysis_explanation": null, "end": 15364, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 15362 }, { "analysis_explanation": null, "end": 15654, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 15651 }, { "analysis_explanation": null, "end": 15781, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 15778 }, { "analysis_explanation": null, "end": 15886, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 15884 }, { "analysis_explanation": null, "end": 16213, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 16211 }, { "analysis_explanation": null, "end": 16297, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 16294 }, { "analysis_explanation": null, "end": 16429, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 16427 }, { "analysis_explanation": null, "end": 16545, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 16542 }, { "analysis_explanation": null, "end": 16864, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 16861 }, { "analysis_explanation": null, "end": 16954, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 16951 }, { "analysis_explanation": null, "end": 17210, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 17207 }, { "analysis_explanation": null, "end": 17445, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 17442 }, { "analysis_explanation": null, "end": 17762, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 17760 }, { "analysis_explanation": null, "end": 18163, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 18161 }, { "analysis_explanation": null, "end": 18268, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 18265 }, { "analysis_explanation": null, "end": 18483, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 18480 }, { "analysis_explanation": null, "end": 18546, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 18543 }, { "analysis_explanation": null, "end": 18650, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 18647 }, { "analysis_explanation": null, "end": 18878, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 18875 }, { "analysis_explanation": null, "end": 19054, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 19051 }, { "analysis_explanation": null, "end": 19104, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 19101 }, { "analysis_explanation": null, "end": 19303, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 19301 }, { "analysis_explanation": null, "end": 19681, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 19679 }, { "analysis_explanation": null, "end": 19828, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 19826 }, { "analysis_explanation": null, "end": 20096, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 20093 }, { "analysis_explanation": null, "end": 20420, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 20417 }, { "analysis_explanation": null, "end": 20527, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 20525 }, { "analysis_explanation": null, "end": 20792, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 20790 }, { "analysis_explanation": null, "end": 20971, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 20969 }, { "analysis_explanation": null, "end": 21094, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 21092 }, { "analysis_explanation": null, "end": 22196, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 22194 }, { "analysis_explanation": null, "end": 22464, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 22462 }, { "analysis_explanation": null, "end": 22561, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 22558 }, { "analysis_explanation": null, "end": 22677, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 22674 }, { "analysis_explanation": null, "end": 23380, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23378 }, { "analysis_explanation": null, "end": 23505, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23502 }, { "analysis_explanation": null, "end": 23559, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23556 }, { "analysis_explanation": null, "end": 23576, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23573 }, { "analysis_explanation": null, "end": 23608, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23605 }, { "analysis_explanation": null, "end": 23744, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23742 }, { "analysis_explanation": null, "end": 23812, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23809 }, { "analysis_explanation": null, "end": 23881, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23878 }, { "analysis_explanation": null, "end": 24337, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 24334 }, { "analysis_explanation": null, "end": 24475, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 24473 }, { "analysis_explanation": null, "end": 24646, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 24643 }, { "analysis_explanation": null, "end": 24655, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 24652 }, { "analysis_explanation": null, "end": 24685, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 24682 }, { "analysis_explanation": null, "end": 24694, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 24691 }, { "analysis_explanation": null, "end": 24882, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 24879 }, { "analysis_explanation": null, "end": 24990, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 24987 }, { "analysis_explanation": null, "end": 25029, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 25026 }, { "analysis_explanation": null, "end": 25059, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 25056 }, { "analysis_explanation": null, "end": 25068, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 25065 }, { "analysis_explanation": null, "end": 25156, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 25153 }, { "analysis_explanation": null, "end": 25292, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 25290 }, { "analysis_explanation": null, "end": 25301, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 25298 }, { "analysis_explanation": null, "end": 25310, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 25307 } ]
[ "Body identified in Clay Twp.", "\n\nDetermined to be missing Berks County woman; homicide investigation begins\n\nTwo weeks after 23-year-old Berks County resident Ashley Lynn Kline went missing, her remains were found by two people on Laurel Road in Middle Creek Wildlife in Clay Township. ", "Her death has also been ruled as a homicide.", "\n\nKline was determined to be missing after she left her father’s house in Robesonia on Dec. 30. ", "The Northern Lancaster County Regional Police Department is currently conducting an investigation into the circumstances surrounding the recovery Kline’s body on Laurel Drive.", "\n\n“Everybody is working very hard on this,” said Chief of Police David Steffen of Northern Lancaster County Regional Police Department. “", "The investigation is continuing with police and forensics working on the case.”", "\n\nThe human remains were discovered on Jan. 12. ", "Laurel Drive was closed to public access and a forensic investigation was conducted by the NLCRPD, Pennsylvania State Police, Lancaster County Forensic Unit, and the Office of the Lancaster County Coroner.", "\n\nLast week, a pair of waste pools across from Bollman Hat Company in Adamstown were drained after a piece of evidence was found near the pools. ", "However, Steffen could not confirm if that piece of evidence was positively linked to Kline.", "\n\nAt this point, it hasn’t been determined if Kline was killed in Berks or Lancaster County, but Northern Lancaster County Regional Police Department will continue to handle the case.", "\n\nSteffen encouraged anyone with information on the case, to call the NLCRPD at 733-0965, state police Reading barracks at 1-610-378-4011, or Crime Alert Berks County at 877-373-9913.", "\n\nThe matter remains under investigation in cooperation with the Office of the Lancaster County District Attorney and the Pennsylvania State Police." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0.00392156862745098, 0, 0, 0.011428571428571429, 0.0072992700729927005, 0, 0, 0.01951219512195122, 0.006896551724137931, 0, 0.01092896174863388, 0.01639344262295082, 0.013513513513513514 ]
0.006421
5
[ { "analysis_explanation": null, "end": 27, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19 }, { "analysis_explanation": null, "end": 66, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54 }, { "analysis_explanation": null, "end": 114, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105 }, { "analysis_explanation": null, "end": 132, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121 }, { "analysis_explanation": null, "end": 145, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133 }, { "analysis_explanation": null, "end": 172, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155 }, { "analysis_explanation": null, "end": 263, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242 }, { "analysis_explanation": null, "end": 280, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267 }, { "analysis_explanation": null, "end": 332, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 327 }, { "analysis_explanation": null, "end": 408, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 399 }, { "analysis_explanation": null, "end": 419, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 412 }, { "analysis_explanation": null, "end": 673, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 660 }, { "analysis_explanation": null, "end": 857, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 850 }, { "analysis_explanation": null, "end": 871, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 859 }, { "analysis_explanation": null, "end": 1074, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1065 }, { "analysis_explanation": null, "end": 1142, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1133 }, { "analysis_explanation": null, "end": 1224, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1217 }, { "analysis_explanation": null, "end": 1350, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1345 }, { "analysis_explanation": null, "end": 1370, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1365 }, { "analysis_explanation": null, "end": 1390, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1374 }, { "analysis_explanation": null, "end": 1490, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1483 }, { "analysis_explanation": null, "end": 1618, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 1604 }, { "analysis_explanation": null, "end": 1663, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 1651 } ]
[ "Animal Print Baby Clothes for New Cheetah Print Baby Clothes\n\nIf you’re a neophyte parent of a newborn baby, for certain, you will find questions boggling on your mind about how to buy baby items and accessories. ", "You likely ask what kinds of clothes to buy for your infant? ", "What kind of material to choose? ", "What dimensions and color to buy? ", "These are the usual concerns of first time parents. ", "Selecting Cheetah Print Baby Clothes in the babies section could render you”aahhing” and”umming” because of the extensive group of baby clothes before you. ", "Most frequently, you end browsing around for hours because the collection of baby clothes are endless, from designer labels, cheap clothes and second hand things. ", "You are confused on whether to obtain a designer baby wardrobe, second hand clothes or new items. ", "If you are not careful in your purchase, you may buy unnecessary baby items. ", "Besides fabric types, you have to consider several factors when picking Cheetah Print Baby Clothes. ", "During the financial crisis, practicality is what most parents have in mind. ", "They often opt for funding wise baby items than designer and pricey baby collections. ", "What’s important is to purchase nowadays are the principal things that babies need than branded and expensive items." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 599, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 583 } ]
[ "Nausea and Vomiting\n\nCancer Treatment - Nausea / Vomiting and Chemotherapy\nAfter receiving a few treatments, some patients feel nausea and begin vomiting in anticipation of the next treatment. ", "The reaction is usually caused by something related to the treatment, like the smell of alcohol or the sight of a medical uniform." ]
{ "pile_set_name": "Pile-CC" }
[ 0.0051813471502590676, 0 ]
0.002591
5
[]
[ "Fast American black metal band in the old school style like Slayer or Sodom , with added varying clean vocals and different types of song structures." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.006711409395973154 ]
0.006711
5
[ { "analysis_explanation": null, "end": 13, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 } ]
[ "Ethereum {ETH} Network Is Vulnerable To 51% Attack\n\nSecurity Research Labs, known as the SRLabs, published a new report indicating that the ethereum network is vulnerable to a 51% attack. ", "This is because the Parity and Geth nodes have been left without any connection, exposing the network to security risks.", "\n\nA 51% attack refers to a hypothetical attack on the blockchain by a group of miners who control 50% of network fragmentation or computing power and can prevent new transactions from obtaining network assertions.", "\n\nThe SRLabs report indicates that more than a third of Parity’s Nodes have not been upgraded since the release of the new security version, with 7% remaining unmatched for more than 9 months. ", "As with Geth’s Nodes shown in the chart below.", "\n\nIt should be noted that Parity encouraged its users to update their software after the SRLabs report was published, in order to maintain the safety and security of the endangered ethereum network.", "\n\n51% Attack on the ethereum network:\n\nAs in the Bitcoin network, the fragmentation of the ethereum network is concentrated in the hands of large miners with a number of nodes. ", "And any technical malfunction through them may eventually lead to a 51% attack on the network.", "\n\nThe report said:\n\nEven if the node is safe at the moment, the failure to close the weaknesses identified in the study could lead to the collapse of the ecosystem of the buccaneers" ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0.016666666666666666, 0, 0.0051813471502590676, 0.021739130434782608, 0.005050505050505051, 0.005649717514124294, 0, 0 ]
0.006032
5
[ { "analysis_explanation": null, "end": 223, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219 }, { "analysis_explanation": null, "end": 710, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 692 }, { "analysis_explanation": null, "end": 724, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 720 } ]
[ "Bryan J. Maloney <bjm10 at cornell.edu> wrote:\n>I also consider Latin to\n>be useful for historians and antiquarians. ", "It's dead. ", "No natural\n>scientist needs it these days.", "\nTrue... Greek is *far* more useful for understanding etymologies and\nnuances of words.", "\nEheu, fugaces.", "\n--\nMarc Read <>< <*> Whoe'er would search the starry sky,\nmarc at rauko.demon.co.uk Its secrets to divine, sir,\nShould take his glass -- I mean, should try\nA glass or two of wine, sir!" ]
{ "pile_set_name": "Pile-CC" }
[ 0.017094017094017096, 0, 0, 0, 0, 0.010810810810810811 ]
0.004651
5
[ { "analysis_explanation": null, "end": 16, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 69, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64 }, { "analysis_explanation": null, "end": 169, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159 }, { "analysis_explanation": null, "end": 184, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179 }, { "analysis_explanation": null, "end": 262, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258 }, { "analysis_explanation": null, "end": 285, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276 }, { "analysis_explanation": null, "end": 38, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 27 }, { "analysis_explanation": null, "end": 356, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 339 } ]
[ "Shop\n\nSweet Light Blue Top\n\n$45.00\n\nWhat it is:\n\nYou can't go wrong with this lovely look! ", "Featuring a beautiful light blue color paired with lace details and strappy details, it's so beautifully stylish! ", "The soft material is so comfortable and easy to love wearing all day long, plus it's lightweight enough for a warm or cool day! ", "This top is a must-have for pairing with jeans, leggings, and skirts for a look that's easy to love all season long!" ]
{ "pile_set_name": "Pile-CC" }
[ 0.01098901098901099, 0, 0, 0 ]
0.002747
5
[]
[ "Q:\n\nRuby map function for \"pig latin\"\n\nI am attempting to write a ruby function that takes in a string of words and turns it into Pig Latin. ", "I am breaking the string into an array, and attempting to iterate over each element. ", "When \"eat pie\" is put in, the result is \"eat ie\", but I am unsure why.", "\nstring = \"eat pie\" \narray = string.split(\" \")\n\narray.map do |word| \n\n if word[0].chr == \"a\" || word[0].chr == \"e\" || word[0].chr == \"i\" || word[0].chr == \"o\" || word[0].chr == \"u\"\n\n word = word + \"ay\"\n\n elsif word[1].chr == \"a\" || word[1].chr == \"i\" || word[1].chr == \"o\" || word[1].chr == \"u\"\n temp = word[0]\n word[0] = \"\"\n word = word + temp\n word = word + \"ay\"\n\nelsif word[2].chr == \"a\" || word[2].chr == \"i\" || word[2].chr == \"o\" || word[2].chr == \"u\"\n temp = word[0] + word[1]\n word[0] = \"\"\n word[0] = \"\"\n word = word + temp \n word = word + \"ay\"\n\nelse ## three consonants\n temp = word[0] + word[1] + word[2]\n word[0] = \"\"\n word[0] = \"\"\n word[0] = \"\"\n word = word + temp \n word = word + \"ay\"\n\n end ## end of if statement\n\nend ## end of iteration \n\nputs array.join(\" \")\n\nA:\n\nAgree with the other answers supplied, here's a slightly less verbose version of your code in case it helps you.", "\ninput = 'pig latin is awesome'\n\narr = input.split(' ').map do |wrd|\n if %w(a e i o u).include? ", "wrd[0]\n wrd + 'ay'\n elsif %w(a i o u).include? ", "wrd[1]\n wrd[1..-1] + wrd[0] + 'ay'\n elsif %w(a i o u).include? ", "wrd[2]\n wrd[2..-1] + wrd[0] + wrd[1] + 'ay'\n else\n wrd[3..-1] + wrd[0] + wrd[1] + wrd[2] + 'ay'\n end\nend.join(' ')\n\nputs arr\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0, 0.014084507042253521, 0.02112676056338028 ]
0.004401
5
[ { "analysis_explanation": null, "end": 36, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31 }, { "analysis_explanation": null, "end": 1226, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1221 }, { "analysis_explanation": null, "end": 1293, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1284 }, { "analysis_explanation": null, "end": 355, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 347 }, { "analysis_explanation": null, "end": 1082, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1074 }, { "analysis_explanation": null, "end": 1555, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1549 } ]
[ "Disgraced\n\nStatus:\n\nCategories:\n\nFull production information including credits for Producers, Creatives, Designers and Show Management\n\nContact and agency information for theatrical professionals and companies\n\nView and Download Gross/Capacity data to Excel\n\nReviews, Links, Theatres, Grosses and much more...\n\nSynopsis\n\nDisgraced is the story of a successful Muslim-American lawyer and his wife – an artist influenced by Islamic imagery – enjoying their comfortable and successful life on New York’s Upper East Side. ", "When a co-worker and her husband come to dinner, what begins as polite table conversation explodes, leaving everyone’s relationships and beliefs about race and identity in shards." ]
{ "pile_set_name": "Pile-CC" }
[ 0.005791505791505791, 0 ]
0.002896
5
[ { "analysis_explanation": null, "end": 366, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 360 }, { "analysis_explanation": null, "end": 429, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 422 }, { "analysis_explanation": null, "end": 500, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 490 }, { "analysis_explanation": null, "end": 516, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 501 } ]
[ "Removable storage devices such as USB Flash Disks (UFD), Secure Digital (SD) disks, and the like are small form factor devices that are easily portable and can have significant storage capacity. ", "While their portability and large storage capacity provide significant advantages to users for transferring data, these same attributes present a significant security challenge for companies, laboratories and other organizations. ", "The small size, large storage capacity and ease of use of such devices could allow unsupervised visitors or unscrupulous employees to smuggle confidential data out of an organization with little chance of detection. ", "Moreover, computer systems are vulnerable to attack by malicious software introduced into the system from removable devices.", "\nIn view of these concerns, despite the clear advantages provided by removable storage devices, many organizations are taking steps to prevent their usage. ", "Some organizations forbid all manner of removable storage device usage. ", "Some organizations configure computers, one at a time, to disconnect or otherwise disable the ports within which removable storage devices are received. ", "Other organizations have gone so far as to plug the removable storage device ports with epoxy or the like.", "\nIt would be advantageous for IT administrators to be able to control the use of and access by removable storage devices on a network-wide basis. ", "At present, Window® based operating systems employ a group policy framework. ", "Group policy is an infrastructure where one or more desired configurations or policy settings may be set at a single domain controller and then applied to one or more groups of users and/or computers across a network. ", "Group policy employs a collection of settings, referred to as group policy objects (“GPO”), that define what one or more client computers will look like and how it will behave for one or more defined group of users. ", "In addition to allowing disparate privileges to different user groups, group policy also allows software installations, updates and changes to be applied across an entire network of computers via a simple change to an existing GPO. ", "This reduces the administrative burden and costs associated with managing these resources.", "\nGroup policy is currently used to manage and control software features available on a given computer or available to a given user. ", "A wide variety of software attributes and functions may be controlled via group policy including security policy, scripts for logon/logoff, start up and shut down, and Internet Explorer settings. ", "Removable storage devices have not conventionally been controlled through group policy. ", "While it is known to be able to inhibit the operation of a class of removable storage devices, such as for example disabling the CD/DVD drives through the I/O manager in the Windows® operating system, no system is known to the inventor for selectively applying access rights to each device on a given client computer.", "\nBy the same token, the installation of unique class identifier devices, removable or otherwise, presents similar security risks. ", "A unique class identifier device is a generic term for a device which identifies itself as belonging to a set of devices with specific functionality, where the unique class identifier may not already be known to the operating system. ", "A custom GUID (global unique identifier) is one example of a unique class identifier. ", "When a vendor develops a previously unknown device for use on or with a Windows® operating system computing device, the vendor generates a unique class identifier for that device. ", "The Windows® operating system includes a tool—guidgen.exe—for generating unique class identifiers for new devices. ", "Over time, as the device becomes more common, the unique class identifier may be identified to the Windows® operating system (either as a snap-in to an existing version, or written into a new version). ", "At that time, the GUID device class for that device becomes known, or standard. ", "As one example, Windows Portable Devices (“WPDs”), including portable media players, digital still cameras and mobile phones were assigned a unique class identifier in older versions of the Windows® operating system. ", "However, in Windows Vista™ operating system, WPDs have been identified to the operating system and now WPDs are considered a standard device class.", "\nOnce the device class for a device is known, group policy may be set for that device. ", "However, conventionally, there are no mechanisms for setting group policy for unique class identifier devices. ", "Consequently, until a device class GUID is identified to the operating system and becomes known, there is no way to restrict usage of or access to such devices using group policy." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0.015384615384615385, 0, 0, 0, 0, 0, 0, 0, 0, 0.012987012987012988, 0, 0.004629629629629629, 0.004310344827586207, 0, 0, 0.00510204081632653, 0, 0.0031545741324921135, 0, 0, 0, 0.005555555555555556, 0.008695652173913044, 0.0049504950495049506, 0.0125, 0.009216589861751152, 0.006802721088435374, 0, 0, 0.00558659217877095 ]
0.003296
5
[ { "analysis_explanation": null, "end": 2548, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2531 } ]
[ "Electrophoresis separation of glycosaminoglycans on nitrocellulose membranes.", "\nA rapid and simple electrophoretic separation method on nitrocellulose membranes by a single run of glycosaminoglycans, mainly slow-moving and fast-moving heparins, dermatan sulfate, and chondroitin sulfate, is reported. ", "Different dyes, azure A, toluidine blue, and Alcian blue, were used to stain the nitrocellulose strips, and azure A showed the highest sensitivity. ", "The mobility for slow-moving heparin was 0.00 cm/A/min, for fast-moving species about 2.87 x 10(-3) cm/A/min, for dermatan sulfate 4.00 x 10(-3) cm/A/min, and for chondroitin sulfate about 5.75 x 10(-3) cm/A/min. ", "Calibration curves were determined by the increasing amounts (from 0. ", "1 to 2.5 microg) of single glycosaminoglycan species. ", "The curves demonstrated a linear relationship between the amount of glycosaminoglycans (slow-moving and fast-moving heparin, dermatan sulfate, and chondroitin sulfate) and the optical density at 600 nm calculated by densitometric scanning. ", "The limit of detection for fast-moving heparin, dermatan sulfate and chondroitin sulfate was about 0.2-0.3 microg, while that for slow-moving heparin was 0.1 microg. ", "Hyaluronic acid, keratan sulfate, and highly sulfated chondroitin sulfate from shark cartilage were also separated electrophoretically on nitrocellulose. ", "No difference in mobility was detected for chondroitin sulfates with different structure and physicochemical properties. ", "Hyaluronic acid has about the same mobility as that of dermatan sulfate, while keratan sulfate has a mobility intermediate between those of dermatan sulfate and chondroitin sulfate (about 4.75 x 10(-3) cm/A/min). ", "Glycosaminoglycans extracted and purified from bovine aorta and bovine lung were submitted to electrophoresis on nitrocellulose and the amount of each polysaccharide species was calculated by densitometric scanning. ", "By this analysis bovine aorta glycosaminoglycans consist of about 11% fast-moving heparin (heparan sulfate), 23% dermatan sulfate, and 65% chondroitin sulfate. ", "Bovine lung polysaccharides are composed of about 16% slow-moving and 46% fast-moving species (62% heparin), 15% dermatan sulfate, and 22% chondroitin sulfate." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.0045045045045045045, 0, 0, 0, 0, 0.004166666666666667, 0.006024096385542169, 0, 0, 0, 0, 0, 0 ]
0.00105
5
[ { "analysis_explanation": null, "end": 350, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 344 }, { "analysis_explanation": null, "end": 1696, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1678 } ]
[ "var cookieParser = require('cookie-parser')\nvar basicAuth = require('basic-auth')\nvar express = require('express')\nvar fs = require('fs')\nvar http = require('http')\nvar path = require('path')\nvar url = require('url')\n\nvar app = express()\nvar server = http.createServer(app)\n\n// Otherwise, use 'application/octet-stream'\nvar copiesMimeTypes = {\n\t'/basic.txt': 'text/plain'\n}\n\nvar maxDelay = 5000 // ms\n\n// This should make sure bodies aren't cached\n// so the streaming tests always pass\napp.use(function (req, res, next) {\n\tres.setHeader('Cache-Control', 'no-store')\n\tnext()\n})\n\napp.get('/testHeaders', function (req, res) {\n\tvar parsed = url.parse(req.url, true)\n\n\t// Values in query parameters are sent as response headers\n\tObject.keys(parsed.query).forEach(function (key) {\n\t\tres.setHeader('Test-' + key, parsed.query[key])\n\t})\n\n\tres.setHeader('Content-Type', 'application/json')\n\tres.setHeader('Cache-Control', 'no-cache')\n\n\t// Request headers are sent in the body as json\n\tvar reqHeaders = {}\n\tObject.keys(req.headers).forEach(function (key) {\n\t\tkey = key.toLowerCase()\n\t\tif (key.indexOf('test-') === 0) {\n\t\t\t// different browsers format request headers with multiple values\n\t\t\t// slightly differently, so normalize\n\t\t\treqHeaders[key] = req.headers[key].replace(', ', ',')\n\t\t}\n\t})\n\n\tvar body = JSON.stringify(reqHeaders)\n\tres.setHeader('Content-Length', body.length)\n\tres.write(body)\n\tres.end()\n})\n\napp.get('/cookie', cookieParser(), function (req, res) {\n\tres.setHeader('Content-Type', 'text/plain')\n\tres.write('hello=' + req.cookies.hello)\n\tres.end()\n})\n\napp.get('/auth', function (req, res) {\n\tvar user = basicAuth(req)\n\n\tif (!", "user || user.name !", "== 'TestUser' || user.pass !", "== 'trustno1') {\n\t\tres.setHeader('WWW-Authenticate', 'Basic realm=\"example\"')\n\t\tres.end('Access denied')\n\t} else {\n\t\tres.setHeader('Content-Type', 'text/plain')\n\t\tres.write('You\\'re in!')", "\n\t\tres.end()\n\t}\n})\n\napp.post('/echo', function (req, res) {\n\tres.setHeader('Content-Type', 'application/octet-stream')\n\treq.pipe(res)\n})\n\napp.use('/verifyEmpty', function (req, res) {\n\tvar empty = true\n\treq.on('data', function (buf) {\n\t\tif (buf.length > 0) {\n\t\t\tempty = false\n\t\t}\n\t})\n\treq.on('end', function () {\n\t\tres.setHeader('Content-Type', 'text/plain')\n\n\t\tif (empty) {\n\t\t\tres.end('empty')\n\t\t} else {\n\t\t\tres.end('not empty')\n\t\t}\n\t})\n})\n\napp.use(function (req, res, next) {\n\tvar parsed = url.parse(req.url, true)\n\n\tif ('copies' in parsed.query) {\n\t\tvar totalCopies = parseInt(parsed.query.copies, 10)\n\t\tfunction fail () {\n\t\t\tres.statusCode = 500\n\t\t\tres.end()\n\t\t}\n\t\tfs.readFile(path.join(__dirname, 'static', parsed.pathname), function (err, data) {\n\t\t\tif (err)\n\t\t\t\treturn fail()\n\n\t\t\tvar mimeType = copiesMimeTypes[parsed.pathname] || 'application/octet-stream'\n\t\t\tres.setHeader('Content-Type', mimeType)\n\t\t\tres.setHeader('Content-Length', data.length * totalCopies)\n\t\t\tvar pieceDelay = maxDelay / totalCopies\n\t\t\tif (pieceDelay > 100)\n\t\t\t\tpieceDelay = 100\n\n\t\t\tfunction write (copies) {\n\t\t\t\tif (copies === 0) \n\t\t\t\t\treturn res.end()\n\n\t\t\t\tres.write(data, function (err) {\n\t\t\t\t\tif (err)\n\t\t\t\t\t\treturn fail()\n\t\t\t\t\tsetTimeout(write.bind(null, copies - 1), pieceDelay)\n\t\t\t\t})\n\t\t\t}\n\t\t\twrite(totalCopies)\n\t\t})\n\t\treturn\n\t}\n\tnext()\n})\n\napp.use(express.static(path.join(__dirname, 'static')))\n\nvar port = parseInt(process.env.", "ZUUL_PORT) || 8199\nconsole.log('Test server listening on port', port)\nserver.listen(port)\n" ]
{ "pile_set_name": "Github" }
[ 0.0018359853121175031, 0, 0.03571428571428571, 0.016042780748663103, 0.0014124293785310734, 0 ]
0.009168
5
[ { "analysis_explanation": null, "end": 16, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 628, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 622 }, { "analysis_explanation": null, "end": 644, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 638 }, { "analysis_explanation": null, "end": 991, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 971 }, { "analysis_explanation": null, "end": 1434, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1422 }, { "analysis_explanation": null, "end": 1604, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1598 }, { "analysis_explanation": null, "end": 2057, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2051 }, { "analysis_explanation": null, "end": 2120, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2110 }, { "analysis_explanation": null, "end": 2351, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2345 }, { "analysis_explanation": null, "end": 2367, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 2361 }, { "analysis_explanation": null, "end": 2775, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2767 }, { "analysis_explanation": null, "end": 3295, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3286 }, { "analysis_explanation": null, "end": 258, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 251 }, { "analysis_explanation": null, "end": 492, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 486 }, { "analysis_explanation": null, "end": 529, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 523 }, { "analysis_explanation": null, "end": 584, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 578 }, { "analysis_explanation": null, "end": 734, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 725 }, { "analysis_explanation": null, "end": 784, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 778 }, { "analysis_explanation": null, "end": 838, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 832 }, { "analysis_explanation": null, "end": 889, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 883 }, { "analysis_explanation": null, "end": 1007, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 998 }, { "analysis_explanation": null, "end": 1062, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1056 }, { "analysis_explanation": null, "end": 1086, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1080 }, { "analysis_explanation": null, "end": 1305, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1298 }, { "analysis_explanation": null, "end": 1332, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1326 }, { "analysis_explanation": null, "end": 1409, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1403 }, { "analysis_explanation": null, "end": 1467, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1461 }, { "analysis_explanation": null, "end": 1533, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1527 }, { "analysis_explanation": null, "end": 1567, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1561 }, { "analysis_explanation": null, "end": 1650, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1643 }, { "analysis_explanation": null, "end": 1679, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1672 }, { "analysis_explanation": null, "end": 1709, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1703 }, { "analysis_explanation": null, "end": 1807, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1801 }, { "analysis_explanation": null, "end": 1936, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1930 }, { "analysis_explanation": null, "end": 2013, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2007 }, { "analysis_explanation": null, "end": 2190, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2184 }, { "analysis_explanation": null, "end": 2317, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2311 }, { "analysis_explanation": null, "end": 2464, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2449 }, { "analysis_explanation": null, "end": 2504, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2498 }, { "analysis_explanation": null, "end": 2543, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2538 }, { "analysis_explanation": null, "end": 2557, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2550 }, { "analysis_explanation": null, "end": 2590, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2581 }, { "analysis_explanation": null, "end": 2696, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2687 }, { "analysis_explanation": null, "end": 2743, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2737 }, { "analysis_explanation": null, "end": 2786, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2780 }, { "analysis_explanation": null, "end": 3099, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3091 }, { "analysis_explanation": null, "end": 3202, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3196 }, { "analysis_explanation": null, "end": 3214, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3204 }, { "analysis_explanation": null, "end": 3226, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3219 }, { "analysis_explanation": null, "end": 3365, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3356 } ]
[ "Q:\n\nhow to call a multiple function within a multiple one by mathematica?", "\n\nI have defined a multiple function before and i want to call it within another multiple function by Mathematica software.", "\n\nA:\n\nYou must decide what is known ahead of time and what is known only\nwhen the function h is called. ", " For example, you propose\n f[a_,b_] := a+b*a^2\n g[c_,d_] := (c/d)+d*5\n h[x_,y_] := x[a,b] +y[c,d]\n\nThis only makes sens if {a,b,c,d} are known outside of the functions.", "\nThat may simply be the opposite of what you want.", "\nThat is, you may want to define h in terms of known functions\nbut unknown parameter values. ", " E.g.,\n f[a_,b_] := a+b*a^2\n g[c_,d_] := (c/d)+d*5\n h[a_,b_,c_,d_] := f[a,b] +g[c,d]\n\nFinally, you may want to define h in terms of unknown functions\nas well as unknown parameter values. ", " E.g.,\n h[a_,b_,c_,d_,f1_,f2_] := f1[a,b] + f2[c,d]\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[]
[ "<?", "xml version=\"1.0\"?", ">\n<!--", "\n/**\n * Magento\n *\n * NOTICE OF LICENSE\n *\n * This source file is subject to the Academic Free License (AFL 3.0)\n * that is bundled with this package in the file LICENSE_AFL.txt.", "\n * It is also available through the world-wide-web at this URL:\n * http://opensource.org/licenses/afl-3.0.php\n * If you did not receive a copy of the license and are unable to\n * obtain it through the world-wide-web, please send an email\n * to license@magento.com so we can send you a copy immediately.", "\n *\n * DISCLAIMER\n *\n * Do not edit or add to this file if you wish to upgrade Magento to newer\n * versions in the future. ", "If you wish to customize Magento for your\n * needs please refer to http://www.magento.com for more information.", "\n *\n * @category Mage\n * @package Mage_ConfigurableSwatches\n * @copyright Copyright (c) 2006-2020 Magento, Inc. (http://www.magento.com)\n * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)\n */\n-->\n<jstranslator>\n <!-- ", "swatches-product.js -->\n <add-to-cart translate=\"message\" module=\"configurableswatches\">\n <message>Add to Cart</message>\n </add-to-cart>\n <in-stock translate=\"message\" module=\"configurableswatches\">\n <message>In Stock</message>\n </in-stock>\n <out-of-stock translate=\"message\" module=\"configurableswatches\">\n <message>Out of Stock</message>\n </out-of-stock>\n <!-- ", "end swatches-product.js -->\n</jstranslator>\n" ]
{ "pile_set_name": "Github" }
[ 0, 0.05555555555555555, 0, 0.0056179775280898875, 0.006600660066006601, 0.008130081300813009, 0.018018018018018018, 0.025925925925925925, 0, 0 ]
0.011985
5
[ { "analysis_explanation": null, "end": 469, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 450 }, { "analysis_explanation": null, "end": 315, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.95, "start": 273 }, { "analysis_explanation": null, "end": 820, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 810 }, { "analysis_explanation": null, "end": 846, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 837 }, { "analysis_explanation": null, "end": 719, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 697 }, { "analysis_explanation": null, "end": 884, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 862 }, { "analysis_explanation": null, "end": 944, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 902 }, { "analysis_explanation": null, "end": 469, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 458 } ]
[ "Washington (CNN) An official with the National Oceanic and Atmospheric Administration is going to investigate if the agency violated its own ethics when it backed President Donald Trump's tweets about Hurricane Dorian over its experts, according to a report by the Washington Post.", "\n\nThe move is the latest development in an ongoing controversy surrounding the President's false assertion last week that Hurricane Dorian would hit Alabama. ", "On Friday, NOAA disavowed a tweet from the National Weather Service's Birmingham, Alabama, office that had contradicted Trump's claim.", "\n\nIn an internal email obtained by The Washington Post, NOAA Acting Chief Scientist Craig McLean called the response \"political\" and \"a danger to public health and safety.\" ", "He also said he would investigate if the agency's actions violated the \"NOAA Administrative Order on Scientific Integrity.\"", "\n\n\"The NWS Forecaster(s) corrected any public misunderstanding in an expert and timely way, as they should,\" McLean said. \"", "There followed, last Friday, an unsigned press release from 'NOAA' that inappropriately and incorrectly contradicted the NWS forecaster. ", "My understanding is that this intervention to contradict the forecaster was not based on science but on external factors including reputation and appearance, or simply put, political.\"", "\n\nCNN has reached out to NOAA for comment.", "\n\nRead More" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.014234875444839857, 0, 0.022388059701492536, 0.017341040462427744, 0, 0.008130081300813009, 0.0072992700729927005, 0, 0.047619047619047616, 0 ]
0.011701
5
[ { "analysis_explanation": null, "end": 10, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 185, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173 }, { "analysis_explanation": null, "end": 396, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 387 }, { "analysis_explanation": null, "end": 436, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 429 }, { "analysis_explanation": null, "end": 447, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 441 }, { "analysis_explanation": null, "end": 518, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 508 }, { "analysis_explanation": null, "end": 527, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 520 }, { "analysis_explanation": null, "end": 563, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 558 }, { "analysis_explanation": null, "end": 667, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 655 }, { "analysis_explanation": null, "end": 1017, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1006 } ]
[ "Football superstar Cristiano Ronaldo is joining the fight against the outbreak of novel Covid-19 that has triggered a global health scare and jolted the global sporting calendar.", "\n\nUPDATE: One of the hotels of Portuguese football star Cristiano Ronaldo has denied reports that it has been transformed into a facility to help those affected with the novel coronavirus.", "\n\nAccording to Spanish newspaper MARCA, all CR7 hotels are set to be converted into hospitals to treat patients amid the outbreak of novel Covid-19. ", "The facility can be used free of charge, the report added.", "\n\n\"The Juventus footballer will be the one who pays the doctors and workers,\" the report reads.", "\n\nDespite the leading Spanish daily reporting the news, a Portugal journalist, Filipe Caetano, on Sunday said the information posted 'is not true'.", "\n\nEarlier, Cristiano Ronaldo posted an emotional message, urging his fans and the public to follow the World Health Organisation (WHO) guidelines when it comes to precautions against the novel Covid-19.", "\n\nRonaldo also said his continued support is with the 'amazing' health professionals who are putting their own lives at risk to help save others.", "\n\n\"I speak to you not as a football player, but as a son, father, a human being concerned with the latest developments that is affecting the world,\" Ronaldo said.", "\n\n\"Protecting human life must come above any other interests, Ronaldo added in his post. ", "I would like to send my thoughts to everyone who has lost someone close to them, my solidarity to those who are fighting the virus, like my teammate Daniele Rugani, and my continued support to the amazing health professionals putting their own lives at risk to help save others.\"", "\n\nCristiano Ronaldo has been in quarantine in Madeira, Portugal after it came to light that one of his Juventus teammates, Daniele Rugani tested positive for the virus. ", "The Juventus players, members of the staff and those who came into contact with Rugani are in voluntary isolation, the Serie A club had said.", "\n\nMeanwhile, a number of basketball players have decided to help out the hourly workers who support their teams and work in arenas after the NBA season was suspended due to the outbreak of the virus.", "\n\nAmong a series of players who are making donations, including Cleveland Cavaliers' Kevin Love, Zion Williamson of the New Orleans Pelicans, the Detroit Pistons' Blake Griffin and Giannis Antetokounmpo of the Milwaukee Bucks. ", "The players made the announcement public on different social media platforms.", "\n\nThe novel coronavirus has also led to the suspension of a series of sporting events, including NBA, ATP and WTA tournaments, top-tier football leagues across Europe and the US and major cricket tournaments, including the Indian Premier League." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.0056179775280898875, 0.005319148936170213, 0.006711409395973154, 0, 0.010526315789473684, 0.006802721088435374, 0.009900990099009901, 0.006896551724137931, 0.006172839506172839, 0.011235955056179775, 0.0035842293906810036, 0.011834319526627219, 0.014184397163120567, 0, 0.02643171806167401, 0, 0.00816326530612245 ]
0.007846
5
[ { "analysis_explanation": null, "end": 36, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19 }, { "analysis_explanation": null, "end": 218, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208 }, { "analysis_explanation": null, "end": 250, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233 }, { "analysis_explanation": null, "end": 386, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 379 }, { "analysis_explanation": null, "end": 693, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 686 }, { "analysis_explanation": null, "end": 699, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 694 }, { "analysis_explanation": null, "end": 730, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 722 }, { "analysis_explanation": null, "end": 757, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 743 }, { "analysis_explanation": null, "end": 768, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 762 }, { "analysis_explanation": null, "end": 838, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 821 }, { "analysis_explanation": null, "end": 1020, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1013 }, { "analysis_explanation": null, "end": 1311, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1304 }, { "analysis_explanation": null, "end": 1385, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1378 }, { "analysis_explanation": null, "end": 1568, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1554 }, { "analysis_explanation": null, "end": 1702, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1685 }, { "analysis_explanation": null, "end": 1736, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1729 }, { "analysis_explanation": null, "end": 1746, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1738 }, { "analysis_explanation": null, "end": 1820, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1806 }, { "analysis_explanation": null, "end": 1938, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1932 }, { "analysis_explanation": null, "end": 2071, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2065 }, { "analysis_explanation": null, "end": 2285, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2275 }, { "analysis_explanation": null, "end": 2302, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2287 }, { "analysis_explanation": null, "end": 2366, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2353 }, { "analysis_explanation": null, "end": 2392, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2371 }, { "analysis_explanation": null, "end": 2659, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2653 }, { "analysis_explanation": null, "end": 2670, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2668 }, { "analysis_explanation": null, "end": 2722, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2716 } ]
[ "Charlotte Church survives deadly gas leak\n\nCharlotte Church and her two young children were almost killed by carbon monoxide following a deadly gas leak at her new home\n\nCharlotte Church and her two children were almost killed by a deadly gas leak at her new home.", "\n\nThe 24-year-old singer - who has three-year-old daughter Ruby and son Dexter, two, with ex-fiance Gavin Henson - had been suffering from headaches and only became aware she was being poisoned when her concerned grandfather suggested she install a carbon monoxide detector at the £1.3 million mansion in South Wales.", "\n\nA source said: \"Charlotte was terrified when she found out what had been happening and said she feels lucky to be alive. ", "She had been complaining of headaches for weeks but had no idea why.", "\n\n\"Then her granddad suspected carbon monoxide could be the reason and installed a detector to find out. ", "Thanks to him, both Charl and the kids are fine.\"", "\n\nFriends believe Charlotte - who moved to the five-bedroom house in July after splitting for rugby star Gavin - managed to escape unharmed because the house is so big.", "\n\nThe source added to Closer magazine: \"She had no idea that the boiler was playing up. ", "When she heard the carbon monoxide alarm go off, she called in a plumber, who said her granddad saved her life.", "\n\n\"She is probably lucky that the house is so big and airy and the boiler is a long way from the living areas. ", "But she knows she's had a lucky escape.\"" ]
{ "pile_set_name": "Pile-CC" }
[ 0.011363636363636364, 0.006309148264984227, 0.008130081300813009, 0, 0, 0.02040816326530612, 0.011904761904761904, 0, 0, 0, 0 ]
0.005283
5
[ { "analysis_explanation": null, "end": 280, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269 }, { "analysis_explanation": null, "end": 312, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298 }, { "analysis_explanation": null, "end": 326, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 322 }, { "analysis_explanation": null, "end": 341, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 335 }, { "analysis_explanation": null, "end": 375, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 363 }, { "analysis_explanation": null, "end": 579, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 568 }, { "analysis_explanation": null, "end": 606, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 597 }, { "analysis_explanation": null, "end": 749, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 744 }, { "analysis_explanation": null, "end": 899, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 894 }, { "analysis_explanation": null, "end": 949, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 940 }, { "analysis_explanation": null, "end": 995, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 991 }, { "analysis_explanation": null, "end": 1032, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1027 } ]
[ "Hitting a Moving Target: How Does an N-Methyl Group Impact Biological Activity?", "\nMacrocycles have several advantages over small-molecule drugs when it comes to addressing specific protein-protein interactions as therapeutic targets. ", "Herein we report the synthesis of seven new cyclic peptide molecules and their biological activity. ", "These macrocycles were designed to understand how moving an N-methyl moiety around the peptide backbone impacts biological activity. ", "Because the lead non-methylated structure inhibits the oncogenic regulator heat-shock protein 90 (Hsp90), two of the most potent analogues were evaluated for their Hsp90 inhibitory activity. ", "We show that incorporating an N-methyl moiety controls the conformation of the macrocycle, which dramatically impacts cytotoxicity and binding affinity for Hsp90. ", "Thus, the placement of an N-methylated amino acid within a macrocycle generates an unpredictable change to the compound's conformation and hence biological activity." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.006535947712418301, 0.01, 0, 0, 0, 0 ]
0.002362
5
[]
[ "Effects of statin therapy in children complicated with coronary arterial abnormality late after Kawasaki disease: a pilot study.", "\nOngoing low-grade inflammation and endothelial dysfunction persist in patients late after Kawasaki disease (KD). ", "Statins not only reduce cholesterol, but also improve surrogate markers of atherosclerosis and endothelial dysfunction, but their effects for children late after KD complicated with coronary arterial abnormality (CAA) has not been evaluated. ", "The 11 KD children complicated with CAA (mean age 12.9+/-2.5 years, mean interval from episode 10.77+/-3.01 years) and 11 age- and gender-matched healthy controls were studied. ", "The KD group received oral simvastatin 10 mg/day for 3 months. ", "Lipid profiles, high-sensitivity C-reactive protein (hs-CRP) and flow-mediated dilation (FMD) of the brachial artery were performed at baseline in both groups and 3 months later in the KD group. ", "At baseline, the KD group had significantly higher hs-CRP level and decreased FMD than the control group. ", "After 3 months' treatment, the KD group showed a significant reduction in the hs-CRP level and a significant increase in FMD. ", "In this small study, short-term statin therapy appeared to significantly improve chronic vascular inflammation and endothelial dysfunction with no adverse effects in children complicated by CAA late after KD. ", "However, long-term and randomized studies are still needed to make further conclusions." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.0078125, 0.008771929824561403, 0.004132231404958678, 0, 0.015873015873015872, 0.005128205128205128, 0.018867924528301886, 0.015873015873015872, 0.009569377990430622, 0 ]
0.008603
5
[ { "analysis_explanation": null, "end": 597, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 579 }, { "analysis_explanation": null, "end": 709, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 700 }, { "analysis_explanation": null, "end": 722, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 714 }, { "analysis_explanation": null, "end": 901, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 887 }, { "analysis_explanation": null, "end": 1040, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1031 } ]
[ "Subscribe to our weekly newsletter and be the first to learn about all of our new free UI resources!", "\n\nWooder Free Landing Page Web Template\n\nThe Wooder landing page template is an exercise in minimalism done right. ", "With clean, simple designs, and a clear emphasis placed on the content, this is a great landing page template for designers who want to let the product speak for itself." ]
{ "pile_set_name": "Pile-CC" }
[ 0.01, 0.008695652173913044, 0 ]
0.006232
5
[ { "analysis_explanation": null, "end": 23, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17 } ]
[ "Giants OF Cabrera suspended for positive drug test\n\nSan Francisco Giants' Melky Cabrera fouls off a pitch from Washington Nationals' Jordan Zimmermann in the fifth inning of a baseball game Tuesday in San Francisco.", "\n\nSAN FRANCISCO >> San Francisco Giants outfielder Melky Cabrera has been suspended for 50\ngames without pay after testing positive for testosterone.", "\n\nThe\ncommissioner's office says the suspension is effective immediately.", "\nMajor League Baseball said on Wednesday that Cabrera tested positive for\nthe banned performance-enhancing substance, which violates MLB's joint\ndrug prevention and treatment program.", "\n\nThe MVP of the All-Star\ngame last month, Cabrera is batting .346 with 11 home runs and 60 RBIs\nin his first season with San Francisco." ]
{ "pile_set_name": "Pile-CC" }
[ 0.018604651162790697, 0.006711409395973154, 0, 0.01639344262295082, 0.022058823529411766 ]
0.012754
5
[ { "analysis_explanation": null, "end": 17, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10 }, { "analysis_explanation": null, "end": 87, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74 }, { "analysis_explanation": null, "end": 150, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133 }, { "analysis_explanation": null, "end": 197, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190 }, { "analysis_explanation": null, "end": 214, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201 }, { "analysis_explanation": null, "end": 229, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216 }, { "analysis_explanation": null, "end": 278, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265 }, { "analysis_explanation": null, "end": 475, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 466 }, { "analysis_explanation": null, "end": 488, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 481 }, { "analysis_explanation": null, "end": 658, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 648 }, { "analysis_explanation": null, "end": 667, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 660 }, { "analysis_explanation": null, "end": 733, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 717 }, { "analysis_explanation": null, "end": 752, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 739 } ]
[ "Phialophora asteris\n\nPhialophora asteris is an ascomycete fungus that is a plant pathogen infecting sunflowers.", "\n\nReferences\n\nFurther reading\n\nExternal links \n Index Fungorum\n USDA ARS Fungal Database\n\nCategory:Fungal plant pathogens and diseases\nCategory:Sunflower diseases\nCategory:Ascomycota incertae sedis\nCategory:Fungi described in 1974" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.018018018018018018, 0 ]
0.009009
5
[ { "analysis_explanation": null, "end": 340, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 336 } ]
[ "In today's convenience daily life, people are accustomed to use an electronic device with computational capability to achieve various kinds of applications. ", "For example, these applications include working, file processing, entertainment, social communication, and so on. ", "With development of science and technology, information can be propagated more quickly. ", "Accordingly, various network service platforms, operating systems and software tools have been have been developed for people to use and brought more efficient lives to the users. ", "Especially in the post-PC era, the conventional desktop computers, tablet computers, mobile phones or other mobile devices still make people to implement tasks whenever and wherever they are, and people over the world communicate with each other to transmit and share information through the internet.", "\nWith increasing development of the internet, the American Google company provides more and more network services to the users. ", "For example, the user may create a personalized information page through an iGoogle platform, which is provided by Google. ", "Moreover, the user may arrange required widgets in a collaborative working platform that is provided by Google in order to perform collaborative work with other users. ", "However, the iGoogle platform or the collaborative working platform still has some drawbacks. ", "For example, the user is only allowed to select and arrange at least one tool and/or information in a workspace of the platform through limited options. ", "The limited options indicate plural widgets that are arranged in various Google platforms and provided to users. ", "While the platform is used, any tool and/or information that is in the internet but incompatible with the Google platforms cannot be arbitrarily combined together into the workspace of the platform by the user. ", "Since Google has not developed a satisfactory unifying process for allowing any information and any tool in the internet to be combined together into the Google platform, the tool and/or information cannot be arbitrarily combined together into the workspace of the Google platform by the user.", "\nAlthough the network services provided by the network service providers become more diverse, some inconvenient and perplexing problems below occur. ", "Firstly, a large number of information units and tools in the same or different formats are distributed in different information sources. ", "Since the information units and the tools in different formats are usually incompatible, it is difficult to integrate the information units and the tools that are obtained in a single workspace and have different formats. ", "Secondly, various kinds of network service platforms, operating systems and software components are almost developed by different developers, and usually independent from and incompatible with each other. ", "Consequently, while a task is performed, it is unable to operate specified functions of different network service platforms, operating systems and software through a single user interface. ", "Thirdly, the existing hardware components or software components are developed in view of “personal devices”. ", "That is, a large number of data stations with obvious barriers in the internet become obstruction for many people to work collaboratively. ", "Under this circumstance, the purpose of having no international limitation in the network cannot be successfully achieved.", "\nTherefore, the network service providing method needs to be further improved." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0.006369426751592357, 0, 0, 0, 0, 0, 0.016260162601626018, 0, 0.010638297872340425, 0, 0.008849557522123894, 0.004739336492890996, 0.010238907849829351, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.002595
5
[ { "analysis_explanation": null, "end": 8, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3 } ]
[ "Monterey, Missouri\n\nMonterey is an unincorporated community in Reynolds County, in the U.S. state of Missouri.", "\n\nHistory\nA post office called Monterey was established in 1894, and remained in operation until 1957. ", "The community most likely takes its name from Monterey, California, perhaps via the Battle of Monterey.", "\n\nReferences\n\nCategory:Unincorporated communities in Reynolds County, Missouri\nCategory:Unincorporated communities in Missouri" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0, 0.009708737864077669, 0, 0 ]
0.002427
5
[ { "analysis_explanation": null, "end": 8, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 18, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10 }, { "analysis_explanation": null, "end": 28, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20 }, { "analysis_explanation": null, "end": 78, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63 }, { "analysis_explanation": null, "end": 91, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87 }, { "analysis_explanation": null, "end": 109, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101 }, { "analysis_explanation": null, "end": 148, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140 }, { "analysis_explanation": null, "end": 172, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168 }, { "analysis_explanation": null, "end": 210, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 206 }, { "analysis_explanation": null, "end": 266, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258 }, { "analysis_explanation": null, "end": 278, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268 }, { "analysis_explanation": null, "end": 382, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 367 }, { "analysis_explanation": null, "end": 392, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 384 }, { "analysis_explanation": null, "end": 440, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 432 } ]
[ "Q:\n\nHow can I have an object of objects and call them dynamically?", "\n\nSo, I know what I am trying to do I am just not sure if I am doing it right, and hopefully my question describes what I am trying to do.", "\nI have about a dozen arrays that look like this:\nvar floorStatusAr = ['','','','','','','','disabled'];\nvar floorStatusSp = ['','','','','disabled','','',''];\nvar floorStatusSmm = ['','disabled','','','','','disabled',''];\n\nIt seemed too redundant to me, so I was hoping there was a better way. ", "This was my attempt:\nvar floorStatuses = {\n AR:['','','','','','','','disabled'],\n SP:['','','','','disabled','','',''],\n SMM:['','disabled','','','','','disabled','']\n\nI've also tried:\nvar floorStatuses = {\n \"AR\":['','','','','','','disabled',''],\n \"SP\":['','','','','disabled','','',''],\n \"SMM\":['','disabled','','','','','disabled',''],\n\nBoth ways I can get results from\nalert(floorStatuses.", "AR[0]); //alerts \"\", [7] alerts \"disabled\"\n\nBut in the rest of my code, I need to be able to call these dynamically. ", "To test this I do:\ninitial = \"AR\";\nalert(floorStatuses.initial[0]);\n\nBut I just get an error that floorStatuses.initial is undefined.", "\nIf I could even capture \"AR\" from the array such as\nalert(floorStatuses[0]); //hoping to alert \"AR\", but it just alerts \"undefined\"\n\nI could work with that, because then I could run a for loop and compare it with another variable.", "\nI must just have syntax or logic wrong or something. ", "Surely this is possible.", "\n\nTo address this being marked as a duplicate:\nIf I came across that question in my searching for the solution to this question, it would not have solved my problem. ", "The question in the duplicate does not even use the same type of object as mine and thus it would not explain how I am to call what I am trying to call. ", "One glance at it and I'd move along because my object contains arrays and so looks nothing like the duplicate's.", "\n\nA:\n\nYou're so close:\nalert(floorStatuses[initial][0]);\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0.0033783783783783786, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.00026
5
[ { "analysis_explanation": null, "end": 1086, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1070 }, { "analysis_explanation": null, "end": 1143, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1127 } ]
[ "Follow Ajay Devgan\n\nSingham Returns: Watch Ajay, Kareena romance in 'Kuch Toh Hua Hai'\n\nThe Ajay Devgn, Kareena Kapoor starrer ‘Singham Returns’\nwill hit the theaters on 15th August, Independence day. ", "With less than a month\nto go before the release, the first song from the film has been released. ", "The\nmelodious song shot with the lead pair is titled ‘Kuch Toh Hua Hai’. ", "The song\nhas been written by lyricists Abhendra Kumar Updhyay, and Sandeep Nath. ", "Singers\nTulsi Kumar and Ankit Tiwari have lent their voices to the song. ", "The track has\nalso been composed by Ankit Tiwari. ", "The\ncomposer duo Ajay- Atul who composed music for the original has been replaced\nfor the sequel. ", "The makers have brought in several composers to create music\nfor ‘Singham Returns’. ", "They are Ankit Tiwari, Jeet Ganguli and Meet Bros\nAnjjan. ", "While ‘Singham’ was a big hit its music was nothing memorable therefore\nthis time, more attention has been placed on the film’s music.", "\n\nWith this film director Rohit Shetty has reunited again with\none of his most favorite actors, Ajay Devgn. ", "There were some rumors of tension\nbetween the two after Shetty choose Shahrukh Khan for his film ‘Chennai\nExpress’. ", "But it looks like they have maintained their strong bond. ", "Sources\nclose to the production of the film has revealed that Ajay and Rohit had a\ngreat time shooting and regularly played pranks on the unit. ", "While the unit was\nshooting in Ramoji Film City in Hyderabad, Ajay and Rohit decided to scare\neveryone. ", "Since the shooting was a night schedule, the area became quite\ndeserted. ", "They planned in advance and had a spot boy wear white clothes to look\nlike a ghost. ", "Then they spread rumors that the set was haunted and a ghost is\naround. ", "A source from the unit said, “Ajay sir and Rohit sir have been constant\npranksters on sets. ", "Once, they baffled and scared all of us by dressing up a\nspot boy in white clothes and making him behave like a ghost…Also, they always\ntried to scare us by telling stories of the ghosts in our hotel room.”", "\n\nRohit Shetty has done another unique thing with this film.", "\nThe film has patriotic themes and Rohit decided to evoke the sentiments by\nshooting at the historic Gateway of India, making it the first film shot at the\nlocation after the infamous 26/11 terrorist attacks. ", "He took special permission\nfrom the local authorities to shoot at the famous monument. ", "The film has also\nbeen shot in locations of Mumbai and Goa." ]
{ "pile_set_name": "Pile-CC" }
[ 0.029850746268656716, 0, 0, 0.024691358024691357, 0.0136986301369863, 0.02, 0, 0.011904761904761904, 0.034482758620689655, 0, 0.018518518518518517, 0.017241379310344827, 0, 0.006944444444444444, 0.019230769230769232, 0, 0, 0, 0.010869565217391304, 0, 0, 0.004784688995215311, 0, 0.01694915254237288 ]
0.009549
5
[ { "analysis_explanation": null, "end": 27, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7 }, { "analysis_explanation": null, "end": 56, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49 }, { "analysis_explanation": null, "end": 86, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69 }, { "analysis_explanation": null, "end": 102, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88 }, { "analysis_explanation": null, "end": 118, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104 }, { "analysis_explanation": null, "end": 181, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170 }, { "analysis_explanation": null, "end": 199, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 183 }, { "analysis_explanation": null, "end": 223, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 206 }, { "analysis_explanation": null, "end": 432, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 410 }, { "analysis_explanation": null, "end": 450, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 438 }, { "analysis_explanation": null, "end": 471, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 460 }, { "analysis_explanation": null, "end": 488, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 476 }, { "analysis_explanation": null, "end": 573, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 561 }, { "analysis_explanation": null, "end": 602, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 598 }, { "analysis_explanation": null, "end": 778, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 766 }, { "analysis_explanation": null, "end": 792, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 780 }, { "analysis_explanation": null, "end": 829, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 822 }, { "analysis_explanation": null, "end": 986, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 974 }, { "analysis_explanation": null, "end": 1054, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1044 }, { "analysis_explanation": null, "end": 1118, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1112 }, { "analysis_explanation": null, "end": 1139, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1126 }, { "analysis_explanation": null, "end": 1296, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1292 }, { "analysis_explanation": null, "end": 1306, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1301 }, { "analysis_explanation": null, "end": 1421, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1405 }, { "analysis_explanation": null, "end": 1434, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1425 }, { "analysis_explanation": null, "end": 1450, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1445 }, { "analysis_explanation": null, "end": 1508, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1501 }, { "analysis_explanation": null, "end": 2018, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2006 }, { "analysis_explanation": null, "end": 2104, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2099 }, { "analysis_explanation": null, "end": 2410, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2404 }, { "analysis_explanation": null, "end": 2418, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2415 } ]
[ "Q:\n\nValidating the Presence of an ActiveRecord Transaction\n\nIs there a way I can validate from within a method that it's running with an active Transaction block? ", " Basically we have library methods that do a few ActiveRecord save operations that should be run within a Transaction block (so that everything is rolled back if any operation fails), and some of the users consuming our library are not wrapping these methods in transactions as documented.", "\nI was hoping there was some sort of helper method I could write like withinTransactionBlock? ", "that would verify an ActiveRecord transaction and raise an exception if it returns false.", "\nIf this is currently impossible, how might I begin writing such a method that ensures several methods in my library are run in an atomic fashion (aside from packaging every permutation of the methods sequenced into separate functions)?", "\n\nA:\n\nYes, you can check is any transaction opened with \nclass User < ActiveRecord::Base\n def check_transaction\n p self.class.connection.transaction_open?", "\n end\nend\n\nUser.new.check_transaction\n# false\n\nUser.transaction do\n User.new.check_transaction\nend \n# true\n\nAnd even if transaction is opened on another AR subclass\nAccount.transaction do\n User.new.check_transaction \nend \n# true\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.0034602076124567475, 0, 0.011235955056179775, 0, 0, 0.00423728813559322 ]
0.002705
5
[ { "analysis_explanation": null, "end": 955, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 953 }, { "analysis_explanation": null, "end": 1014, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 990 }, { "analysis_explanation": null, "end": 1050, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1039 }, { "analysis_explanation": null, "end": 1082, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1075 }, { "analysis_explanation": null, "end": 1108, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1097 }, { "analysis_explanation": null, "end": 1205, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1195 }, { "analysis_explanation": null, "end": 1231, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1220 } ]
[ "Affiliate Marketing Can Make You Wealthy Or It Can Really Make You Very Disappointed That You Call It Quits And Abandon Internet Marketing.", "\n\nOct 04, 2016\n\nThough not every web marketer earns limitless, it still is a fact that all the website owner and what they charge the advertiser. ", "The simplest way is to just introduce your visitors to the business opportunities, products what affiliate marketing is, how do you go about joining an affiliate program? ", "If you sell a products on the Internet from another companies and you can make profit up to 75 % at the same time, you can make a very good living, if done properly. ", "Affiliate programs are arrangements in which an online merchant web site pays affiliate web http://www.kjtttty.com/01/2016/revealing-finding-significant-factors-of-autopilot-profits sites a commission place yourself onto the two of the top five positions - you're actually just giving yourself a bigger slice of the pie! ", "You might heard about top affiliate marketers who making ton of money with their article to help further you in your affiliate marketing education.", "\n\nThere is no doubt that affiliate marketing programs is these banks and financial institutions to help you and not to mention the regular jobs. ", "We live in the age of information technology, a peoples' ideas which are marketed under the marketers' name. ", "The Affiliate Code - Mastering Affiliate Marketing It is affiliate sends to the merchant's site who purchases something from them. ", "The concept of revenue sharing paying commission for most popular way is by adding an opt in area on your site. ", "For the purpose of this article cookies are files that How to Set Up Your Affiliate Marketing Business Affiliate marketing is one of the best businesses you can do." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0.006230529595015576, 0, 0, 0, 0, 0, 0 ]
0.000566
5
[ { "analysis_explanation": null, "end": 138, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112 }, { "analysis_explanation": null, "end": 152, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140 }, { "analysis_explanation": null, "end": 802, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 713 }, { "analysis_explanation": null, "end": 743, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.2, "start": 736 } ]
[ "<!", "DOCTYPE html>\n<html>\n<head>\n <title>API documentation</title>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n <link type='text/css' rel='stylesheet' href='../../../apidoc/stylesheets/bundled/bootstrap.min.css'/>\n<link type='text/css' rel='stylesheet' href='../../../apidoc/stylesheets/bundled/prettify.css'/>\n<link type='text/css' rel='stylesheet' href='../../../apidoc/stylesheets/bundled/bootstrap-responsive.min.css'/>\n <link type='text/css' rel='stylesheet' href='../../../apidoc/stylesheets/application.css'/>\n <!-- ", "IE6-8 support of HTML5 elements -->\n <!", "--[if lt IE 9]>\n <script src=\"//html5shim.googlecode.com/svn/trunk/html5.js\"></script>\n <![", "endif]-->\n</head>\n<body>\n <div class=\"container-fluid\">\n <div class=\"row-fluid\">\n <div id='container'>\n <ul class='breadcrumb'>\n <li>\n <a href='../../../apidoc/v2.html'>Foreman v2</a>\n <span class='divider'>/</span>\n </li>\n <li>\n <a href='../../../apidoc/v2/common_parameters.html'>\n Common parameters\n \n </a>\n <span class='divider'>/</span>\n </li>\n <li class='active'>destroy</li>\n <li class='pull-right'>\n &nbsp;[ <a href=\"../../../apidoc/v2/common_parameters/destroy.pt_BR.html\">pt_BR</a> | <a href=\"../../../apidoc/v2/common_parameters/destroy.de.html\">de</a> | <a href=\"../../../apidoc/v2/common_parameters/destroy.it.html\">it</a> | <a href=\"../../../apidoc/v2/common_parameters/destroy.sv_SE.html\">sv_SE</a> | <a href=\"../../../apidoc/v2/common_parameters/destroy.zh_CN.html\">zh_CN</a> | <a href=\"../../../apidoc/v2/common_parameters/destroy.en_GB.html\">en_GB</a> | <a href=\"../../../apidoc/v2/common_parameters/destroy.cs_CZ.html\">cs_CZ</a> | <a href=\"../../../apidoc/v2/common_parameters/destroy.fr.html\">fr</a> | <a href=\"../../../apidoc/v2/common_parameters/destroy.ru.html\">ru</a> | <a href=\"../../../apidoc/v2/common_parameters/destroy.ja.html\">ja</a> | <a href=\"../../../apidoc/v2/common_parameters/destroy.es.html\">es</a> | <a href=\"../../../apidoc/v2/common_parameters/destroy.ko.html\">ko</a> | <a href=\"../../../apidoc/v2/common_parameters/destroy.ca.html\">ca</a> | <a href=\"../../../apidoc/v2/common_parameters/destroy.gl.html\">gl</a> | <a href=\"../../../apidoc/v2/common_parameters/destroy.en.html\">en</a> | <a href=\"../../../apidoc/v2/common_parameters/destroy.zh_TW.html\">zh_TW</a> | <a href=\"../../../apidoc/v2/common_parameters/destroy.nl_NL.html\">nl_NL</a> | <a href=\"../../../apidoc/v2/common_parameters/destroy.pl.html\">pl</a> ]\n</li>\n\n\n</ul>\n\n <div class='page-header'>\n <h1>\n DELETE /api/common_parameters/:id\n <br>\n <small>Delete a global parameter</small>\n </h1>\n </div>\n\n<div>\n\n \n\n\n\n <h2>Examples</h2>\n <pre class=\"prettyprint\">DELETE /api/common_parameters/636252244-test\n{\n &quot;common_parameter&quot;: {}\n}\n200\n{\n &quot;id&quot;: 636252244,\n &quot;name&quot;: &quot;test&quot;,\n &quot;value&quot;: &quot;myvalue&quot;,\n &quot;reference_id&quot;: null,\n &quot;created_at&quot;: &quot;2019-02-20T13:35:00.987Z&quot;,\n &quot;updated_at&quot;: &quot;2019-02-20T13:35:00.987Z&quot;,\n &quot;priority&quot;: null,\n &quot;hidden_value&quot;: &quot;*****&quot;\n}</pre>\n\n <h2>Params</h2>\n <table class='table'>\n <thead>\n <tr>\n <th>Param name</th>\n <th>Description</th>\n </tr>\n </thead>\n <tbody>\n <tr style='background-color:rgb(255,255,255);'>\n <td>\n <strong>location_id </strong><br>\n <small>\n optional\n \n </small>\n </td>\n <td>\n \n<p>Scope by locations</p>\n\n <p><strong>Validations:</strong></p>\n <ul>\n <li>\n<p>Must be a Integer</p>\n</li>\n </ul>\n\n </td>\n\n </tr>\n\n \n <tr style='background-color:rgb(255,255,255);'>\n <td>\n <strong>organization_id </strong><br>\n <small>\n optional\n \n </small>\n </td>\n <td>\n \n<p>Scope by organizations</p>\n\n <p><strong>Validations:</strong></p>\n <ul>\n <li>\n<p>Must be a Integer</p>\n</li>\n </ul>\n\n </td>\n\n </tr>\n\n \n <tr style='background-color:rgb(255,255,255);'>\n <td>\n <strong>id </strong><br>\n <small>\n required\n \n </small>\n </td>\n <td>\n \n <p><strong>Validations:</strong></p>\n <ul>\n <li>\n<p>Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.</p>\n</li>\n </ul>\n\n </td>\n\n </tr>\n\n \n\n </tbody>\n </table>\n\n\n\n\n</div>\n\n \n\n \n </div>\n </div>\n <hr>\n <footer></footer>\n </div>\n <script type='text/javascript' src='../../../apidoc/javascripts/bundled/jquery.js'></script>\n<script type='text/javascript' src='../../../apidoc/javascripts/bundled/bootstrap-collapse.js'></script>\n<script type='text/javascript' src='../../../apidoc/javascripts/bundled/prettify.js'></script>\n<script type='text/javascript' src='../../../apidoc/javascripts/apipie.js'></script>\n</body>\n</html>\n" ]
{ "pile_set_name": "Github" }
[ 0, 0.008064516129032258, 0, 0, 0.0027752081406105457 ]
0.002168
5
[ { "analysis_explanation": null, "end": 10, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3 }, { "analysis_explanation": null, "end": 645, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 640 }, { "analysis_explanation": null, "end": 768, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 760 }, { "analysis_explanation": null, "end": 870, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 852 }, { "analysis_explanation": null, "end": 902, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 881 }, { "analysis_explanation": null, "end": 1187, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1157 }, { "analysis_explanation": null, "end": 1211, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1191 }, { "analysis_explanation": null, "end": 1970, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1948 }, { "analysis_explanation": null, "end": 3331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3317 }, { "analysis_explanation": null, "end": 743, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 699 }, { "analysis_explanation": null, "end": 945, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 940 }, { "analysis_explanation": null, "end": 1066, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1053 }, { "analysis_explanation": null, "end": 1280, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1270 }, { "analysis_explanation": null, "end": 1286, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1281 }, { "analysis_explanation": null, "end": 1361, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1348 }, { "analysis_explanation": null, "end": 1433, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1420 }, { "analysis_explanation": null, "end": 1502, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1492 }, { "analysis_explanation": null, "end": 1508, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1503 }, { "analysis_explanation": null, "end": 1586, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1581 }, { "analysis_explanation": null, "end": 1664, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1659 }, { "analysis_explanation": null, "end": 1742, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1737 }, { "analysis_explanation": null, "end": 1817, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1804 }, { "analysis_explanation": null, "end": 1889, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1876 }, { "analysis_explanation": null, "end": 1961, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1948 }, { "analysis_explanation": null, "end": 2033, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2020 }, { "analysis_explanation": null, "end": 2105, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2092 }, { "analysis_explanation": null, "end": 2177, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2164 }, { "analysis_explanation": null, "end": 2249, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2236 }, { "analysis_explanation": null, "end": 2321, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2308 }, { "analysis_explanation": null, "end": 2396, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2391 }, { "analysis_explanation": null, "end": 2468, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2458 }, { "analysis_explanation": null, "end": 2474, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2469 }, { "analysis_explanation": null, "end": 2549, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2536 }, { "analysis_explanation": null, "end": 2833, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 2824 }, { "analysis_explanation": null, "end": 2833, "entity_type": "US_SSN", "recognition_metadata": { "recognizer_identifier": "UsSsnRecognizer_140094861024368", "recognizer_name": "UsSsnRecognizer" }, "score": 0.05, "start": 2824 }, { "analysis_explanation": null, "end": 2833, "entity_type": "US_PASSPORT", "recognition_metadata": { "recognizer_identifier": "UsPassportRecognizer_140094861021536", "recognizer_name": "UsPassportRecognizer" }, "score": 0.05, "start": 2824 }, { "analysis_explanation": null, "end": 2911, "entity_type": "US_SSN", "recognition_metadata": { "recognizer_identifier": "UsSsnRecognizer_140094861024368", "recognizer_name": "UsSsnRecognizer" }, "score": 0.05, "start": 2902 }, { "analysis_explanation": null, "end": 2911, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 2902 }, { "analysis_explanation": null, "end": 2911, "entity_type": "US_PASSPORT", "recognition_metadata": { "recognizer_identifier": "UsPassportRecognizer_140094861021536", "recognizer_name": "UsPassportRecognizer" }, "score": 0.05, "start": 2902 }, { "analysis_explanation": null, "end": 2833, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 2824 }, { "analysis_explanation": null, "end": 2833, "entity_type": "AU_TFN", "recognition_metadata": { "recognizer_identifier": "AuTfnRecognizer_140094861022688", "recognizer_name": "AuTfnRecognizer" }, "score": 0.01, "start": 2824 }, { "analysis_explanation": null, "end": 2833, "entity_type": "AU_ACN", "recognition_metadata": { "recognizer_identifier": "AuAcnRecognizer_140094861021344", "recognizer_name": "AuAcnRecognizer" }, "score": 0.01, "start": 2824 }, { "analysis_explanation": null, "end": 2911, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 2902 }, { "analysis_explanation": null, "end": 2911, "entity_type": "AU_ACN", "recognition_metadata": { "recognizer_identifier": "AuAcnRecognizer_140094861021344", "recognizer_name": "AuAcnRecognizer" }, "score": 0.01, "start": 2902 }, { "analysis_explanation": null, "end": 2911, "entity_type": "AU_TFN", "recognition_metadata": { "recognizer_identifier": "AuTfnRecognizer_140094861022688", "recognizer_name": "AuTfnRecognizer" }, "score": 0.01, "start": 2902 } ]
[ "Cassette carriers are often used to transport finished semiconductor wafers prior to dicing. ", "However, these carriers suffer from certain drawbacks. ", "Current cassette carriers maintain excessive space between wafers, taking up too much volume in transport and resulting in unnecessary expense. ", "Current carriers also expose wafers to excessive risk of shock due to rough handling, and are relatively expensive.", "\nTherefore, it would be highly desirable to design a more compact cassette carrier that requires less volume in transport. ", "It would also be desirable to design this carrier to better cushion wafers from shock during transport, and to be manufactured more cheaply." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0, 0 ]
0
5
[]
[ "---\nabstract: 'Starting from an arbitrary endomorphism $\\delta$ of a unital $C^*$-algebra ${\\mathcal A}$ we construct a bigger algebra ${\\mathcal B}$ and extend $\\delta$ onto ${\\mathcal B}$ in such a way that $\\delta:{\\mathcal B}\\to {\\mathcal B}$ has a unital kernel and a hereditary range, i.e. there exists a unique non-degenerate transfer operator for $({\\mathcal B},\\delta)$. The pair $({\\mathcal B},\\delta)$ is universal with respect to a suitable notion of covariant representation.'", "\n---\n\n\\[1994/12/01\\]\n\n[**Extensions of $C^*$-dynamical systems\\\nto systems with complete transfer operators**]{}\n\nB.K. Kwaśniewski\n\nInstitute of Mathematics, University of Bialystok,\\\nul. ", "Akademicka 2, PL-15-267 Bialystok, Poland\\\ne-mail: bartoszk@math.uwb.edu.pl\\\nhttp://math.uwb.edu.pl/$\\sim$zaf/kwasniewski\\\n\n46L55, 46L30, 16W20\n\nIntroduction {#introduction .unnumbered}\n============\n\nThe crossed-product of a $C^*$-algebra ${\\mathcal A}$ by an automorphism $\\delta:{\\mathcal A}\\to {\\mathcal A}$ is defined as a universal $C^*$-algebra generated by a copy of ${\\mathcal A}$ and a unitary element $U$ satisfying the relations $$\\delta(a)= Ua U^*,\\qquad \\delta^{-1}(a)=U^*aU, \\qquad a\\in {\\mathcal A}.$$ Algebras arising in this way (or their versions adapted to actions of groups of automorphisms) are very well understood and became one of the standard constructions in $C^*$-theory, see for instance [@Kadison], [@Pedersen]. ", "On the other hand, the natural desire to adapt this kind of constructions to endomorphisms (or semigroups of endomorphisms) encounters serious obstacles from the very beginning. ", "Roughly speaking, it is caused by the *irreverisibility* of the system $({\\mathcal A},\\delta)$ (the lack of $\\delta^{-1}$) in case $\\delta$ is an endomorphism, and the main question is what relations should the element $U$ satisfy.\\\nThe difficulty of the matter manifests itself in a variety of approaches, see, for example, [@CK], [@Paschke], [@Stacey], [@Murphy], [@exel1], [@exel2], [@kwa], [@Ant-Bakht-Leb] which do however have a certain nontrivial intersection. ", "They mostly agree, and simultaneously boast their greatest successes, in the case when dynamics is implemented by monomorphisms with a hereditary range. ", "In view of the recent article [@Bakht-Leb], see also [@Ant-Bakht-Leb], [@kwa3], this coincidence is completely understood. ", "It is shown in [@Bakht-Leb] that in the case of monomorphism with hereditary range there exists a unique non-degenerate transfer operator $\\delta_*$ for $({\\mathcal A},\\delta)$, called by authors of [@Bakht-Leb] a *complete transfer operator*, and the theory goes smooth with $\\delta_*$ as it takes over the role classically played by $\\delta^{-1}$.\\\nThe goal of the present paper is an interesting fact that starting from an arbitrary endomorphism $\\delta$ of an arbitrary unital $C^*$-algebra ${\\mathcal A}$ there is a universal (from a point of view to be explained later) procedure of extending the $C^*$-dynamical system $({\\mathcal A},\\delta)$ to a bigger system $({\\mathcal B},\\delta)$ possessing a complete transfer operator. ", "Philosophically, it is a procedure of passing from an irreversible dynamical system to a bigger reversible one. ", "In commutative case it takes on a literal meaning as then the $C^*$-dynamical systems $({\\mathcal A},\\delta)$ and $({\\mathcal B},\\delta)$ correspond to topological dynamical systems $(X,{\\alpha})$ and $({\\widetilde X},{\\widetilde \\alpha})$ respectively. ", "Chronologically this topological approach was the first one that led to the description of $({\\mathcal B},\\delta)$, see [@maxid], [@kwa]. ", "The relationship between $(X,{\\alpha})$ and $({\\widetilde X},{\\widetilde \\alpha})$ is of particular interest. ", "For instance, the space ${\\widetilde X}$ may be viewed as a generalization of the topological inverse limit space, see [@kwa], [@kwa2], and Section \\[podrozdzial o rozszerzeniach topologicznych\\] of the present paper. ", "Thus as a rule ${\\widetilde X}$ is topologically very complicated - contains indecomposable continua [@Nadler], has a structure of hyperbolic attractors [@Williams1], [@Williams2], or of a space arising from substitution tilings [@Anderson; @Putnam].", "\n\nThe paper is organized as follows.\\\nIn the first section we introduce two notions of a covariant representation of a $C^*$-dynamical system $({\\mathcal A},\\delta)$. The first one exists in a literature in a similar or identical form, see, for example, [@Leb-Odz], [@exel2], [@Murphy], [@Stacey]. ", "The second one which we shall call a *strict covariant representation* is more restrictive, however, it seems to reconcile most of the previous versions of this kind of notion. ", "After a closer look this former definition becomes completely natural and it is essential for our purposes.\\\nSecond section serves as a collection of definitions and facts concerning transfer operators for $C^*$-dynamical systems. ", "It is based on [@kwa3] and [@Bakht-Leb], and the only new result there is Proposition \\[transfer covar rep\\] which states that for $C^*$-dynamical systems possessing a complete transfer operator strict covariant representations defined in this paper agrees with covariant representations defined in [@Bakht-Leb].\\\nThe third section is the core of the article. ", "It contains the main result the first technical step of which is an extension of the endomorphism $\\delta:{\\mathcal A}\\to {\\mathcal A}$ to a one with unital kernel. ", "Next for systems $({\\mathcal A},\\delta)$ where $\\ker\\delta$ is unital we define algebra ${\\mathcal B}$ as a direct limit of a certain direct limit of $C^*$-algebras $${\\mathcal B}_0\\stackrel{\\delta_0}{\\longrightarrow} {\\mathcal B}_1\n\\stackrel{\\delta_1}{\\longrightarrow}{\\mathcal B}_2 \\stackrel{\\delta_2}{\\longrightarrow}...\\, .$$ The form of this sequence will become relatively clear after analyzing the case of the system acting on a Hilbert space, cf. ", "Proposition \\[kowariantna podpowiedz do algebry wpsolczynnikow\\]. ", "It is worth to mention here that the first attempt to such analysis was made in [@Leb-Odz]. ", "Algebra ${\\mathcal A}$ embeds into ${\\mathcal B}$ and extension of $\\delta$ onto ${\\mathcal B}$ is induced on ${\\mathcal B}$ by an inverse limit. ", "Distinctive property of the system $({\\mathcal B},\\delta)$ is that it possess a complete transfer operator $\\delta_*$ and in fact it might be thought as a universal extension of $({\\mathcal A},\\delta)$ with respect to this property and strict covariant representations.\\\nThe closing section is devoted to commutative (or one would say topological) systems. ", "In particular, we discuss the relationship between inverse limit spaces and the spectrum of algebra ${\\mathcal B}$, we present a slight generalization of a main result from [@maxid] and set it against the general approach from Section \\[extensions section\\].", "\n\nCovariant representations {#reprezentacje kowariantne}\n=========================\n\nThroughout this paper we let ${\\mathcal A}$ be a $C^*$-algebra with an identity $1$ and $\\delta:{\\mathcal A}\\to {\\mathcal A}$ be an endomorphism of this algebra (all the morphisms appearing in the text are assumed to be $^*$-preserving). ", "We shall refer to the pair $({\\mathcal A},\\delta)$ as a *$C^*$-dynamical system*.\\\nIn order to introduce and clarify the role of the relations we shall use in the present article, let us start with a non-trivial Theorem that gathers information on the subject developed by different authors. ", "Formally it should be placed at the end of Section \\[extensions section\\] because a part of it is based on Theorem \\[istnienie reprezentacji kowariantnej thm\\] to be proved there. ", "However, as it reveals the underlying associations the author decided to place it here.\\\nBy a *covariant triple* for a $C^*$-algebra ${\\mathcal A}$ we will mean any triple $(\\pi,U,H)$ consisting of a non-degenerate faithful representation $\\pi:{\\mathcal A}\\to {\\mathcal B}(H)$ on a Hilbert space $H$ and a partial isometry $U\\in {\\mathcal B}(H)$ .", "\n\n\\[twierdzenie ze wstepu\\] Let $\\delta,\\, \\delta_*:{\\mathcal A}\\to {\\mathcal A}$ be two mappings on a unital $C^*$-algebra ${\\mathcal A}$. Consider the following conditions that a covariant triple $(\\pi,U,H)$ may satisfy\\\n$\\emph{\\textbf{(CR1)}}\\quad U\\pi(a)=\\pi(\\delta(a))U, \\quad a\\in {\\mathcal A}$,\\\n$\\emph{\\textbf{(CR2)}}\\quad\\pi(\\delta(a))= U\\pi(a)U^*, \\quad a\\in {\\mathcal A}$,\\\n$\\emph{\\textbf{(CR3)}}\\quad \\pi(\\delta_*(a))= U^*\\pi(a)U, \\quad a\\in {\\mathcal A}$.\\\nThen\n\n- $\\delta:{\\mathcal A}\\to {\\mathcal A}$ is an endomorphism of ${\\mathcal A}$ if and only if there exists a covariant triple $(\\pi,U,H)$ satisfying $(CR1)$ and $(CR2)$,\n\n- $\\delta_*:{\\mathcal A}\\to {\\mathcal A}$ is a non-degenerate transfer operator for an endomorphism $\\delta$ (see Definition \\[transfery defn\\]) if and only if there exists a covariant triple $(\\pi,U,H)$ satisfying $(CR1)$ and $(CR3)$,\n\n- $\\delta_*:{\\mathcal A}\\to {\\mathcal A}$ is a complete transfer operator for an endomorphism $\\delta$ (see Definition \\[trnasfery completne defn\\]) if and only if there exists a covariant triple $(\\pi,U,H)$ satisfying $(CR1)$, $(CR2)$ and $(CR3)$.\n\nItem a) is a corollary to the main result of the present paper, see Theorem \\[istnienie reprezentacji kowariantnej thm\\]. ", "Item b) follows from [@exel2 Theorem 3.4] and item c) is the main result of [@Bakht-Leb].", "\n\nA definition of a covariant representation for $({\\mathcal A},\\delta)$ is naturally determined by Theorem \\[twierdzenie ze wstepu\\].", "\n\n\\[kowariant rep defn\\] Let $({\\mathcal A},\\delta)$ be a $C^*$-dynamical system. ", "A covariant triple $(\\pi,U,H)$ for ${\\mathcal A}$ satisfying $(CR1)$ and $(CR2)$ will be called a *covariant representation* of $({\\mathcal A},\\delta)$.\n\nAnother useful condition which in the presence of $(CR2)$ may be used interchangeably with $(CR1)$ is\\\n$\\textbf{(CR1')}\\quad U^*U\\in \\pi({\\mathcal A})'$,\\\nwhere $\\pi({\\mathcal A})'$ is a commutant of $\\pi({\\mathcal A})$ in ${\\mathcal B}(H)$, see [@Leb-Odz Proposition 2.2].", "\n\nFor any mapping $\\delta: {\\mathcal A}\\to {\\mathcal A}$ and any covariant triple $(\\pi,U,H)$ satisfying $(CR2)$ conditions $(CR1)$ and $(CR1^\\prime)$ are equivalent.", "\n\nApart from being relatively natural Definition \\[kowariant rep defn\\] has a certain disadvantage. ", "Namely, a projection $U^*U$ might not reflect the structure of the kernel of endomorphism $\\delta$. For instance, one would like to have the following implications: if $\\delta$ is a monomorphism (an automorphism) then $U$ is an isometry (a unitary operator respectively), however condition $(CR1)$ (equivalently $(CR1')$) does not ensure this.", "\n\n\\[ker przyklad\\] Let ${\\mathcal A}\\subset {\\mathcal B}(H)$ and $\\delta(\\cdot)=U(\\cdot)U^*$ where $U\\in {\\mathcal B}(H)$ is a partial isometry such that $U^*U\\in Z({\\mathcal A})$. Then the algebra ${\\mathcal A}$ is a direct sum $${\\mathcal A}=(1-U^*U){\\mathcal A}\\oplus U^*U{\\mathcal A}$$ where $(1-U^*U){\\mathcal A}=\\ker \\delta$ is the kernel of $\\delta$. Let us define a representation $\\pi:{\\mathcal A}\\to {\\mathcal B}(\\widetilde{H})$ where $\\widetilde{H}= \\bigoplus_{n=0}^\\infty H$ and a partial isometry ${\\widetilde U}\\in {\\mathcal B}(\\widetilde{H})$ by the formulae $$(\\pi(a) h)_n= a h_n, \\quad a\\in {\\mathcal A}, \\qquad ({\\widetilde U}h)_n =U h_{n+1}, \\quad n \\in {\\mathbb N}.$$ Then $(\\pi, {\\widetilde U},\\widetilde{H})$ is a covariant representation of $({\\mathcal A},\\delta)$. However, the operator ${\\widetilde U}$ is never an isometry because $$({\\widetilde U}^* {\\widetilde U}h)_n=\\begin{cases}\n0 &,\\,\\, n=0\\\\\nU^*Uh_n &,\\,\\, n>0\n\\end{cases},$$ and the algebra $\n (1-{\\widetilde U}^*{\\widetilde U}) \\pi({\\mathcal A})\\cong {\\mathcal A}$ is not related to $ (1-U^*U){\\mathcal A}=\\ker\\delta$ at all. ", "In particular, we have $${\\widetilde U}^*{\\widetilde U}< \\pi(U^*U).$$\n\nIt turns out that the obstacle from Example \\[ker przyklad\\] illustrate the general rule.", "\n\n\\[takie sobie stw\\] Let $({\\mathcal A},\\delta)$ be a $C^*$-dynamical system and $(\\pi,U,H)$ a covariant triple satisfying $(CR2)$. Let $P\\in {\\mathcal B}(H)$ be an orthogonal projection given by the limit in the strong operator topology $$\\label{P definition}\nP=1-\\textrm{s}\\,\\lim_{\\lambda_\\in \\Lambda} \\pi(\\mu_\\lambda),$$ where $\\{\\mu_\\lambda\\}_{\\lambda\\in \\Lambda}$ is an approximate unit for $\\ker \\delta$. Then $$U^*U \\leq P \\qquad \\textrm{ and }\\qquad P \\in \\pi({\\mathcal A})'.$$ Moreover, if $U^*U\\in \\pi({\\mathcal A})$, then the kernel of $\\delta:{\\mathcal A}\\to {\\mathcal A}$ is unital and $U^*U=P$ is the complement of the unit in $\\pi(\\ker\\delta)$.\n\nFirstly let us pass to the algebra ${\\mathcal A}_1=C^*(\\pi({\\mathcal A}), P)$ generated by $\\pi({\\mathcal A})$ and the projection $P$. Since $ker\\delta$ is an ideal in ${\\mathcal A}$, $P\\in \\pi({\\mathcal A})'$ and thus ${\\mathcal A}_1 = P \\pi({\\mathcal A}) \\oplus (1-P)\\pi({\\mathcal A})$. Moreover, the mapping ${\\widetilde \\delta}(\\cdot)=U(\\cdot)U^*$ is an endomorphism of ${\\mathcal A}_1$ (extending the initial endomorphism $\\pi\\delta:\\pi({\\mathcal A})\\to \\pi({\\mathcal A})$). ", "Indeed, one readily checks that for $a,b \\in {\\mathcal A}$ we have $${\\widetilde \\delta}(P \\pi(a) + (1-P)\\pi(b))=U (P \\pi(a) + (1-P)\\pi(b) )U^* = \\pi(\\delta(a)).$$ Let $a\\in {\\mathcal A}_1$. We assert that the following statements are equivalent\n\n- $\n Pa=0$\n\n- $U^*Ua U^*U=0$\n\n- $U^*Ua =0$\n\n- $a U^*U=0$\n\nEquivalence $i)\\Leftrightarrow ii)$ follows from the fact that $P\\pi({\\mathcal A})\\cong \\pi(\\delta({\\mathcal A}))$ and $\\pi(\\delta({\\mathcal A}))\\cong U^*U\\pi( {\\mathcal A}) U^*U$ where the isomorphisms are given by the correspondences $P \\pi(a) \\longleftrightarrow \\pi(\\delta(a))$ and $\\pi(\\delta(a)) \\longleftrightarrow U^*U\\pi(a) U^*U$, respectively. ", "Implications $iii)\\Rightarrow ii)$, $iv)\\Rightarrow ii)$ are obvious. ", "To show $ii)\\Rightarrow iii)$, $ii)\\Rightarrow iv)$ we note that $\\{b\\in {\\mathcal A}_1: U^*U b U^*U= 0\\} = (1-P)\\pi({\\mathcal A})$ is an ideal in ${\\mathcal A}_1$ and thus if $U^*Ua U^*U= 0$, then $$\\|U^*Ua\\|^2 =\\|U^*Ua (U^*Ua)^*\\|+\\|U^*U (a a^*) U^*U\\|=0,$$ $$\\|aU^*U\\|^2 =\\|(aU^*U)^*aU^*U \\|+\\|U^*U (a^* a) U^*U\\|=0.$$ Hence our assertion is true. ", "In particular, $U^*U(1-P)=0$ and $U^*U \\leq P$ holds.\\\nMoreover, if we assume that $U^*U\\in \\pi({\\mathcal A})$ then $1-U^*U$ belongs to the kernel of $\\delta: {\\mathcal A}_1\\to {\\mathcal A}_1$ and, in view of the assertion we proved above, it is a unit in this kernel. ", "Hence $1-U^*U=1-P$ and thus $U^*U=P\\in\\pi({\\mathcal A})$ and ${\\mathcal A}_1=\\pi({\\mathcal A})$.\n\nThe extreme case in the above proposition, that is when $U^*U=P$, plays an essential role in the present paper. ", "Hence we introduce one more condition:\\\n$\\textbf{(CR1'')}\\quad U^*U=1-s\\lim_{\\lambda_\\in \\Lambda} \\pi(\\mu_\\lambda)$\\\nwhere $\\{\\mu_\\lambda\\}_{\\lambda\\in \\Lambda}$ is an approximate unit in $\\ker \\delta$.\\\nIn view of Example \\[ker przyklad\\] the conditions $(CR1^\\prime)$ and $(CR1^{\\prime\\prime})$ are not equivalent but Proposition \\[takie sobie stw\\] shows that, in the presence of $(CR2)$, $(CR1^{\\prime\\prime})$ implies $(CR1^\\prime)$ .", "\n\n\\[kowariant rep strict\\] A covariant triple $(\\pi,U,H)$ for ${\\mathcal A}$ satisfying $(CR1'')$ and $(CR2)$ will be called a *strict covariant representation* of a $C^*$-dynamical system $({\\mathcal A},\\delta)$.\n\nEvery strict covariant representation is a covariant representation and one of the corollaries to the main result of the present paper is that any $C^*$-dynamical system possess a strict covariant representation. ", "We have the following immediate corollaries to Proposition \\[takie sobie stw\\].", "\n\n\\[unital kowarians\\] Let $(\\pi,U,H)$ be a covariant representation of $({\\mathcal A},\\delta)$ and let $\\ker\\delta$ be unital. ", "The following conditions are equivalent\n\n- $(\\pi,U,H)$ is a strict covariant representation,\n\n- $U^*U\\in \\pi({\\mathcal A})$,\n\n- $U^*U\\in \\pi(Z({\\mathcal A}))$,\n\n- $1-U^*U$ is the unit in $\\pi(\\ker\\delta)$.\n\nFor any strict covariant representation $(\\pi,U,H)$ of a $C^*$-dynamical system $({\\mathcal A},\\delta)$ we have\n\n- $\\delta$ is a monomorphism $\\Longleftrightarrow$ $U$ is an isometry,\n\n- $\\delta$ is an automorphism $\\Longrightarrow$ $U$ is unitary.", "\n\nWe finish this subsection showing that every covariantly represented system $({\\mathcal A},\\delta)$ may be extended to a system strictly covariantly represented. ", "What is important is that during this process of extension the only thing that may undergo an enlargement is the kernel of $\\delta$. First we formulate a straightforward but also very useful proposition.", "\n\n\\[proposition tatianiak\\] For every covariant representation $(\\pi,U,H)$ of $({\\mathcal A},\\delta)$ the mapping $$U^*U\\pi(a) \\longmapsto \\delta(a)$$ establishes an isomorphism $U^*U \\pi({\\mathcal A})\\cong \\delta({\\mathcal A})$. In particular the set $$\\{a\\in {\\mathcal A}: (1-U^*U) \\pi(a)=\\pi(a)\\}$$ coincide with the kernel of $\\delta$.\n\nThe mentioned isomorphism is given by $\\pi^{-1}(U(\\cdot )U^*)$ and its inverse is implemented by $U^*(\\pi(\\cdot))U$. Thus the second part of statement holds because we have $$\\delta(a)=0 \\Longleftrightarrow U^*U\\pi(a)=0 \\Longleftrightarrow (1-U^*U)\\pi(a)=\\pi(a).$$\n\n\\[kernel unitization\\] Let $(\\pi,U,H)$ be a covariant representation of $({\\mathcal A},\\delta)$ and let $P$ be given by . ", "Let us put ${\\mathcal A}_1=C^*(\\pi({\\mathcal A}), P)$ i ${\\mathcal A}_2=C^*(\\pi({\\mathcal A}), U^*U)$. Then $$U {\\mathcal A}_iU^* \\subset {\\mathcal A}_i, \\qquad U^*U\\in {\\mathcal A}_i', \\qquad i=1,2$$ and the $C^*$-dynamical systems $({\\mathcal A}_1,{\\widetilde \\delta})$, $({\\mathcal A}_2,{\\widetilde \\delta})$, where ${\\widetilde \\delta}(\\cdot)=U(\\cdot)U^*$, are conjugate by a homomorphism $T=T_1\\oplus T_2$ which action is given by the diagram $$\\begin{CD}\n{\\mathcal A}_2\\,\\,= \\,\\,& U^*U\\pi({\\mathcal A}) &\\,\\, \\oplus\\,\\, &(1-U^*U)\\pi({\\mathcal A}) \\\\\n & @V{T_1}VV @VV{T_2}V\\\\\n{\\mathcal A}_1\\,\\,= \\,\\,& P\\pi({\\mathcal A}) & \\oplus &(1-P)\\pi({\\mathcal A})\n\\end{CD}$$ $ T_1$ is an isomorphism and $T_2$ is an epimorphism. ", "More precisely we have $$T_1(U^*U\\pi(a))= P\\pi(a),\\qquad T_2((1-U^*U)\\pi(a))=(1-P)\\pi(a), \\qquad a\\in {\\mathcal A}.$$\n\nIn view of Proposition \\[takie sobie stw\\] we have $1-U^*U \\geq 1-P $ and thereby the formula $$T_2(\\pi(a) (1-U^*U))=\\pi(a) (1-P), \\qquad a \\in {\\mathcal A},$$ defines an epimorphism $T_2:\\pi({\\mathcal A})(1-U^*U) \\to \\pi({\\mathcal A})(1- P)$.\\\nIf $a\\in {\\mathcal A}$ is such that $U^*Ua=0$ then by Proposition \\[proposition tatianiak\\], $a$ is in the kernel of $\\delta$ and hence $Pa=0$. Thus the mapping $T_1$ is well defined and since $U^*U \\leq P $ it is injective. ", "Obviously $T_1$ is an isomorphism. ", "The equality ${\\widetilde \\delta}\\circ T = T \\circ {\\widetilde \\delta}$ is checked readily. ", "Namely, we have $${\\widetilde \\delta}\\Big( T \\big(U^*U \\pi(a)+ (1-U^*U)\\pi(b)\\big)\\Big)= T \\Big( {\\widetilde \\delta}\\big(U^*U \\pi(a)+ (1-U^*U)\\pi(b)\\big)\\Big) =\\pi(\\delta(a)).$$\n\n\\[taka uwaga ze uwaga\\] The foregoing propositions give us a criterion for the existence of covariant representations. ", "Namely, if we have a faithful nondegenerate representation $\\pi:{\\mathcal A}\\to H$ and $P$ is given by , then a necessary condition for existence of $U\\in L(H)$ such that $(\\pi,U,H)$ is a covariant representation of $({\\mathcal A},\\delta)$, is that an ideal $$I= \\{a\\in {\\mathcal A}: (1-P)\\pi(a)=\\pi(a)\\}$$ coincides with the kernel of $\\delta:{\\mathcal A}\\to{\\mathcal A}$. Moreover, if this is the case then it is readily checked that an ideal $$I^\\bot=\\{a\\in {\\mathcal A}: P\\pi(a)=\\pi(a)\\}$$ is the biggest among all the ideals in ${\\mathcal A}$ having a zero intersection with $I$.\n\nTransfer operators. {#", "transfer}\n===================\n\nIn this section we list certain definitions and facts concerning transfer operators that are necessary for our future purposes. ", "An inquiring reader is referred to [@kwa3], [@Bakht-Leb], [@exel2]. ", "Everything henceforth up to Proposition \\[transfer covar rep\\] is borrowed from [@kwa3] and [@Bakht-Leb].", "\n\n\\[transfery defn\\] A linear map $\\delta_*\\!:\\cal A\\to \\cal A$ is called a [*transfer operator*]{} for the pair $(\\cal A,\\delta)$ if it is continuous and positive an such that $$\\delta_*(\\delta(a)b) =a\\delta_*(b),\\qquad a,b\\in\\cal A.\n\\label{b,,2}$$ If additionally one (and hence all) of the following equivalent conditions are satisfied\n\n- the composition $E = \\delta \\circ \\delta_*$ is a conditional expectation onto $\\delta (\\cal A)$,\n\n- $\\delta\\circ\\delta_*\\circ\\delta =\\delta$,\n\n- $\\delta (\\delta_*(1)) = \\delta (1)$,\n\nthen $\\delta_*$ is called a *non-degenerate transfer operator*.", "\n\nThe following proposition presents conditions for existence and clarifies the structure of non-degenerate transfer operators.", "\n\n\\[conditional expectations\\] There exists a non-degenerate transfer operator for $({\\mathcal A},\\delta)$ if and only if $ker\\delta$ is unital and there exists a conditional expectation $E:\n\\delta(1){\\mathcal A}\\delta(1) \\to \\delta({\\mathcal A})$.\n\nMoreover, then $1-\\delta_*(1)$ is the unit in $ker\\delta$ and we have $$E(a)=\\delta(\\delta_*(a)),\\qquad\n\\delta_*(a)=\\delta^{-1}(E(\\delta(1)a\\delta(1))),\\qquad a\\in {\\mathcal A},$$ where $\\delta^{-1}$ is the inverse to the isomorphism $\\delta:\\delta_*(1){\\mathcal A}\\to\n\\delta({\\mathcal A})$.\n\nIt follows that if $\\delta({\\mathcal A})=\\delta(1){\\mathcal A}\\delta(1)$, then there is a unique non-degenerate transfer operator for $({\\mathcal A}, \\delta)$ (since there is a unique conditional expectation $E=id$). ", "We recall [@exel2 Proposition 4.1] that the equality $\\delta({\\mathcal A})=\\delta(1){\\mathcal A}\\delta(1)$ holds if and only if $\\delta({\\mathcal A})$ is a hereditary subalgebra of ${\\mathcal A}$.\n\n\\[trnasfery completne defn\\] We shall say $({\\mathcal A},\\delta)$ is a *complete $C^*$-dynamical system* if $\\delta:{\\mathcal A}\\to {\\mathcal A}$ has a unital kernel and a hereditary range. ", "Then, in view of Proposition \\[conditional expectations\\], there is a unique non-degenerate transfer operator for $({\\mathcal A},\\delta)$ given by $$\\delta_*(a)=\\delta^{-1}(\\delta(1)a\\delta(1)),\\qquad a\\in {\\mathcal A},$$ where $\\delta^{-1}$ is the inverse to the isomorphism $\\delta:(1-q){\\mathcal A}\\to\n\\delta({\\mathcal A})$, $q$ is the unit in $\\ker\\delta$. We shall say that $\\delta_*$ is a *complete transfer operator* for $({\\mathcal A},\\delta)$.\n\nThe next result presents the criteria for the system to be complete.", "\n\n\\[complete\\] Let $({\\mathcal A},\\delta)$ be a $C^*$-dynamical system. ", "The following are equivalent:\n\n- the system $({\\mathcal A},\\delta)$ is complete,\n\n- there exists a transfer operator $\\delta_*$ for $({\\mathcal A},\\delta)$ such that $$\\label{b,,3}\n \\delta\\delta_*(a) =\\delta(1)a\\delta(1),\\qquad a\\in\\cal A.$$\n\n- there exists a non-degenerate transfer operator $\\delta_*$ for $({\\mathcal A}, \\delta )$ and $\\delta ({\\mathcal A})$ is a hereditary subalgebra of ${\\mathcal A}$,\n\n- there exists a central orthogonal projection $p\\in {\\mathcal A}$ such that the mapping $\\delta : p {\\mathcal A}\\to\n \\delta ({\\mathcal A})$ is a $^*$-isomorphism, and $\\delta ({\\mathcal A}) = \\delta (1){\\mathcal A}\\delta (1)$,\n\nTransfer operators in $ii)$, $iii)$ are equal (to the complete transfer operator for $({\\mathcal A},\\delta)$) and $ p=\\delta_*(1)=1-q$ where $p$ is a projection from $iv)$ and $q$ is a unit for $\\ker \\delta$.\n\nThe article [@Bakht-Leb] provide us with a number of criteria implying the uniqueness of a non-degenerate transfer operator. ", "In particular, it may be expressed in terms of covariant representations. ", "More precisely, if $\\delta_*$ is a non-degenerate transfer operator for $({\\mathcal A},\\delta)$ and $(\\pi,U,H)$ is a strict covariant representation then by Propositions we have $$\\pi(\\delta_*(1))= U^*U,\\qquad a\\in {\\mathcal A},$$ and one would wonder whether $(CR3)$ is true. ", "It follows from [@Bakht-Leb] that $(CR3)$ holds only if $\\delta_*$ is a complete transfer operator for $({\\mathcal A},\\delta)$.\n\n\\[complete transfer2\\] The system $({\\mathcal A}, \\delta )$ is complete with a complete transfer operator $\\delta_*$ if and only if there exist a covariant triple $(\\pi,U,H)$ satisfying conditions $(CR1)$, $(CR2)$ and $(CR3)$.\n\nThe next result shows that for complete systems the class of covariant triples from Theorem \\[complete transfer2\\] coincide with the class of strict covariant representations.", "\n\n\\[transfer covar rep\\] Let $({\\mathcal A},\\delta)$ be a complete $C^*$-dynamical system with a complete transfer operator $\\delta_*$. Then a covariant representation $(\\pi,U,H)$ of $({\\mathcal A},\\delta)$ is strict if and only if it satisfies $(CR3)$.\n\nIf $(\\pi,U,H)$ is satisfies $(CR3)$ then $ 1-U^*U=1-\\pi(\\delta_*(1))$ is the identity in $\\pi(\\ker\\delta)$ and thus the covariant representation $(\\pi,U,H)$ is strict.\\\nOn the other hand, if we assume that $(\\pi,U,H)$ is strict, then $U(\\cdot)U^*:U^*U\\pi({\\mathcal A}) \\to \\pi(\\delta({\\mathcal A}))$ is an isomorphism where the inverse one is given by $U^*(\\cdot)U$ because $$U^*\\pi(\\delta(a))U =U^*U\\pi(a) U^*U=U^*U\\pi(a), \\qquad a\\in {\\mathcal A}.$$ Furthermore, $U^*U=\\pi(\\delta_*(1))$ and $\\delta({\\mathcal A})=\\delta(1){\\mathcal A}\\delta(1)$. Thus, by the definition of a complete transfer operator we get $$U^*\\pi(a)U=U^*(UU^*\\pi(a) UU^*)U=U^*\\pi( \\delta(1)a\\delta(1))U$$ $$=U^*U\\pi( \\delta^{-1}(\\delta(1)a\\delta(1)))=\\pi(\\delta_*(1))\\pi(\\delta_*(a))=\\pi(\\delta_*(a)),\\qquad a\\in {\\mathcal A},$$ what finishes the proof.", "\n\nAny complete $C^*$-dynamical system possess a strict covariant representation.", "\n\nExtensions of $C^*$-dynamical systems up to systems with complete transfer operators {#extensions section}\n====================================================================================\n\nBefore attempting the abstract construction it is reasonable and instructive to study the spatial case. ", "We start with consideration of this sort what will result in establishing a basic structure of the extended algebra in Proposition \\[kowariantna podpowiedz do algebry wpsolczynnikow\\].", "\n\nLet us consider covariant representation of a $C^*$-dynamical system, that is let $U\\in {\\mathcal B}(H)$ and ${\\mathcal A}\\subset {\\mathcal B}(H)$, $1\\in\n{\\mathcal A}$, be such that $$U{\\mathcal A}U^*\\subset {\\mathcal A},\\qquad U^*U \\in {\\mathcal A}'.$$ We have two operators acting on the $C^*$-algebra ${\\mathcal B}(H)$, namely $\\delta(\\cdot)=U(\\cdot)U^*$ and $\\delta_*(\\cdot)=U^*(\\cdot)U$. Operator $\\delta:{\\mathcal A}\\to {\\mathcal A}$ is a $*$-endomorphism however $\\delta_*$ in general does not preserve ${\\mathcal A}$. The situation changes when we pass to the $C^*$-algebra $${\\mathcal B}=C^*(\\bigcup_{n=0}^\\infty U^{n*}{\\mathcal A}U^{n})$$ generated by $\\bigcup_{n=0}^\\infty U^{n*}{\\mathcal A}U^{n}$. Then, see [@Leb-Odz Proposition 3.9], the following relations hold $$U{\\mathcal B}U^*\\subset {\\mathcal B}, \\qquad U^*{\\mathcal B}U\\subset {\\mathcal B},\\qquad U^*U\\in Z({\\mathcal B}).$$ Thus the $C^*$-dynamical system $({\\mathcal B},\\delta)$ is an extension of the system $({\\mathcal A},\\delta)$ and furthermore operator $\\delta_*:{\\mathcal B}\\to {\\mathcal B}$ is a complete transfer operator for $({\\mathcal B},\\delta)$.\\\nLet us define algebras “approximating” algebra ${\\mathcal B}$ as $C^*$-algebras generated by finite sums: $$\\label{algebry B_n 1}\n{\\mathcal B}_n=C^*(\\bigcup_{i=0}^n U^{*i}{\\mathcal A}U^i), \\qquad n\\in {\\mathbb N}.$$ The family $\\{{\\mathcal B}_n\\}_{n\\in{\\mathbb N}}$ fixes the structure of a direct limit on $B$. Indeed, we have $${\\mathcal A}={\\mathcal B}_0\\subset {\\mathcal B}_1 \\subset ...\\subset {\\mathcal B}_n\\subset ...,\\qquad \\textrm{ and }\\qquad {\\mathcal B}=\\overline{\\bigcup_{n\\in{\\mathbb N}} {\\mathcal B}_n}.$$ The coming proposition describes algebras ${\\mathcal B}_n$ as direct sums of subalgebras of the algebra $C^*({\\mathcal A},U^*U)$. In particular, if $U^*U\\in {\\mathcal A}$, then we are able to define algebras ${\\mathcal B}_n$ in terms of the system $({\\mathcal A},\\delta)$.\n\n\\[kowariantna podpowiedz do algebry wpsolczynnikow\\] Every element $a\\in {\\mathcal B}_n$ can be presented in the form $$a = a_0 +U^*a_1U +... + U^{*n}a_n U^n$$ where $$\\label{coefficients warunki}\na_i\\in (1-U^*U)\\delta^i(1){\\mathcal A}\\delta^i(1), \\quad i=0,...,n-1,\\qquad a_n \\in \\delta^n(1){\\mathcal A}\\delta^n(1),$$ and this form is unique (if $n$ is fixed). ", "In particular, $a\\mapsto a_0\\oplus a_1\\oplus ...\\oplus a_n$ establishes an isomorphism. ", "$${\\mathcal B}_n\\cong (1-U^*U){\\mathcal A}\\oplus (1-U^*U)\\delta^1(1){\\mathcal A}\\delta^1(1)\\oplus ...\\oplus \\delta^n(1){\\mathcal A}\\delta^n(1)$$\n\nLet $a\\in {\\mathcal B}_n$. Then $a=\\sum_{k=0}^{n}\\delta_{*}^k(b_k)$ where $b_i\\in {\\mathcal A}$ and $\\delta_*(\\cdot)=U^*(\\cdot)U$, see [@Leb-Odz Proposition ??]. ", "Without loss of generality we may assume that $b_i\\in \\delta^i(1){\\mathcal A}\\delta^i(1)$, because $\\delta_*^i( b_i )=\\delta_*^i(\\delta^i(1) b_i\\delta^i(1))$. We shall construct elements $a_i$ satisfying modifying inductively the elements $b_i$.\\\nFor $a_0$ we take $b_0(1- \\delta_*(1))$ and “the remaining part” $b_0\\delta_*(1)$ of $b_0$ we include in $b_1$, that is we put $c_1=b_1 + \\delta(b_0)$. Then $a= a_0+ \\delta_*(c_1)+... +\\delta^n_*(b_n)$, because $b_0\\delta_*(1)=\\delta_*(\\delta(b_0))$, and $a_0 \\in (1-U^*U){\\mathcal A}$.\\\nContinuing in this manner we get $k<n$ coefficients $a_0,...,a_{k-1}$ satisfying and such that $a=a_0+...+\\delta^{k-1}_{*}(a_{k-1})+\\delta_{*}^{k}(c_{k})+...\n+\\delta^n_*(b_n) $. ", "We put $a_k=c_k(1- \\delta_*(1))\\in {\\mathcal A}$ and $c_{k+1}=b_{k+1} +\\delta(c_k)$. Then $a_k\n\\in(1-U^*U)\\delta^k(1){\\mathcal A}\\delta^k(1)$ whereas the following computation shows that $a=a_0+...+\\delta^{k}_{*}(a_{k})+\\delta_{*}^{k+1}(c_{k+1})+...\n+\\delta^n_*(b_n)$: $$\\delta_*^k(c_k)=\\delta_*^k(c_k)\\delta_*^k(1)=\\delta_*^k(c_k)\\big(\\delta^k_*(1)-\\delta^{k+1}_*(1)\\big)\n+ \\delta^{k+1}_*(1)\\delta_*^k(c_k)$$ $$=\n\\delta_*^k\\big(c_k (1-\\delta_*(1))\\big)+ \\delta_*^{k+1}(\\delta(c_k))=\\delta_*^k(a_k)+ \\delta_*^{k+1}(\\delta(c_k)).$$ This ends the first part of the proof.\\\nTo realize the consequences of conditions we notice that they imply the following $$\\label{coefficient choosen}\n\\delta_*^i(a_i)\\in \\big(\\delta^i_*(1)-\\delta^{i+1}_*(1)\\big){\\mathcal A}, \\qquad i=0,...,n-1.$$ Since the sequence $\\{\\delta_*^k(1)\\}_{k\\in {\\mathbb N}} \\subset Z({\\mathcal B})$ is a decreasing family of orthogonal projections we see that projections $1-\\delta_*(1)$, $\\delta_*(1)-\\delta_*^2( 1)$,..., $\\delta_*^{n}(1)-\\delta_*^{n-1}(1)$, $\\delta_*^n(1)$ are pair-wise orthogonal and central in ${\\mathcal B}_n$. Hence the algebra ${\\mathcal B}_n$ is a direct sum of ideals corresponding to these projections and $i$-th component of such decomposition is isomorphic to $(1-U^*U)\\delta^i(1){\\mathcal A}\\delta^i(1)$, for $i=0,...,n-1$ and $\\delta^n(1){\\mathcal A}\\delta^n(1)$ for $i=n$.\n\nAdjoining the unit to the kernel of an endomorphism {#adjoning a unit subsection}\n---------------------------------------------------\n\nUsing Proposition \\[kernel unitization\\] one may deduce that (up to an isomorphism) the algebra $C^*(\\pi({\\mathcal A}),U^*U)$ does not depend on the choice of a strict covariant representation $(\\pi,U,H)$ of the system $({\\mathcal A},\\delta)$. In this subsection we present an “internal” (not involving covariant representations and hence independent from their existence) description of this algebra. ", "We shall denote it by ${\\mathcal A}^+$ and we shall consider endomorphism extension $\\delta:{\\mathcal A}^+\\to{\\mathcal A}^+$ of $\\delta$ up to ${\\mathcal A}^+$ (${\\mathcal A}\\subset {\\mathcal A}^+$).\\\nWe shall construct algebra ${\\mathcal A}^+$ by a general procedure of adjoining a unit to a given ideal in ${\\mathcal A}$ (by an ideal we always mean two-sided closed ideal). ", "Indeed, for any ideal $I$ in ${\\mathcal A}$ there exists the largest among the ideals $J$ in ${\\mathcal A}$ satisfying $$I\\cap J = \\{0\\}$$ (such an ideal could be defined directly as $(p{\\mathcal A}^{**})\\cap {\\mathcal A}$, see notation below). ", "We denote it by $I^\\bot$ and define ${\\mathcal A}^+$ to be the following direct sum of quotient algebras $${\\mathcal A}^+=\\big({\\mathcal A}/I\\big) \\oplus \\big({\\mathcal A}/I^{\\bot}\\big).$$ The $C^*$-algebra ${\\mathcal A}$ embeds naturally into $C^*$-algebra ${\\mathcal A}^+$ via $${\\mathcal A}\\ni a \\longmapsto \\big(a +I\\big)\\oplus \\big(a + I^\\bot\\big)\\in {\\mathcal A}^+.$$ Since $I\\cap I^\\bot =\n\\{0\\}$ this mapping is injective and we shall treat ${\\mathcal A}$ as the corresponding subalgebra of ${\\mathcal A}^+$. If we let $I$ to be the kernel of endomorphism $\\delta:{\\mathcal A}\\to {\\mathcal A}$ then we can extend $\\delta$ up to ${\\mathcal A}^+$ by the formula $${\\mathcal A}^+\\ni \\big((a +I)\\oplus (b +I^\\bot)\\big)\\stackrel{\\delta}{\\longrightarrow}(\\delta(a) +I)\\oplus\n(\\delta(a) +I^\\bot)\\in {\\mathcal A}^+.$$ Since an element $\\delta(a)$ does not depend on the choice of a representative of the equivalence class $a +I$ endomorphism $\\delta:{\\mathcal A}^+\\to {\\mathcal A}^+$ is well defined (and obviously extends $\\delta:{\\mathcal A}\\to {\\mathcal A}$).\\\nThe fundamental property of the system $({\\mathcal A}^+,\\delta)$ is that the kernel of the endomorphism $\\delta:{\\mathcal A}^+\\to {\\mathcal A}^+$ is unital where its unit have the form $ (0 + I) \\oplus (1 +I ^\\bot). ", "$ Evidently, if the kernel of $\\delta:{\\mathcal A}\\to{\\mathcal A}$ is unital the algebras ${\\mathcal A}^+$ and ${\\mathcal A}$ coincide.\\\nWe now present “an exterior” version of the preceding construction. ", "It reveals universal character of $({\\mathcal A}^+,\\delta)$ and will give us a desired correspondence between covariant representations of $({\\mathcal A},\\delta)$ and $({\\mathcal A}^+,\\delta)$.\\\nFor that purpose, let us consider ${\\mathcal A}$ as a subalgebra of ${\\mathcal A}^{**}$ - the second dual algebra (enveloping $W^*$-algebra), and let $\\{\\mu_\\lambda\\}_{\\lambda \\in \\Lambda}$ be an approximate unit for $I$. Then the $\\sigma$-weak limits $$q=\\sigma\\lim_{\\lambda\\in \\Lambda} \\mu_\\lambda,\\qquad p = 1-\\sigma\\lim_{\\lambda\\in \\Lambda} \\mu_\\lambda$$ give rise to (pair-wise complementary) central projections in ${\\mathcal A}^{**}$. Furthermore, one checks, cf. [", "@Sakai], [@Kadison], that $$I= (q{\\mathcal A}^{**}) \\cap {\\mathcal A}, \\qquad I^{\\bot} = (p{\\mathcal A}^{**})\\cap {\\mathcal A},$$ and consequently $${\\mathcal A}/ I \\cong ({\\mathcal A}+ q{\\mathcal A}^{**})/ (q{\\mathcal A}^{**})\\cong p {\\mathcal A}, \\qquad {\\mathcal A}/ I^{\\bot} \\cong\n ({\\mathcal A}+ p{\\mathcal A}^{**})/ (p{\\mathcal A}^{**})\\cong q {\\mathcal A}.$$ Thus the algebra ${\\mathcal A}^+$ may be viewed as a $C^*$-subalgebra of ${\\mathcal A}^{**}$ generated by the algebra ${\\mathcal A}$ and the projection $p$: $${\\mathcal A}^+ = p{\\mathcal A}+ (1-p){\\mathcal A}\\subset {\\mathcal A}^{**}.$$ Under this identification $\\delta:{\\mathcal A}^+\\to {\\mathcal A}^+$ assumes the following form $$\\delta(p a + (1-p)b )= \\delta(a), \\qquad a,b \\in {\\mathcal A},$$ and the universality of ${\\mathcal A}^{**}$ gives us the following statement.", "\n\n\\[unitization rep thm\\] There is a one-to-one correspondence between the strict covariant representations $ (\\pi, U,H)$ and $(\\pi^+, U,H)$ of $({\\mathcal A},\\delta)$ and $({\\mathcal A}^+,\\delta)$ respectively, which is established by the relation $$\\label{pi^+ formula}\n\\pi^+\\big((a + I)\\oplus (b + I^\\bot)\\big)=\\pi^+\\big(pa + (1-p)b\\big)=U^*U\\pi(a) + (1-U^*U)\\pi(b) .$$ In particular, for every strict covariant representation $(\\pi, U,H)$ of $({\\mathcal A},\\delta)$ the algebra $\n{\\mathcal A}^+$ is isomorphic to $C^*\\big(U^{*}U, \\pi({\\mathcal A})\\big).", "\n$\n\nRepresentation $\\pi$ extends uniquely to a normal representation $\\pi''$ of ${\\mathcal A}^**$. We put $\\pi^+=\\pi''|_{{\\mathcal A}^+}$. Then by the strictness of $ (\\pi, U,H)$ we have $\\pi^+(p)=U^*U$ and thus $\\pi^+$ is given by . ", "In view of Remark \\[taka uwaga ze uwaga\\] we have $$I=\\{ a\\in {\\mathcal A}: U^*U \\pi(a)=0\\}, \\quad \\textrm{ and } \\quad I^\\bot=\\{ a\\in {\\mathcal A}: (1-U^*U) \\pi(a)=0\\},$$ what implies that $\\pi^+ |_{p{\\mathcal A}}$ and $\\pi^+ |_{(1-p){\\mathcal A}}$ are injective. ", "Thus $\\pi^+$ is faithful and now it is easily seen that $(\\pi^+, U,H)$ is a strict covariant representation of $({\\mathcal A}^+,\\delta)$.\n\nInductive limit construction {#konstrukcja z uzuciem broni palnej}\n----------------------------\n\nNow we are ready to pass to the main part of the construction. ", "Heuristically it relies upon Proposition \\[kowariantna podpowiedz do algebry wpsolczynnikow\\]. ", "For convenience, until Definition \\[naturalne rozszerzenie defn\\] we shall assume that the kernel of $\\delta:{\\mathcal A}\\to {\\mathcal A}$ is unital (in other case one may pass to the system $({\\mathcal A}^+,\\delta)$ from the previous subsection). ", "The unit in $\\ker \\delta$ will be denoted by $q$ and its complementary projection by $p=1-q$. Thus $q$ and $p$ are central projections in ${\\mathcal A}$.\\\nWe put $$\\label{algebry A_n 2}\n{\\mathcal A}_n=\\delta^n(1){\\mathcal A}\\delta^n(1),\\qquad n\\in {\\mathbb N},$$ and define algebras ${\\mathcal B}_n$ as direct sums of the form $$\\label{algebry B_n 2}\n{\\mathcal B}_n=q{\\mathcal A}_{0}\\oplus q{\\mathcal A}_{1}\\oplus ... \\oplus q{\\mathcal A}_{n-1} \\oplus {\\mathcal A}_{n}, \\qquad n\\in {\\mathbb N}.$$ In particular, ${\\mathcal B}_0= {\\mathcal A}_0={\\mathcal A}$.\\\nLet us consider, for $n\\in {\\mathbb N}$, a homomorphism $\\delta_n:{\\mathcal B}_n \\to {\\mathcal B}_{n+1}$ schematically presented by the diagram $$\\begin{xy}\n\\xymatrix@C=3pt{\n **[r] {\\mathcal B}_n \\ar[d]^{\\delta_n}& = & qA_{0} \\ar[d]^{id} & \\oplus & ... & \\oplus &\n q{\\mathcal A}_{n-1}\\ar[d]^{id}& \\oplus & {\\mathcal A}_{n} \\ar[d]^{q} \\ar[rrd]^{\\delta} \\\\\n {\\mathcal B}_{n+1} & = & q{\\mathcal A}_{0}& \\oplus & ... & \\oplus& q{\\mathcal A}_{n-1} & \\oplus & q{\\mathcal A}_{n} & \\oplus & {\\mathcal A}_{n+1}\n }\n \\end{xy}$$ and formally given by the formula $$\\delta_n (a_{0}\\oplus ... \\oplus a_{ n-1}\\oplus a_{n})= a_{0}\\oplus ... \\oplus a_{ n-1}\\oplus q a_{n}\n\\oplus \\delta(a_{n}),$$ where $a_{k}\\in q{\\mathcal A}_{k}$, $k=0,...,n-1,$ and $a_{n}\\in {\\mathcal A}_{n}$. Homomorphism $\\delta_n$ is well defined since $a_n=q a_n + p a_n$ and $\\delta: p{\\mathcal A}\\to \\delta({\\mathcal A})$ is an isomorphism $\\delta_n$ is injective.\\\nWe define an algebra ${\\mathcal B}=\\underrightarrow{\\lim\\,\\,}\\{{\\mathcal B}_n,\\delta_n\\}$ as a direct limit of the direct sequence $$\\label{ciag prosty C*-algebr}\n{\\mathcal B}_0\\stackrel{\\delta_0}{\\longrightarrow} {\\mathcal B}_1\n\\stackrel{\\delta_1}{\\longrightarrow}{\\mathcal B}_2 \\stackrel{\\delta_2}{\\longrightarrow}...\\,$$ and denote by $\\phi_n: {\\mathcal B}_n \\to {\\mathcal B}$, $n\\in {\\mathbb N}$, the natural embeddings, see for instance [@Mur]. ", "Then $$\\phi_0({\\mathcal A})=\\phi_0({\\mathcal B}_0) \\subset \\phi_1({\\mathcal B}_1) \\subset ...\\subset \\phi_n({\\mathcal B}_n)\n\\subset ...\\qquad \\textrm{ and } \\qquad {\\mathcal B}=\\overline{\\bigcup_{n\\in{\\mathbb N}} \\phi_n({\\mathcal B}_n)}.$$ We shall identify algebra ${\\mathcal A}$ with the subalgebra $\\phi_0({\\mathcal A}) \\subset {\\mathcal B}$ and under this identification we extend $\\delta$ onto the algebra ${\\mathcal B}$. To this end, let us consider two sequences (an inverse one and a direct one) $$\\label{ciag odwrotny s}\n{\\mathcal B}_0\\stackrel{s_1}{\\longleftarrow} {\\mathcal B}_1\n\\stackrel{s_2}{\\longleftarrow}{\\mathcal B}_2 \\stackrel{s_3}{\\longleftarrow}...\\,,$$ $$\\label{ciag prosty s_*}\n{\\mathcal B}_0\n\\stackrel{s_{*,0}}{\\longrightarrow} {\\mathcal B}_1\n\\stackrel{s_{*,1}}{\\longrightarrow}{\\mathcal B}_2 \\stackrel{s_{*,2}}{\\longrightarrow}...\\,,$$ where $s_{n}$ is a “left-shift” and $s_{*,n}$ is a “right-shift”: $$s_{n}(a_{0}\\oplus a_{1}\\oplus ... \\oplus a_{{n}})=a_{1}\\oplus a_{ 2}\\oplus ... \\oplus a_{n}$$ $$s_{*,n}(a_{0}\\oplus ... \\oplus a_{ n-1}\\oplus a_{n})=0\\oplus \\big(\\delta(1)a_{0}\\,\n\\delta(1)\\big)\\oplus ...\\oplus \\big(\\delta^{n+1}(1)a_{n}\\delta^{n+1}(1)\\big),$$ $a_{k}\\in q{\\mathcal A}_{k}$, $k=0,...,n-1$ $ a_{n}\\in {\\mathcal A}_{n}$. Since $\\delta^{n}(1)$, $n\\in {\\mathbb N}$, form a decreasing sequence of orthogonal projections, mappings $s_n$ and $s_{*,n}$ are well defined. ", "Moreover the operators $s_n$ are homomorphisms, whereas operators $s_{*,n}$ may fail to be multiplicative.", "\n\n\\[granica prosta zepsute twierdzenie\\] Sequence induces an endomorphism $\\delta:{\\mathcal B}\\to {\\mathcal B}$ extending the endomorphism $\\delta:{\\mathcal A}\\to {\\mathcal A}$, whereas sequence induces an operator $\\delta_*:{\\mathcal B}\\to {\\mathcal B}$ which is a complete transfer operator for the extended $C^*$-dynamical system $({\\mathcal B},\\delta)$.\n\nThe word “induces” means here that $\\delta$ and $\\delta_*$ are given on the dense $^*$-subalgebra $\\bigcup_{n\\in{\\mathbb N}} \\phi_n({\\mathcal A}_n)$ of ${\\mathcal B}$ by the formulae $$\\label{wzory na delta i delta_*}\n\\delta(a)= \\phi_{n}(s_{n+1}(\\phi_{n+1}^{-1}(a))), \\qquad \\delta_*(a)= \\phi_{n+1}(s_{*,n}(\\phi_n^{-1}(a))),$$ where $a\\in \\phi_n({\\mathcal B}_n)$, $ n\\in {\\mathbb N}$.\n\nDirect computations shows that the following diagrams $$\\begin{xy}\n\\xymatrix{\n {\\mathcal B}_0 \\ar[r]^{\\delta_0} & {\\mathcal B}_1 \\ar[r]^{\\delta_1} & {\\mathcal B}_2 \\ar[r]^{\\delta_2} &\n \\,\\,...\\,\\, \\ar[r]^{\\delta_{n-1}}& {\\mathcal B}_{n} \\ar[r]^{\\delta_n} & \\,\\, ...\\,\\,\n \\\\\n {\\mathcal B}_0 \\ar[r]^{\\delta_0} & {\\mathcal B}_1 \\ar[lu]_{s_1} \\ar[r]^{\\delta_1} &{\\mathcal B}_2 \\ar[r]^{\\delta_2}\n \\ar[lu]_{s_2}& \\,\\,...\\,\\, \\ar[lu]_{s_{3}}\\ar[r]^{\\delta_{n-1}}& {\\mathcal B}_{n} \\ar[lu]_{s_{n}}\\ar[r]^{\\delta_n} &\n \\ar[lu]_{s_{n+1}}\\,\\, ...\\,\\,\n }\n \\end{xy}$$ $$\\begin{xy}\n\\xymatrix{\n {\\mathcal B}_0 \\ar[r]^{\\delta_0} & {\\mathcal B}_1 \\ar[r]^{\\delta_1} & {\\mathcal B}_2 \\ar[r]^{\\delta_2} & \\,\\,...\\,\\,\n \\ar[r]^{\\delta_{n-1}}& {\\mathcal B}_{n} \\ar[r]^{\\delta_n} & \\,\\, ...\\,\\,\n \\\\\n {\\mathcal B}_0 \\ar[ru]^{s_{*,0}} \\ar[r]^{\\delta_0} & {\\mathcal B}_1 \\ar[ru]^{s_{*,1}} \\ar[r]^{\\delta_1} &{\\mathcal B}_2\n \\ar[r]^{\\delta_2} \\ar[ru]^{s_{*,2}}& \\,\\,...\\,\\,\\ar[ru]^{s_{*,n-1}} \\ar[r]^{\\delta_{n-1}}&\n {\\mathcal B}_{n} \\ar[ru]^{s_{*,n}}\\ar[r]^{\\delta_n} & \\,\\, ...\\,\\,\n }\n \\end{xy}$$ commute. ", "Hence and induce certain linear mappings on ${\\mathcal B}$ (i.e. formulae make sense). ", "The former mapping is a homomorphism (since $s_n$ is a homomorphism for all $n\\in {\\mathbb N}$) and the latter one is positive (because $s_{*n}$ posses that property for all $n\\in {\\mathbb N}$).\\\nWe assert that the mapping induced by agrees with $\\delta$ on ${\\mathcal A}$ (which we identify with $\\phi_0({\\mathcal A})$). ", "Indeed, an element $a\\in \\phi_0({\\mathcal A})$ of the inductive limit ${\\mathcal B}$ is represented by the following sequence $$(a, qa \\oplus \\delta(a), qa \\oplus q\\delta(a)\\oplus \\delta^2(a), ...)$$ which is mapped both by $\\delta$ and the mapping induced by onto the following sequence $$( \\delta(a), q\\delta(a)\\oplus \\delta^2(a), q\\delta(a) \\oplus q\\delta^2(a)\\oplus \\delta^3(a), ...)\\in \\phi_0({\\mathcal A}).$$ Thereby our assertion is true and we are justified to denote by $\\delta$ the mapping induced by .\\\nBy Theorem \\[complete\\] to prove that $\\delta_*$ is the complete transfer operator for $({\\mathcal B},\\delta)$ it suffices to show and . ", "For that purpose take arbitrary elements ${\\widetilde a}, {\\widetilde b}\\in \\bigcup_{n\\in{\\mathbb N}} \\phi_n({\\mathcal B}_n)\\subset {\\mathcal B}$ and note that there exist $n\\in {\\mathbb N}$, $a\\in {\\mathcal B}_{n+1}$ and $b\\in {\\mathcal B}_{n}$ such that ${\\widetilde a}=\\phi_{n+1}(a)$ and ${\\widetilde b}=\\phi_{n}(b)$. Routine computation shows that $s_{*,{n}}(s_{n+1}(a)b)=a\\cdot s_{*,n}(b)$ and thus using formulae we have $$\\delta_*(\\delta({\\widetilde a}){\\widetilde b})=\\delta_*(\\phi_{n}(s_{n+1}(a))\\,{\\widetilde b})=\\phi_{n+1}(s_{*,n}(s_{n+1}(a)b)))$$ $$=\\phi_{n+1}(a\\cdot s_{*,n}(b))=\\phi_{n+1}(a)\\cdot \\phi_{n+1}( s_{*,n}(b))={\\widetilde a}\\delta_*({\\widetilde b})$$ what proves . ", "Similarly we prove . ", "It suffices to check that $s_{n+1}(s_{*,n}(a))=s_{n+1}(1)a\ns_{n+1}(1)$ and then we have $$\\delta(\\delta_*({\\widetilde a}))= \\delta(\\phi_{n+1}(s_{*,n}(a))=\\phi_{n}(s_{n+1}(s_{*,n}(a)))=\\phi_{n}(s_{n+1}(1)a s_{n+1}(1) )$$ $$=\\phi_{n}(s_{n+1}(1)) \\phi_{n}(a) \\phi_{n}(s_{n+1}(1))=\\delta(1) {\\widetilde a}\\delta(1).$$\n\nThe above presented construction of the system $({\\mathcal B},\\delta)$ is compatible with operator (geometric) approach presented in the introduction to this section.", "\n\n\\[rozszerzenie a repr. ", "kowariantne\\] There is a one-to-one correspondence between the strict covariant representations $ (\\pi, U,H)$ and $(\\widetilde{\\pi}, U,H)$ of $({\\mathcal A},\\delta)$ and $({\\mathcal B},\\delta)$ respectively, which is established by the relation $$\\label{formula szpiegula}\n \\qquad \\widetilde{\\pi}(\\phi_n(a_{0}\\oplus a_1 ... \\oplus a_{n}))=\n \\pi(a_{0})+ U^*\\pi(a_{1})U ... + U^{*n}\\pi(a_{n}) U^{n}$$\n\nThe fact that for a strict covariant representation $(\\widetilde{\\pi}, U,H)$ of $({\\mathcal B},\\delta)$ the triple $(\\pi, U,H)$ where $\\pi = \\widetilde{\\pi}|_{{\\mathcal A}}$ is a covariant representation of $({\\mathcal A},\\delta)$ is trivial. ", "However the strictness of $(\\pi, U,H)$ requires a comment. ", "In particular, it follows from the equality of kernels of $\\delta:{\\mathcal A}\\to {\\mathcal A}$ and $\\delta:{\\mathcal B}\\to {\\mathcal B}$.\\\nTo prove the equality between $\\ker \\delta|_{\\mathcal B}$ and $\\ker \\delta|_{\\mathcal A}=q{\\mathcal A}$ let $n>0$ and notice that $$\\phi_0(q)=\\phi_n(q \\oplus 0\\oplus 0...\\oplus 0).$$ Thus $q{\\mathcal B}=q{\\mathcal A}$ and for $a=\\phi_n(a_0\\oplus a_1\\oplus... \\oplus a_n)\\in \\phi_n({\\mathcal B}_n)$ we have $$\\delta(a)=\\phi_n(a_1\\oplus... \\oplus a_n)=0 \\,\\,\\Longleftrightarrow\\,\\, a_1=...=a_n=0\n\\,\\,\\Longleftrightarrow\\,\\,a=qa.$$ Hence $\\ker \\delta|_{\\mathcal B}=\\ker \\delta|_{\\mathcal A}$.\n\nFix now a strict covariant representation $(\\pi, U,H)$ of $({\\mathcal A},\\delta)$. We show that formula defines a faithful representation $\\widetilde{\\pi}$ of ${\\mathcal B}$.\\\nThe first step is to check that $\\widetilde{\\pi}$ is well defined. ", "Let $a\\in {\\mathcal B}_n$ and $b \\in {\\mathcal B}_m$ be such that $\\phi_n(a)=\\phi_m(b)$ and let us assume that $n\\leq m$ and $a=a_{0}\\oplus a_1\\oplus ... \\oplus a_{n}$. Using injectivity of the mappings occurring in the following equality $$\\phi_n = \\phi_m \\circ \\delta_{m-1} \\circ... \\circ \\delta_{n+1} \\circ \\delta_n$$ we obtain that $b$ is of the form $$b=a_{0}\\oplus ...\\oplus a_{n-1} \\oplus qa_{n}\\oplus q \\delta(a_{n}) \\oplus ... \\oplus q \\delta^{m-n-1}(a_{n})\n \\oplus \\delta^{m-n}(a_{n}).$$ Whereas covariance and strictness of $(\\pi, U,H)$ (Definition \\[kowariant rep strict\\]) together with the relation $a_n\\in {\\mathcal A}_n=\\delta^n(1){\\mathcal A}\\delta^n(1)$ implies that $$U^{*n+k}\\pi( q \\delta^k(a_{n})) U^{n+k}= U^{*n+k} (1- U^*U) (U^k \\pi(a_{n})U^{*k}) U^{n+k}$$ $$= U^{*n+k} (U^k \\pi(a_{n})U^{*k}) U^{n+k} - U^{*n+k} ( U^*U U^k \\pi(a_{n})U^{*k}) U^{n+k}$$ $$= U^{*n} (U^{*k} U^k) \\pi(a_{n})(U^{*k} U^{k})U^{n} - U^{*n}(U^{*(k+1)} U^{k+1} \\pi(a_{n})U^{*k}U^{k})U^n$$ $$= U^{*n} (U^{*k} U^k) \\pi(a_{n})U^{n} - U^{*n}(U^{*(k+1)} U^{k+1} \\pi(a_{n}))U^n$$ $$= U^{*n} \\big((U^{*k} U^k - U^{*(k+1)} U^{k+1}) \\pi(a_{n})\\big)U^n$$ $$= (U^{*(n+k)} U^k - U^{*(n+k+1)} U^{k+1}) \\pi(\\delta^n(1) a_{n})\\big)U^n$$ $$= (U^{*(n+k)} U^{n+k}) - U^{*(n+k+1)} U^{n+k+1}) U^{*n}\\pi( a_{n}))U^n$$ and $$U^{*m}\\pi( \\delta^{m-n}(a_{n}) )U^{m}=U^{*m} U^{m-n} \\pi( a_{n}) U^{*m-n} U^{m}$$ $$=U^{*m} U^{m-n}(U^nU^{*n} \\pi(a_{n}) U^nU^{*n} )U^{*m-n} U^{m}= U^{*m} U^{m} (U^{*n} \\pi( a_{n}) U^n )U^{*m} U^{m}$$ $$=U ^{*m} U^{m} (U^{*n} \\pi( a_{n} )U^n )$$ Thus we have $$\\sum_{k=0}^{m-n-1} U^{*n+k} \\pi(Q \\delta^k(a_{n})) U^{n+k} + U^{*m}\n\\delta^{m-n}\\pi((a_{n})) U^{m}= U^{*n} \\pi(a_{n}) U^n.$$ Hence $\\widetilde{\\pi} (\\phi_n(a))= \\widetilde{\\pi} (\\phi_m(b))$ and $\\widetilde{\\pi}$ is well defined.\\\nIn view of Proposition \\[kowariantna podpowiedz do algebry wpsolczynnikow\\] for every $n\\in{\\mathbb N}$ $\\widetilde{\\pi}: \\phi_n({\\mathcal B}_n) \\to C^*\\big(\\bigcup_{k=0}^nU^{*n}\\pi({\\mathcal A}) U^n \\big)$ is an isomorphism. ", "Consequently $\\widetilde{\\pi}: {\\mathcal B}\\to C^*\\big(\\bigcup_{n\\in {\\mathbb N}}U^{*n}\\pi({\\mathcal A}) U^n \\big)$ is an isomorphism.\\\nThus, the only thing left for us to show is that the $(\\widetilde{\\pi}, U,H)$ satisfies conditions $(CR1'')$ and $(CR2)$. Condition $(CR1'')$ follows from the equality $\\widetilde{\\pi}(q)=\\pi(q)=U^*U$ and the coincidence of kernels $\\ker \\delta|_{\\mathcal B}=\\ker \\delta|_{\\mathcal A}$ (see the first part of the proof). ", "To show $(CR2)$ take any element of the form $a=\\phi_n(a_0\\oplus a_1\\oplus... \\oplus a_n)\\in \\phi_n({\\mathcal B}_n)$, $n\n>0$. Then $$U\\widetilde{\\pi}(a)U^*= U\\pi(a_{0})U^*+ UU^*\\pi(a_{1})U U^* ... + UU^{*n}\\pi(a_{n})U^{n}U^*$$ $$=\\pi(\\delta(a_{0}))+ \\pi(\\delta(1)a_{1}\\delta(1)) ... + UU^* (U^{*n-1}U^{n-1})U^{*n-1}\n\\pi(a_{n})U^{n-1}(U^{*n-1} U^{n-1})UU^*$$ $$=\\pi(a_{1}) ... + U^{*n-1}U^{n}U^{*n} \\pi(a_{n})U^{n}U^{*n} U^{n-1}=\\pi(a_{1}) ... + U^{*n-1}\n \\pi(\\delta^n(1)a_{n}\\delta^n(1)) U^{n-1}$$ $$=\\pi(a_{1}) ... + U^{*n-1} \\pi(a_{n})U^{n-1}=\\widetilde{\\pi}(\\phi_{n-1}(a_1\\oplus a_2\\oplus...\n\\oplus a_n))=\\widetilde{\\pi}(\\delta(a)).$$\n\nWe put together the systems constructed in this and the previous subsection in a definition.", "\n\n\\[naturalne rozszerzenie defn\\] Let $({\\mathcal A},\\delta)$ be an arbitrary $C^*$-dynamical system. ", "Let $({\\mathcal A}^+,\\delta)$ be extension of $({\\mathcal A},\\delta)$ defined in the subsection \\[kernel unitization\\] and let $({\\mathcal B},\\delta)$ be the extension of $({\\mathcal A}^+,\\delta)$ described in the present subsection: $${\\mathcal A}\\subset {\\mathcal A}^+ \\subset {\\mathcal B}.$$ We shall call the system $({\\mathcal B},\\delta)$ *a natural extension* of $({\\mathcal A},\\delta)$ to the $C^*$-dynamical system possessing complete transfer operator $\\delta_*$.\n\nIn view of Theorems \\[unitization rep thm\\] and \\[rozszerzenie a repr. ", "kowariantne\\] we have the relations $${\\mathcal A}^+=C^*({\\mathcal A},\\delta_*(1)),\\qquad {\\mathcal B}=C^*(\\bigcup_{n=0}^\\infty \\delta_*^n({\\mathcal A})),$$ where $\\delta_*: {\\mathcal B}\\to {\\mathcal B}$ is the transfer operator for $({\\mathcal B},\\delta)$, and we are ready to state the main result of the present paper.", "\n\n\\[rozszerzenie a repr. ", "kowariantne2\\] Let $({\\mathcal A},\\delta)$ be an arbitrary $C^*$-dynamical system and let $({\\mathcal B},\\delta)$ be its natural extension with the transfer operator $\\delta_*$. There is a one-to-one correspondence between the strict covariant representations $ (\\pi, U,H)$ and $(\\widetilde{\\pi}, U,H)$ of $({\\mathcal A},\\delta)$ and $({\\mathcal B},\\delta)$ respectively, which is established by the relation $$\\widetilde{\\pi}(\\sum_{k=0}^n \\delta_*^k(a_k))=\\sum_{k=0}^n U^{*k}\\pi(a_{k})U^k,\\quad a_k \\in {\\mathcal A}.$$ In particular for every strict covariant representation $(\\pi, U,H)$ of $({\\mathcal A},\\delta)$ we have $${\\mathcal B}\\cong C^*\\big(\\bigcup_{n\\in {\\mathbb N}}U^{*n}\\pi({\\mathcal A}) U^n \\big).$$\n\nWe conclude this section with the nontrivial fact which generalizes the essential part of the main result of [@Bakht-Leb]. ", "It is a corollary to Theorems \\[rozszerzenie a repr. ", "kowariantne2\\], \\[complete transfer2\\] and \\[transfer covar rep\\].", "\n\n\\[istnienie reprezentacji kowariantnej thm\\] For an arbitrary $C^*$-dynamical system $({\\mathcal A},\\delta)$ there exists a strict covariant representation of $({\\mathcal A},\\delta)$.\n\nCommutative case and its relation to inverse limits {#podrozdzial o rozszerzeniach topologicznych}\n===================================================\n\nThroughout this section ${\\mathcal A}$ is a unital commutative $C^*$-algebra. ", "Let us recall that the space $X$ of all non-zero linear and multiplicative functionals on ${\\mathcal A}$ equipped with the weak$^*$ topology is a Hausdorff space and by Gelfand-Naimark Theorem ${\\mathcal A}$ is isomorphic to (and thus may be identified with) the algebra $C(X)$ of continuous complex valued functions on $X$. It is also known, cf. [", "@Bourbaki], that then an endomorphism $\\delta:{\\mathcal A}\\to {\\mathcal A}$ assumes the form $$\\label{endomorphisms}\n\\delta (a)(x)=\\left\\{ \\begin{array}{ll} a({\\alpha}(x))& ,\\ \\ x\\in\n\\Delta_1\\\\\n0 & ,\\ \\ x\\notin \\Delta_1 \\end{array}\\right. ,", "\\qquad a\\in C(X),$$ where $\\Delta_1$ is a clopen subset of $X$ and ${\\alpha}:\\Delta_1\\to X$ is a continuous map. ", "We will denote by $\\Delta_{-1}={\\alpha}(\\Delta_1)$ the image of ${\\alpha}$ and refer to $(X,{\\alpha})$ as to *partial dynamical system* generated by $({\\mathcal A},\\delta)$.\\\nWe have a number of dual correspondences between the properties of $C^*$-dynamical systems and partial systems they generate, cf. [", "@maxid], [@kwa3]. ", "Let us list a few of them: $$\\begin{array}{rcl}\n \\delta \\textrm{ is a monomorphism }\\,\\, &\\Longleftrightarrow & \\,\\, {\\alpha}\\textrm{ is a surjection},\\\\\n \\delta \\textrm{ is unital }\\,\\, &\\Longleftrightarrow & \\,\\, \\textrm{the domain of } {\\alpha}\\textrm{ is }X,\\\\\n \\delta \\textrm{ is an epimorphism }\\,\\, &\\Longleftrightarrow & \\,\\, {\\alpha}\\textrm{ is an injection}\n \\textrm{ with domain } X,\\\\\n \\textrm{the kernel of }\\delta \\textrm{ is unital }\\,\\, &\\Longleftrightarrow &\n \\,\\, \\textrm{the image of } {\\alpha}\\textrm{ is open},\n \\\\\n\\left(\\begin{array}{l}\\textrm{the system } ({\\mathcal A},\\delta) \\textrm{ possess}\n \\\\\n \\textrm{a complete transfer operator}\n \\end{array}\\right)\n \\,\\, &\\Longleftrightarrow & \\,\\,\n\\left(\\begin{array}{l} {\\alpha}\\textrm{ is an injection and }\n\\\\\n \\textrm{the image of } {\\alpha}\\textrm{ is open} \\end{array}\\right).", "\n \\end{array}$$ This specific spectral duality allows us to explore the constructions from previous section in topological terms.", "\n\nCompactification of a complement of a range of a mapping {#uzwarcenie dopelnienia obrazu}\n--------------------------------------------------------\n\nAdjoining a unit to a non-unital commutative algebra corresponds to compactification of a non-compact topological space. ", "The kernel $I$ of the endomorphism $\\delta: {\\mathcal A}\\to {\\mathcal A}$ is isomorphic to the algebra $C_0(X\\setminus \\Delta_{-1})$ . ", "Hence adjoining a unit to $I$ corresponds to a compactification of $X\\setminus \\Delta_{-1}$. The construction of the system $({\\mathcal A}^+,\\delta)$ from subsection \\[adjoning a unit subsection\\] relies simply on taking the closure $\\overline{X\\setminus \\Delta_{-1}}$ of $X\\setminus \\Delta_{-1}$ in $X$.\\\nIndeed, the system $({\\mathcal A}^+,\\delta)$ is commutative and thereby it generates a partial dynamical $(X_+,{\\alpha}_+)$ which may be informally described in terms of $(X,{\\alpha})$ in the following way, see Figure \\[uzwarcenie rysunek\\]: the space $X_+$ arise by “cutting” $\\Delta_{-1}$ out of $X$ and then closing the set $X\\setminus \\Delta_{-1}$; the image of ${\\alpha}_+$ is the set $\\Delta_{-1}$ that has been “cut out” and the domain of ${\\alpha}_+$, with respect to the domain of ${\\alpha}$, is enlarged by the set $\\Delta_1 \\cap \\overline{X\\setminus \\Delta_{-1}}$. The whole space $X_+$ differs from $X$ by a boundary $\\textrm{Bd}\\,(\\Delta_{-1})=\\Delta_{-1} \\cap \\overline{X\\setminus\n\\Delta_{-1}}$ of the range $\\Delta_{-1}$ of ${\\alpha}$.\n\n\\[uzwarcenie rysunek\\]\n\n(100,35)(10,0) (108.9,11)(108.1,14.3)(107.2,17.6) (108.3,10)(107.2,14.3)(106.1,18.6) (107.6,9)(106.2,14.4)(105,19.4) (106.8,8)(105.4,14.2)(104,19.6) (106,7)(104.5,13.8)(103,19.8) (105.2,6.4)(103.5,13.6)(102,20) (104.2,5.9)(102.5,13.45)(101,20.2) (103.2,5.6)(101.5,13.3)(100,20.2) (102.2,5.4)(100.5,13.2)(99,20.2) (101.2,5.2)(99.5,13.1)(98,20.2) (100.2,5)(98.5,13)(97,20) (99.2,5)(97.5,13)(96,20) (98.2,5)(96.5,13)(95,20) (97,5.5)(95.5,13)(94,19.5) (95.7,5.5)(94.5,13)(93,19) (94.7,5.5)(93.5,12.7)(92,18.5) (93.7,6)(92.5,12)(91.2,17.6) (92.7,6.2)(91.5,12)(90.3,17) (91.6,6.8)(90.5,12)(89.5,16) (90.4,8)(89.7,11)(89,14)\n\n(2.5,4)[$X$]{}(21.8,14.9)[${\\alpha}$]{}(11,14)[$\\Delta_1$]{} (72.5,4)[$X_+$]{}(82,26)[${\\alpha}_+$]{}(29,14)[$\\Delta_{-1}$]{} (0,2)(30,2)(45,2)(0,2)(0,2)(6,24) (39,24)(6,24)(6,24)(39,24)(39,24)(45,2) (8,15)(4,6)(16,5)(8,15)(9.85,20.5)(17,20.5) (27,13)(26,20.5)(17,20.5)(27,13)(26.5,5)(16,5) (19,15)(17,6)(28,5)(19,15)(21.85,20.5)(29,20.5) (39,13)(38,20.5)(29,20.5)(39,13)(38.5,5)(28,5) (14.5,10.5)(23.5,17.5)(31.5,11)(31.75,11)[(1,-1)[1]{}]{}\n\n(70,2)(100,2)(115,2)(70,2)(70,2)(76,24) (91,24)(76,24)(76,24)(109,24)(106,24)(106,24) (109,24)(109,24)(115,2) (78,15)(74,6)(86,5)(78,15)(79.85,20.5)(87,20.5)\n\n(92.9,19.2)(91,20.5)(87,20.5) (92.6,6)(90,5)(86,5) (97,30)(96,35.5)(92.9,36.2) (97,30)(96.5,25)(92.6,23.4)\n\n(89,32)(87,23)(98,22)(89,32)(91.85,37.5)(99,37.5) (109,30)(108,37.5)(99,37.5)(109,30)(108.5,22)(98,22)\n\n(89,15)(87,6)(98,5)(89,15)(91.85,20.5)(99,20.5) (109,13)(108,20.5)(99,20.5)(109,13)(108.5,5)(98,5) (85,13)(83,35)(99,29)(98.75,29.1)[(3,-2)[1]{}]{}\n\n\\\nFormally, $X_+$ is the direct sum of two topological spaces $X_1$ and $X_2$ homeomorphic to $\\overline{X\\setminus \\Delta_{-1}}$ and $\\Delta_{-1}$ respectively: $${\\mathcal A}/I =A/C_0(X\\setminus \\Delta_{-1}) =C(X_1)\\cong C(\\Delta_{-1}),\\qquad\n {\\mathcal A}/I^{\\bot}=C(X_2) \\cong C(\\overline{X\\setminus \\Delta_{-1}}).$$ If we let $\\phi_1:X_1\\to \\Delta_{-1}$ and $\\phi_2:X_2\\to \\overline{X\\setminus \\Delta_{-1}}$ be the corresponding homeomorphisms then the mapping ${\\alpha}_+$ is defined on the set $$\\phi_1^{-1}(\\Delta_1)\\,\\cup\\, \\phi_2^{-1}(\\Delta_1)$$ by the formula $${\\alpha}_+(x)=\\begin{cases}\n\\phi_2^{-1}({\\alpha}(\\phi_1(x)), & x\\in \\phi_1^{-1}(\\Delta_1)\\\\\n\\phi_2^{-1}({\\alpha}(\\phi_2(x)), & x\\in \\phi_2^{-1}(\\Delta_1)\n\\end{cases} .$$\n\nInverse limits and spectral description\n---------------------------------------\n\nIt is a straightforward fact, cf. [", "@Leb-Odz Proposition 4.1], that the natural extension $({\\mathcal B},\\delta)$ (see Definition \\[naturalne rozszerzenie defn\\]) of the commutative system $({\\mathcal A},\\delta)$ is also commutative. ", "A description of the partial dynamical system generated by $({\\mathcal B},\\delta)$ was the purpose of [@maxid]. ", "The method elaborated there differs and has certain advantages over the general setting included in subsection \\[konstrukcja z uzuciem broni palnej\\] (the difference is discussed in the coming subsection). ", "Here, we slightly improve the main result of [@maxid] and clarify its relation to inverse limits.\\\nTo start with we recall the definition of inverse limits in the category of topological spaces.", "\n\n*An inverse limit* of an inverse sequence $$X_0\\stackrel{{\\alpha}_0}{\\longleftarrow} X_1\n\\stackrel{{\\alpha}_1}{\\longleftarrow}X_2 \\stackrel{{\\alpha}_2}{\\longleftarrow}...\\,$$ where $X_n$ are topological spaces and ${\\alpha}_{n}:X_{n+1}\\to X_n$ are continuous maps is the topological space of the form $$\\underleftarrow{\\,\\,\\lim\\,}\\{X_n,{\\alpha}_n\\}=\\{(x_0,x_1,...)\\subset \\prod_{n\\in {\\mathbb N}}X_n:\n{\\alpha}_n(x_{n+1})=x_n, \\, n \\in {\\mathbb N}\\}$$ considered with the product topology inherited from $\\prod_{n\\in {\\mathbb N}} X_n$. If additionally all the spaces and mappings coincide, that is if for every $n\\in{\\mathbb N}$ we have $X_n=X$ and ${\\alpha}_n={\\alpha}$, then we write $\\underleftarrow{\\,\\,\\lim\\,}\\{X_n,{\\alpha}_n\\}=\\underleftarrow{\\,\\,\\lim\\,}\\{X,{\\alpha}\\}$ and the formula $${\\widetilde \\alpha}(x_0,x_1,...)=({\\alpha}(x_0),x_0,x_1,...), \\qquad (x_0,x_1,...)\\in \\underleftarrow{\\,\\,\\lim\\,}\\{X,{\\alpha}\\},$$ defines a homeomorphism ${\\widetilde \\alpha}:\\underleftarrow{\\,\\,\\lim\\,}\\{X,{\\alpha}\\}\\to\n \\underleftarrow{\\,\\,\\lim\\,}\\{X,{\\alpha}\\}$. We say that ${\\widetilde \\alpha}$ is *induced* by ${\\alpha}:X\\to X$.\n\nNow, let $(X,{\\alpha})$ be the partial dynamical system generated by $({\\mathcal A},\\delta)$ and let $({\\widetilde X},{\\widetilde \\alpha})$ be the partial dynamical system generated by the natural extension $({\\mathcal B},\\delta)$ of $({\\mathcal A},\\delta)$. We extend our notation and for any $n\\in{\\mathbb N}$ we denote by $\\Delta_{n}={\\alpha}^{-n}(X)$ the domain of ${\\alpha}^{n}$ and by $\\Delta_{-n}={\\alpha}^{n}(\\Delta_{n})$ its image. ", "A similar “tilde-notation” will be used for ${\\widetilde \\alpha}$. Thus we have $${\\alpha}^n:\\Delta_n\\to \\Delta_{-n} \\qquad \\textrm{ and }\\qquad {\\widetilde \\alpha}^n:{\\widetilde \\Delta}_n \\to {\\widetilde \\Delta}_{n}.$$ Moreover, ${\\widetilde \\alpha}:{\\widetilde \\Delta}_{1}\\to {\\widetilde \\Delta}_{-1}$ is a homeomorphism and the complete transfer operator $\\delta_*:{\\mathcal B}\\to {\\mathcal B}$ for $({\\mathcal B},\\delta)$ is an endomorphism of the form $$\\label{transfer endomorphisms}\n\\delta_* (a)({\\widetilde x})=\\left\\{ \\begin{array}{ll} a({\\widetilde \\alpha}^{-1}({\\widetilde x}))& ,\\ \\ {\\widetilde x}\\in\n{\\widetilde \\Delta}_{-1}\\\\\n0 & ,\\ \\ {\\widetilde x}\\notin \\Delta_{-1} \\end{array}\\right. ,", "\\qquad a\\in {\\mathcal B}=C({\\widetilde X}).$$ In order to establish the relationship between the systems $(X,{\\alpha})$ and $({\\widetilde X},{\\widetilde \\alpha})$ we fix for a while an arbitrary point $\\widetilde{x}\\in {\\widetilde X}$.\\[rozumowanie\\] Then considering ${\\widetilde x}$ as a linear and multiplicative functional on ${\\mathcal B}$ we obtain a sequence of functionals $x_n:{\\mathcal A}\\rightarrow {\\mathbb C}\\,$, $n=0,1,...$, defined by the condition $$x_n (a)={\\widetilde x}(\\delta_*^n(a)),\\quad a\\in\n{\\mathcal A}.$$ Since the set $\\bigcup_{n=0}^\\infty\\delta_*^n ({\\mathcal A})$ is linearly dense in ${\\mathcal B}$, the sequence $(x_0,x_1,...)$ determines $\\widetilde{x}$ uniquely. ", "Multiplicativity of $\\delta_*$ on ${\\mathcal B}$ implies that all functionals ${\\widetilde x}_n$ are linear and multiplicative, hence $$\\textrm{ either }\\quad x_n \\in X \\quad\\textrm{ or }\\quad x_n\\equiv 0.$$ Summing it all up the mapping $$\\label{xi000'}\n{\\widetilde X}\\ni {\\widetilde x}\\longrightarrow (x_0, x_1,x_2, ...)\\in \\prod_{n=0}^\\infty X\\cup \\{0\\}$$ is injective and under the assumption that the set $\\Delta_{-1}$ is open (equivalently kernel of $\\delta:{\\mathcal A}\\to {\\mathcal A}$ is unital) the authors of [@maxid] proved the following\n\n\\[twierdzenie 1 2 czy tesz 2 1\\] If $\\Delta_{-1}$ is open, then mapping (\\[xi000’\\]) defines a homeomorphism under which we have the following identifications $$\\label{utzosamienie spektrumowe}\n{\\widetilde X}=\\bigcup_{N=0}^{\\infty}X_N\\cup\nX_\\infty$$ where $$X_N=\\{(x_0,x_1,...,x_N,0,...): x_n\\in \\Delta_n,\\, {\\alpha}(x_{n})=x_{n-1},\\,\\, n=1,...,N,\\,x_N\\notin\n\\Delta_{-1}\\},$$ $$X_\\infty=\\{(x_0,x_1,...): x_n\\in \\Delta_n,\\,\n{\\alpha}(x_{n})=x_{n-1},\\, \\,n\\geqslant 1\\},$$ $\\bigcup_{N=0}^{\\infty} X_N\\cup\nX_\\infty$ is equipped with the product topology inherited from $\\prod_{n=0}^\\infty X\\cup \\{0\\}$ (set $\\{0\\}$ is clopen in $X\\cup\\{0\\}$). ", "The partial homeomorphism ${\\widetilde \\alpha}$ is of the form $${\\widetilde \\alpha}(x_0,...)=({\\alpha}(x_0),x_0,...),\\qquad x\\in {\\widetilde \\Delta}_1,$$ where ${\\widetilde \\Delta}_{1}=\\{ (x_0,...) \\in {\\widetilde X}: x_0 \\in \\Delta_1\\}$ is the domain of ${\\widetilde \\alpha}$.\n\nWe notice that the subset $X_\\infty\\subset {\\widetilde X}$ is the inverse limit of the following inverse sequence $$X\\stackrel{{\\alpha}}{\\longleftarrow} \\Delta_1\n\\stackrel{{\\alpha}}{\\longleftarrow}\\Delta_2 \\stackrel{{\\alpha}}{\\longleftarrow}...\\,.$$ Elements of $X_N$ may considered as finite anty-orbits of ${\\alpha}$ which cannot be prolonged (because $x_N\\notin \\Delta_{-1}$).\\\nIn view of Definition \\[naturalne rozszerzenie defn\\] and subsection \\[uzwarcenie dopelnienia obrazu\\] one can generalize Theorem \\[twierdzenie 1 2 czy tesz 2 1\\] to get a result without the assumption of openness of $\\Delta_{-1}$. Roughly speaking, it suffices to replace (in the description of sets $X_N$) the condition $x_N\\notin \\Delta_{-1}$ with a weaker one $x_N\\in \\overline{X\\setminus \\Delta}_{-1}$. More formally one needs to take the closure of ${\\widetilde X}$ in $\\prod_{n=0}^\\infty X\\cup \\{0\\}$. We shall express this remark in a definition and a theorem.", "\n\n\\[natrualne rozszerzenie\\] Let $(X,{\\alpha})$ be an arbitrary partial dynamical system, that is ${\\alpha}:\\Delta_1\\to X$ is a continuous mapping and $\\Delta_{-1}$ is clopen subset of a compact space $X$. By a *natural extension* of $(X,{\\alpha})$ we shall mean the partial dynamical system $({\\widetilde X},{\\widetilde \\alpha})$ where $${\\widetilde X}=\\bigcup_{N=0}^{\\infty}X_N\\cup\nX_\\infty,$$ $$X_N=\\{(x_0,x_1,...,x_N,0,...): x_n\\in \\Delta_n,\\, {\\alpha}(x_{n})=x_{n-1},\\,\\, n=1,...,N,\\,x_N\\in\n\\overline{X\\setminus \\Delta}_{-1}\\},$$ $$X_\\infty=\\{(x_0,x_1,...): x_n\\in \\Delta_n,\\,\n{\\alpha}(x_{n})=x_{n-1},\\, \\,n\\geqslant 1\\},$$ is equipped with the product topology $\\prod_{n=0}^\\infty X\\cup \\{0\\}$, set $\\{0\\}$ is clopen and $0$ is just an abstract point. ", "Mapping ${\\widetilde \\alpha}:{\\widetilde \\Delta}_{1}\\to {\\widetilde \\Delta}_{-1}$ is a homeomorphism given by the formula $$\\label{tal odwzorowanie}\n{\\widetilde \\alpha}(x_0,...)=({\\alpha}(x_0),x_0,...),\\qquad x\\in {\\widetilde \\Delta}_1,$$ where ${\\widetilde \\Delta}_{1}=\\{ (x_0,...) \\in {\\widetilde X}: x_0 \\in \\Delta_1\\}$ and ${\\widetilde \\Delta}_{-1}=\\{ (x_0,x_1,...)\n\\in {\\widetilde X}: x_1\\in \\Delta_1 \\}$.\n\nThe notion of natural extension for topological and for $C^*$-dynamical systems agrees in the following sense.", "\n\n\\[tweirdzenie 5.4\\] The natural extension $({\\widetilde X},{\\widetilde \\alpha})$ of a partial dynamical system $(X,{\\alpha})$ is the partial dynamical system generated by the natural extension $({\\mathcal B},\\delta)$ of the $C^*$-dynamical system $({\\mathcal A},\\delta)$ that generates $(X,{\\alpha})$.\n\nIt is a corollary to Definition \\[naturalne rozszerzenie defn\\], subsection \\[uzwarcenie dopelnienia obrazu\\] and Theorem \\[twierdzenie 1 2 czy tesz 2 1\\].", "\n\nLet us now consider the classical case, that is when mapping ${\\alpha}:X\\to X$ is described on the whole space $X$. Then the natural extension $({\\widetilde X},{\\widetilde \\alpha})$ has the following structure:\n\n- the system $(X_\\infty,{\\widetilde \\alpha})$ coincide with the inverse limit system $(\\underleftarrow{\\,\\,\\lim\\,}\\{X,{\\alpha}\\}, {\\widetilde \\alpha})$,\n\n- for every $N\\in {\\mathbb N}$ the set $X_N$ is homeomorphic to $\\overline{X\\setminus \\Delta}_{-1}$ and ${\\widetilde \\alpha}$ maps homeomorphically $X_N$ onto $X_{N+1}$: $$X_0\\stackrel{{\\widetilde \\alpha}}{\\longrightarrow} X_1\n\\stackrel{{\\widetilde \\alpha}}{\\longrightarrow} X_2 \\stackrel{{\\widetilde \\alpha}}{\\longrightarrow}\\,...\\,\\,\\, (X_\\infty,{\\widetilde \\alpha})=\n(\\underleftarrow{\\,\\,\\lim\\,}\\{X,{\\alpha}\\},{\\widetilde \\alpha}) .$$ In particular the system $({\\widetilde X},{\\widetilde \\alpha})$ is not a direct generalization of the inverse limit system $(\\underleftarrow{\\,\\,\\lim\\,}\\{X,{\\alpha}\\}, {\\widetilde \\alpha})$, it is rather an “improvement” of it, as it contains more information concerning the initial system $(X,{\\alpha})$.\n\n\\[przyklad z odwzorowaniem stalym\\] Let ${\\alpha}:X\\to X$ be a constant mapping with the only value being a non-isolated point $p\\in X$.\n\n(115,47)(3,-2) (8,33)(7.8,43)(13,42.8) (8,33)(9,22.3)(17,22.3) (25.3,27.3)(24.5,22)(17,22.3) (25.3,27.3)(25,31)(22,33) (17.6,40.1)(19,36)(22,33) (17.6,40.1)(16.5,42.5)(13,42.8) (15.6,30.4) (8.1,36)(10,28)(13,29.8)(12.9,29.6)[(3,1)[1]{}]{} (10.1,41.2)(14,39)(14.9,32.9)(14.2,35)[(1,-3)[1]{}]{} (24,31.2)(26,35)(21.9,35.6)(21.9,35.6)(18,35.2)(16.8,32)(17.4,33.2)[(-1,-2)[1]{}]{} (23.4,24)(22.4,29)(18,29.3)(18.2,29.3)[(-3,1)[1]{}]{} (19.2,22.4)(13.7,23)(14.8,27.8)(14.2,26)[(1,3)[1]{}]{} (88,33)(87.8,43)(93,42.8) (88,33)(89,22.3)(97,22.3) (105.3,27.3)(104.5,22)(97,22.3) (105.3,27.3)(105,31)(102,33) (97.6,40.1)(99,36)(102,33) (97.6,40.1)(96.5,42.5)(93,42.8) (110.5,30.2) (98,39.4)[(3,-2)[11.2]{}]{} (91,37)[(3,-1)[17.7]{}]{} (90.4,30.2)[(1,0)[18.1]{}]{} (96,25.2)[(3,1)[12.7]{}]{} (103.8,23.6)[(1,1)[5.4]{}]{} (111.2,31.4)(115,35.3)(117.4,31.2) (117.1,28.2)(118.2,29.8)(117.4,31.2) (117.1,28.2)(114.2,26.2)(112.2,28.4)(112.2,28.4)[(-1,1)[1]{}]{} (8,5)(7.8,15)(13,14.8) (8,5)(9,-5.7)(17,-5.7) (23.6,-3.6)(22.5,-5.4)(17,-5.7) (17.6,12.1)(18.8,8.9)(20.4,7.2) (17.6,12.1)(16.5,14.5)(13,14.8) (20.5,5)(20.3,15)(25.5,14.8) (20.5,5)(21.5,-5.7)(29.5,-5.7) (32.7,-5.3)(32.5,-5.7)(29.5,-5.7) (28.6,13.4)(28,14.6)(25.5,14.8) (27,5)(26.8,15)(32,14.8) (27,5)(28,-5.7)(36,-5.7) (38.4,-5.45)(38,-5.7)(36,-5.7) (34.4,14.2)(34.1,14.6)(32,14.8) (32,5)(31.8,15)(37,14.8) (32,5)(33,-5.7)(41,-5.7) (41.6,-5.5)(41,-5.7)(41,-5.7) (38.1,14.4)(38,14.6)(37,14.8) (35,5)(34.8,15)(40,14.8) (35,5)(36,-5.7)(44,-5.7) (44.5,-5.6)(44,-5.7)(44,-5.7) (40.8,14.7)(40.9,14.75)(40,14.8) (37,5)(36.8,15)(42,14.8) (37,5)(38,-5.7)(46,-5.7) (54.3,-0.7)(53.5,-6)(46,-5.7) (54.3,-0.7)(54,3)(51,5) (46.6,12.1)(48,8)(51,5) (46.6,12.1)(45.5,14.5)(42,14.8) (14.8,-4.8)[(1,0)[8.8]{}]{}(11.2,-0.5)[(1,0)[9.3]{}]{} (10.2,4)[(1,0)[9]{}]{}(9.6,9.4)[(1,0)[9.1]{}]{}(12.4,12.6)[(1,0)[9]{}]{} (26.67,-4.4)[(1,0)[3]{}]{}(23.3,-0.3)[(1,0)[3.8]{}]{}(22.2,4)[(1,0)[3.6]{}]{} (21.8,9)[(1,0)[3.6]{}]{}(23.8,12.7)[(1,0)[3.2]{}]{} (32.4,-4)[(1,0)[2.6]{}]{}(29.3,-0.3)[(1,0)[3]{}]{}(28.2,4)[(1,0)[3]{}]{} (27.9,9)[(1,0)[3]{}]{}(29.8,12.7)[(1,0)[2.8]{}]{} (36.3,-3.8)[(1,0)[2]{}]{}(33.5,-0.2)[(1,0)[2.2]{}]{}(32.6,4)[(1,0)[2.2]{}]{} (32.5,9)[(1,0)[2.2]{}]{}(34,13)[(1,0)[2]{}]{} (39.2,-3.8)[(1,0)[1.2]{}]{}(36.5,-0.2)[(1,0)[1.4]{}]{}(35.6,4)[(1,0)[1.4]{}]{} (35.8,8.8)[(1,0)[1.4]{}]{}(37.2,12.8)[(1,0)[1.2]{}]{} (62,4.2)(65.8,8.1)(68.2,4) (67.9,1)(69,2.6)(68.2,4) (67.9,1)(65,-1)(63,1.2)(63,1.2)[(-1,1)[1]{}]{}\n\n(46.6,13)(53.3,8.5)(60,4) (59.3,4.5)[(3,-2)[1]{}]{} (39.6,11.4)(49.5,6.9)(59.4,3.4) (59,3.6)[(3,-1)[1]{}]{} (41.4,3)(50.7,2.9)(59.6,2.8) (59.1,2.8)[(1,0)[1]{}]{} (43.4,-3)(51.7,-0.55)(59.2,1.9) (59,1.8)[(3,1)[1.1]{}]{} (53.4,-3.2)(56.5,-1.1)(59.6,1)(59.6,0.8)[(1,1)[1]{}]{} (61.3,3) (94,4.2)(97.8,8.1)(100.2,4) (99.9,1)(101,2.6)(100.2,4) (99.9,1)(97,-1)(95,1.2)(95,1.2)[(-1,1)[1]{}]{} (93.3,3) (0,42)[(a)]{} (80,42)[(b)]{} (0,13)[(c)]{} (80,13)[(d)]{} (23,42)[$(X,{\\alpha})$]{}(102,42)[$(X_+,{\\alpha}_+)$]{} (52,13)[$({\\widetilde X},{\\widetilde \\alpha})$]{}(89,13)[$\\underleftarrow{\\,\\,\\lim\\,}\\{X,{\\alpha}\\}, {\\widetilde \\alpha})$]{}\n\n\\\nThen the system $(X_+,{\\alpha}_+)$ from paragraph \\[uzwarcenie dopelnienia obrazu\\] is obtained from $(X,{\\alpha})$ by “cutting out” the point $\\{p\\}$ and “filling the hole that arose during this operation”. ", "Space ${\\widetilde X}$ is the countable number of copies of $X$ compactified with one point $X_\\infty =\\{p\\}$, whereas the system $(\\underleftarrow{\\,\\,\\lim\\,}\\{X,{\\alpha}\\}, {\\widetilde \\alpha})$ degenerates to a single point, see Figure \\[przyklad z odwzorowaniem stalym1\\].", "\n\nComparison of the spectral and the algebraic approach\n-----------------------------------------------------\n\nDescription of the system $({\\widetilde X},{\\widetilde \\alpha})$ presented in Theorem \\[twierdzenie 1 2 czy tesz 2 1\\] and description of $({\\mathcal B},\\delta)$ presented in Theorem \\[granica prosta zepsute twierdzenie\\] (hence also of $({\\widetilde X},{\\widetilde \\alpha})$ in the commutative case) are obtained by different methods. ", "As the relationship between those construction is not obvious and might be interesting we include a short discussion on the subject.\\\nWe assume here that $\\Delta_{-1}$ is open (equivalently $\\overline{X\\setminus\\Delta}_{-1}$ is closed). ", "This assumption is not necessary but it simplifies notation. ", "Replacing every set of the form $K\\setminus\\Delta_{-1}$ with a bigger one of the form $K\\cap \\overline{X\\setminus\\Delta}_{-1}$ everything what follows remains true in general.\\\nWe recall that algebra ${\\mathcal B}\\cong C({\\widetilde X})$ is the direct limit of the direct sequence with bonding homomorphisms $\\delta_n$ that are unital monomorphisms, see subsection \\[konstrukcja z uzuciem broni palnej\\]. ", "Thus the space ${\\widetilde X}=\\underleftarrow{\\lim\\,\\,}\\{{\\widetilde X}_n,{\\alpha}_n\\} $ is the inverse limit of the inverse limit $$\\label{ciag odwrotny dziwny}\n{\\widetilde X}_0\\stackrel{{\\alpha}_0}{\\longleftarrow} {\\widetilde X}_1\n\\stackrel{{\\alpha}_1}{\\longleftarrow}{\\widetilde X}_2 \\stackrel{{\\alpha}_2}{\\longleftarrow}...\\,$$ where ${\\mathcal B}_n=C({\\widetilde X}_n)$ and ${\\alpha}_n:{\\widetilde X}_{n+1}\\to{\\widetilde X}_n$ are surjections such that, ¿e $\\delta_n(a)(x)=a({\\alpha}_n(x))$, $a\\in {\\mathcal B}_n$. From definition of ${\\mathcal B}_n$ we have ${\\widetilde X}_n$ is a direct sum of clopen subsets of $X$. Namely, using the symbol “$\\sqcup$” to denote the disjoint union we get $${\\widetilde X}_n =(X\\setminus \\Delta_{-1} )\\sqcup (\\Delta_1\\setminus\\Delta_{-1}) \\sqcup\\,\\, \\dots\\,\\, \\sqcup\n(\\Delta_{n-1}\\setminus \\Delta_{-1}) \\sqcup \\Delta_n.$$ The inverse sequence maybe rewritten in the form of “triangular” diagram illustrating also the action of the mappings ${\\alpha}_n:{\\widetilde X}_{n+1}\\to {\\widetilde X}_n$: $$\\begin{xy}\n\\xymatrix@C=2pt@R=24pt{\n {\\widetilde X}_0 & \\qquad =\\qquad & X\n \\\\\n {\\widetilde X}_1 \\ar[u]_{{\\alpha}_1} & \\qquad =\\qquad & X\\setminus\\Delta_{-1} \\ar[u]_{id}& \\sqcup & \\Delta_1 \\ar[ull]_{{\\alpha}}\n \\\\\n {\\widetilde X}_2 \\ar[u]_{{\\alpha}_2} & \\qquad =\\qquad & X\\setminus\\Delta_{-1} \\ar[u]_{id}& \\sqcup & \\Delta_1\\setminus\\Delta_1 \\ar[u]_{id} & \\sqcup & \\Delta_2 \\ar[ull]_{{\\alpha}}\n \\\\\n {\\widetilde X}_3 \\ar[u]_{{\\alpha}_3} & \\qquad =\\qquad & X\\setminus\\Delta_{-1} \\ar[u]_{id}& \\sqcup & \\Delta_1\\setminus\\Delta_1 \\ar[u]_{id} & \\sqcup & \\Delta_2\\setminus \\Delta_{-1} \\ar[u]_{id}& \\sqcup & \\Delta_3 \\ar[ull]_{{\\alpha}}\n \\\\\n \\ar@{.}[u] & & \\ar@{.}[u]& & \\ar@{.}[u]& & \\ar@{.}[u]& & \\ar@{.}[u] & \\qquad &\\ar@{.}[ull]\n }\n \\end{xy}$$ Thus, if ${\\widetilde x}=(x_0,x_1,x_2,...)$ is an element of the inverse limit ${\\widetilde X}=\\underleftarrow{\\,\\,\\lim\\,}\\{{\\widetilde X}_n,{\\alpha}_n\\}$, then we have two alternatives: either every coordinate of ${\\widetilde x}$ “lies on the diagonal” of the above diagram, that is ${\\widetilde x}$ belongs to the set of the form $$X_\\infty=\\{(x_0,x_1,...)\\in X^{\\mathbb N}: x_n\\in\\Delta_n,\\,\\, {\\alpha}(x_n)=x_{n-1},\\,\\, n>0\\},$$ or only $N$ first coordinates of ${\\widetilde x}$ “lies on the diagonal” and next ones “slide off the diagonal and stays out of it forever”, that is ${\\widetilde x}$ belongs to the set of the form $$X_N=\\{(x_0,x_1,...,x_N,0,0,...): x_n\\in\\Delta_n,\\,\\, {\\alpha}(x_n)=x_{n-1},\\,\\, n=1,...,N,\\, x_N \\notin \\Delta_{-1}\\},$$ where we replaced the tail of $x_N$’s with tail of zeros.\\\nIt is not hard to see that the above considerations lead us to identification of the inverse limit ${\\widetilde X}=\\underleftarrow{\\,\\,\\lim\\,}\\{{\\widetilde X}_n,{\\alpha}_n\\} $ with the space $\\bigcup_{n\\in {\\mathbb N}} X_n\\cup X_\\infty$ from Theorem \\[twierdzenie 1 2 czy tesz 2 1\\]. ", "It is a bit harder to realize the relationship between formula and inverse sequence of homomorphisms $s_{n+1}: {\\mathcal B}_{n+1}\\to\n{\\mathcal B}_{n}$. In fact, a homomorphism $s_{n+1}$ induces a continuous mapping defined on the clopen subset of ${\\widetilde X}_n$ with values in ${\\widetilde X}_{n+1}$, given by the following diagram: $$\\begin{xy}\n\\xymatrix@C=2pt@R=24pt{\n {\\widetilde X}_n & \\quad \\supset \\quad &\n \\Delta_1\\setminus\\Delta_{-1} \\ar[drr]^{id} & \\sqcup &\n \\Delta_2\\setminus\\Delta_{-1} \\ar[drr]^{id} & \\sqcup & ... & \\sqcup & \\,\\,\\,\\,\\Delta_{n+1}\\ar[drr]^{id}\n \\\\\n {\\widetilde X}_{n+1} & \\quad =\\quad & X\\setminus\\Delta_{-1} & \\sqcup & \\Delta_1\\setminus\\Delta_{-1} &\n \\sqcup & \\Delta_2\\setminus\\Delta_{-1} & \\sqcup &\\,\\,\\, \\,\\,...\\,\\, \\,\\,\\,& \\sqcup &\n \\,\\,\\,\\,\\Delta_{n+1} \\, \\,\\,\\,\n }\n \\end{xy}$$ Then one needs to check that the direct sequence of the above diagrams defines a mapping on a clopen subset of the inverse limit of the inverse sequence .", "\n\nThis “tangle” of direct and inverse sequences which arise in the general approach proves the usefulness of the spectral description from Theorems \\[twierdzenie 1 2 czy tesz 2 1\\], \\[tweirdzenie 5.4\\] which simply presents the system $({\\widetilde X},{\\widetilde \\alpha})$ as a shift on a certain space of sequences.", "\n\n[99]{}\n\nJ. E. Anderson, I. F. Putnam, “Topological invariants for substitution tilings and their associated $C^*$-algebras”, *Ergod. ", "Th. ", "$\\&$ Dynam. ", "Sys.*, **", "18**, (1998), pp.", " 509–537.", "\n\nA.B. Antonevich, V.I. Bakhtin, A.V. Lebedev, “Crossed product of $C^*$-algebra by an endomorphism, coefficient algebras and transfer operators”, arXiv:0 math.", "OA/0502415 v1 19 Feb 2005.", "\n\nV.I. Bakhtin, A.V. Lebedev, “When a $C^*$-algebra is a coefficient algebra for a given endomorphism”, arXiv:0 math.", "OA/0502414 v1 19 Feb 2005.", "\n\nN. Bourbaki *Théories spectrales*, Herman 1967.", "\n\nJ. Cuntz and W. Krieger, “A Class of C\\*-algebras and Topological Markov Chains”, Inventiones Math.", " [**56**]{}, (1980), p. 251–268\n\nR. Exel, [*Circle actions on $C^*$-algebras, partial automorhisms and generalized Pimsner-Voiculescu exact sequence*]{}, J. Funct.", " Analysis [**122**]{} (1994), p. 361–401.", "\n\nR. Exel, “A new look at the crossed-product of a $C^*$-algebra by an endomorphism”, Ergodic Theory Dynam. ", "Systems, Vol 23, (2003), pp. ", "1733-1750,\n\nKadison R.V., Ringrose J.R., *Fundamentals of the theory of operator algebras. ", "Vol.2. ", "Advanced theory*, Academic Press, 1986.", "\n\nB.K. Kwaśniewski, “Covariance algebra of a partial dynamical system”, CEJM, 2005, V.3, No 4, pp. ", "718-765, arXiv:0 math.", "OA/0407352\n\nB. K. Kwaśniewski, “Inverse limit systems associated with $F_2^n$ zero schwarzian unimodal mappings”, Bull. ", "Soc. ", "Sci. ", "Lett. ", "Lodz, Vol 55 (2005), pp. ", "83-109, arXiv:0 math.", "DS/0502584\n\nB.K. Kwaśniewski: “On transfer operators for $C^*$-dynamical systems”, preprint arXiv:0 math.", "OA/0703798 v1 27 Mar 2007\n\nB.K. Kwaśniewski and A.V. Lebedev: “Maximal ideal space of a commutative coefficient algebra”, preprint arXiv:0 math.", "OA/0311416\n\nA.V. Lebedev, A. Odzijewicz ”Extensions of $C^*$-algebras by partial isometries”, Matemat.", " Sbornik, 2004. ", "V. 195, No 7, pp.", " 37–70 (Russian).", "\n\nG. J. Murphy: *$C^*$-algebras and operator theory*, Academic Press, 1990.", "\n\nG.J. Murphy, “Crossed products of C\\*-algebras by endomorphisms”, Integral Equations Oper. ", "Theory [**24**]{}, (1996), p. 298–319.", "\n\nS.Nadler, *Continuum Theory*, Dekker, New York, 1992.", "\n\nW.L. Paschke, “The crossed product of a $C^*$-algebra by an endomorphism”, Proceedings of the AMS, [**80**]{}, No 1, (1980), p. 113–118.", "\n\nG. K. Pedersen, *$C^*$-algebras and their automorphism groups*, Academic Press, London, 1979.", "\n\nS. Sakai, *$C^*$-algebras and $W^*$-algebras*, Springer-Verlag, New-York, (1971).", "\n\nP.J. Stacey, “Crossed products of $C^*$-algebras by $^*$-endomorphisms”, J. Austral.", " Math.", " Soc. ", "Ser.", " A [**54**]{}, (1993), p. 204–212.", "\n\nR. F. Williams, ”One-dimensional nonwandering sets”, *Topology*, **6**, (1967), pp.", " 473–487. ", "R. F. Williams, ”Classification of 1-dimensional attractors”, *Proc. ", "Sym. ", "Pure Math. ", "AMS*, **14**, (1970), pp.", " 341–361.", "\n" ]
{ "pile_set_name": "ArXiv" }
[ 0, 0.010638297872340425, 0.006747638326585695, 0, 0.017094017094017096, 0, 0.024390243902439025, 0.0027247956403269754, 0, 0, 0.014492753623188406, 0, 0.009174311926605505, 0.02, 0.013422818791946308, 0, 0, 0.008333333333333333, 0, 0.006578947368421052, 0, 0.010869565217391304, 0, 0, 0.007751937984496124, 0, 0, 0, 0.002881844380403458, 0.005555555555555556, 0.02247191011235955, 0.007462686567164179, 0, 0.00936768149882904, 0.006024096385542169, 0, 0, 0.0063006300630063005, 0.00625, 0.0035026269702276708, 0.004477611940298508, 0, 0.0028169014084507044, 0, 0, 0.009111617312072893, 0.002336448598130841, 0, 0, 0, 0, 0, 0.001364256480218281, 0.005412719891745603, 0.003395585738539898, 0, 0, 0.003355704697986577, 0, 0, 0.04411764705882353, 0.01904761904761905, 0.006734006734006734, 0, 0.0013157894736842105, 0.002577319587628866, 0.0019157088122605363, 0, 0.002026342451874367, 0, 0, 0.011278195488721804, 0.0018501387604070306, 0, 0, 0, 0.0008722197993894462, 0, 0.003246753246753247, 0, 0.001049317943336831, 0, 0, 0.0007818608287724785, 0, 0, 0.0023584905660377358, 0.0017921146953405018, 0, 0.007547169811320755, 0.006688963210702341, 0, 0.004032258064516129, 0.002535496957403651, 0.0007107320540156361, 0, 0.004206098843322818, 0, 0, 0.0015313935681470138, 0, 0, 0, 0.04, 0.007776049766718507, 0, 0.003432494279176201, 0.007881773399014778, 0.002188183807439825, 0.0013623978201634877, 0, 0.005504587155963303, 0, 0.04, 0.004767580452920143, 0.018867924528301886, 0, 0, 0.005747126436781609, 0.008333333333333333, 0.008849557522123894, 0, 0.1111111111111111, 0.005506607929515419, 0, 0.0036900369003690036, 0, 0.0002834467120181406, 0.010101010101010102, 0.008928571428571428, 0.0048543689320388345, 0.005154639175257732, 0.003814367450731087, 0.0014245014245014246, 0.0014367816091954023, 0.007556675062972292, 0.0040650406504065045, 0.002638522427440633, 0.0019157088122605363, 0.006521739130434782, 0.0008802816901408451, 0, 0.0022371364653243847, 0, 0, 0, 0.0054533060668029995, 0.004012036108324975, 0.0031545741324921135, 0.014814814814814815, 0, 0, 0, 0, 0, 0.0125, 0, 0, 0, 0.02040816326530612, 0.0297029702970297, 0.012269938650306749, 0, 0.018518518518518517, 0, 0.01098901098901099, 0, 0.02564102564102564, 0.020202020202020204, 0, 0.016666666666666666, 0, 0, 0.16666666666666666, 0.04, 0, 0.009523809523809525, 0.006944444444444444, 0, 0.0625, 0, 0, 0.02666666666666667, 0.010752688172043012, 0, 0.03636363636363636, 0.014492753623188406, 0.021052631578947368, 0.012048192771084338, 0.011627906976744186, 0, 0, 0, 0, 0.011764705882352941, 0, 0.014492753623188406, 0, 0, 0, 0, 0 ]
0.006726
5
[ { "analysis_explanation": null, "end": 752, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 728 }, { "analysis_explanation": null, "end": 689, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 677 }, { "analysis_explanation": null, "end": 2488, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2479 }, { "analysis_explanation": null, "end": 2626, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2617 }, { "analysis_explanation": null, "end": 3883, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3852 }, { "analysis_explanation": null, "end": 5830, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5823 }, { "analysis_explanation": null, "end": 5867, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5854 }, { "analysis_explanation": null, "end": 6263, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6254 }, { "analysis_explanation": null, "end": 7737, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7734 }, { "analysis_explanation": null, "end": 8109, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8106 }, { "analysis_explanation": null, "end": 8513, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8510 }, { "analysis_explanation": null, "end": 8752, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8749 }, { "analysis_explanation": null, "end": 8995, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8992 }, { "analysis_explanation": null, "end": 9493, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9490 }, { "analysis_explanation": null, "end": 9763, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9750 }, { "analysis_explanation": null, "end": 9982, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9979 }, { "analysis_explanation": null, "end": 10020, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10015 }, { "analysis_explanation": null, "end": 10451, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10446 }, { "analysis_explanation": null, "end": 10588, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10562 }, { "analysis_explanation": null, "end": 11183, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11178 }, { "analysis_explanation": null, "end": 11413, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11410 }, { "analysis_explanation": null, "end": 11434, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11431 }, { "analysis_explanation": null, "end": 11583, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11567 }, { "analysis_explanation": null, "end": 11859, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11856 }, { "analysis_explanation": null, "end": 12293, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12289 }, { "analysis_explanation": null, "end": 12631, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12618 }, { "analysis_explanation": null, "end": 12691, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12685 }, { "analysis_explanation": null, "end": 12710, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12693 }, { "analysis_explanation": null, "end": 13071, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13054 }, { "analysis_explanation": null, "end": 13098, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13092 }, { "analysis_explanation": null, "end": 13677, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13672 }, { "analysis_explanation": null, "end": 13941, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13925 }, { "analysis_explanation": null, "end": 14108, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14095 }, { "analysis_explanation": null, "end": 14720, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14697 }, { "analysis_explanation": null, "end": 14778, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14758 }, { "analysis_explanation": null, "end": 14896, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14876 }, { "analysis_explanation": null, "end": 14977, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14974 }, { "analysis_explanation": null, "end": 15464, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15461 }, { "analysis_explanation": null, "end": 15610, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15607 }, { "analysis_explanation": null, "end": 15676, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15663 }, { "analysis_explanation": null, "end": 15820, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15817 }, { "analysis_explanation": null, "end": 16997, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16972 }, { "analysis_explanation": null, "end": 17035, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17032 }, { "analysis_explanation": null, "end": 17430, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17404 }, { "analysis_explanation": null, "end": 17667, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17647 }, { "analysis_explanation": null, "end": 17738, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17725 }, { "analysis_explanation": null, "end": 17788, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17771 }, { "analysis_explanation": null, "end": 18189, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18161 }, { "analysis_explanation": null, "end": 18662, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18638 }, { "analysis_explanation": null, "end": 18731, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18709 }, { "analysis_explanation": null, "end": 19054, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19051 }, { "analysis_explanation": null, "end": 19760, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19738 }, { "analysis_explanation": null, "end": 20201, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20192 }, { "analysis_explanation": null, "end": 20360, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20351 }, { "analysis_explanation": null, "end": 20753, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20724 }, { "analysis_explanation": null, "end": 22007, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22003 }, { "analysis_explanation": null, "end": 22070, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22061 }, { "analysis_explanation": null, "end": 22405, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22396 }, { "analysis_explanation": null, "end": 22586, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22577 }, { "analysis_explanation": null, "end": 23364, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23355 }, { "analysis_explanation": null, "end": 23446, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23443 }, { "analysis_explanation": null, "end": 23544, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23515 }, { "analysis_explanation": null, "end": 23678, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23669 }, { "analysis_explanation": null, "end": 23762, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23741 }, { "analysis_explanation": null, "end": 23857, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23848 }, { "analysis_explanation": null, "end": 23915, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23912 }, { "analysis_explanation": null, "end": 24082, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24061 }, { "analysis_explanation": null, "end": 24155, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24145 }, { "analysis_explanation": null, "end": 24412, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24409 }, { "analysis_explanation": null, "end": 24554, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24551 }, { "analysis_explanation": null, "end": 24615, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24612 }, { "analysis_explanation": null, "end": 25745, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25732 }, { "analysis_explanation": null, "end": 26039, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26033 }, { "analysis_explanation": null, "end": 26143, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26117 }, { "analysis_explanation": null, "end": 26266, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26257 }, { "analysis_explanation": null, "end": 26407, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26380 }, { "analysis_explanation": null, "end": 26434, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26424 }, { "analysis_explanation": null, "end": 26680, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26674 }, { "analysis_explanation": null, "end": 27062, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27058 }, { "analysis_explanation": null, "end": 27133, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27128 }, { "analysis_explanation": null, "end": 27416, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27382 }, { "analysis_explanation": null, "end": 27738, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27714 }, { "analysis_explanation": null, "end": 27901, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27882 }, { "analysis_explanation": null, "end": 27946, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27919 }, { "analysis_explanation": null, "end": 28016, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27996 }, { "analysis_explanation": null, "end": 28871, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28852 }, { "analysis_explanation": null, "end": 29001, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28985 }, { "analysis_explanation": null, "end": 29327, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29313 }, { "analysis_explanation": null, "end": 29618, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29600 }, { "analysis_explanation": null, "end": 30467, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30440 }, { "analysis_explanation": null, "end": 30527, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30507 }, { "analysis_explanation": null, "end": 30716, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30708 }, { "analysis_explanation": null, "end": 30894, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30891 }, { "analysis_explanation": null, "end": 31882, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31861 }, { "analysis_explanation": null, "end": 32087, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32080 }, { "analysis_explanation": null, "end": 32530, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32523 }, { "analysis_explanation": null, "end": 32978, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32972 }, { "analysis_explanation": null, "end": 34192, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34183 }, { "analysis_explanation": null, "end": 34218, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34205 }, { "analysis_explanation": null, "end": 34474, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34464 }, { "analysis_explanation": null, "end": 34592, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34587 }, { "analysis_explanation": null, "end": 34835, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34832 }, { "analysis_explanation": null, "end": 35450, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35447 }, { "analysis_explanation": null, "end": 35841, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35838 }, { "analysis_explanation": null, "end": 35975, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35963 }, { "analysis_explanation": null, "end": 36124, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36111 }, { "analysis_explanation": null, "end": 36210, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36199 }, { "analysis_explanation": null, "end": 36778, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36774 }, { "analysis_explanation": null, "end": 36880, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36875 }, { "analysis_explanation": null, "end": 36909, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36904 }, { "analysis_explanation": null, "end": 37012, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37009 }, { "analysis_explanation": null, "end": 37174, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37170 }, { "analysis_explanation": null, "end": 37569, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37561 }, { "analysis_explanation": null, "end": 37593, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37587 }, { "analysis_explanation": null, "end": 37608, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37598 }, { "analysis_explanation": null, "end": 37639, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37633 }, { "analysis_explanation": null, "end": 37669, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37663 }, { "analysis_explanation": null, "end": 38334, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38331 }, { "analysis_explanation": null, "end": 38507, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38486 }, { "analysis_explanation": null, "end": 38593, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38559 }, { "analysis_explanation": null, "end": 38902, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38891 }, { "analysis_explanation": null, "end": 38913, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38903 }, { "analysis_explanation": null, "end": 39073, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39062 }, { "analysis_explanation": null, "end": 39238, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39197 }, { "analysis_explanation": null, "end": 39355, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39349 }, { "analysis_explanation": null, "end": 39441, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39435 }, { "analysis_explanation": null, "end": 39456, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39446 }, { "analysis_explanation": null, "end": 39647, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39639 }, { "analysis_explanation": null, "end": 39689, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39686 }, { "analysis_explanation": null, "end": 39908, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39899 }, { "analysis_explanation": null, "end": 39923, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39909 }, { "analysis_explanation": null, "end": 40314, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40305 }, { "analysis_explanation": null, "end": 40908, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40892 }, { "analysis_explanation": null, "end": 41449, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41433 }, { "analysis_explanation": null, "end": 41759, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41756 }, { "analysis_explanation": null, "end": 41980, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41977 }, { "analysis_explanation": null, "end": 42349, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42343 }, { "analysis_explanation": null, "end": 42370, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42364 }, { "analysis_explanation": null, "end": 42559, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42553 }, { "analysis_explanation": null, "end": 42772, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42763 }, { "analysis_explanation": null, "end": 44071, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44057 }, { "analysis_explanation": null, "end": 44092, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44080 }, { "analysis_explanation": null, "end": 44189, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44186 }, { "analysis_explanation": null, "end": 44395, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44361 }, { "analysis_explanation": null, "end": 44432, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44404 }, { "analysis_explanation": null, "end": 44607, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44604 }, { "analysis_explanation": null, "end": 44761, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44758 }, { "analysis_explanation": null, "end": 45273, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45260 }, { "analysis_explanation": null, "end": 45638, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45622 }, { "analysis_explanation": null, "end": 45816, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45810 }, { "analysis_explanation": null, "end": 45977, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45967 }, { "analysis_explanation": null, "end": 46065, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46031 }, { "analysis_explanation": null, "end": 46088, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46082 }, { "analysis_explanation": null, "end": 46099, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46093 }, { "analysis_explanation": null, "end": 46132, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46126 }, { "analysis_explanation": null, "end": 46482, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46476 }, { "analysis_explanation": null, "end": 46589, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46579 }, { "analysis_explanation": null, "end": 47184, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47180 }, { "analysis_explanation": null, "end": 47286, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47280 }, { "analysis_explanation": null, "end": 47496, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47483 }, { "analysis_explanation": null, "end": 47603, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47582 }, { "analysis_explanation": null, "end": 47754, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47727 }, { "analysis_explanation": null, "end": 47899, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47896 }, { "analysis_explanation": null, "end": 48889, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48878 }, { "analysis_explanation": null, "end": 49082, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49074 }, { "analysis_explanation": null, "end": 49272, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49267 }, { "analysis_explanation": null, "end": 49514, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49500 }, { "analysis_explanation": null, "end": 49535, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49523 }, { "analysis_explanation": null, "end": 49859, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49845 }, { "analysis_explanation": null, "end": 49881, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49868 }, { "analysis_explanation": null, "end": 50141, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50138 }, { "analysis_explanation": null, "end": 50533, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50504 }, { "analysis_explanation": null, "end": 50751, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50728 }, { "analysis_explanation": null, "end": 50773, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50760 }, { "analysis_explanation": null, "end": 50797, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50776 }, { "analysis_explanation": null, "end": 50813, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50803 }, { "analysis_explanation": null, "end": 51109, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51080 }, { "analysis_explanation": null, "end": 51373, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51365 }, { "analysis_explanation": null, "end": 51397, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51388 }, { "analysis_explanation": null, "end": 51566, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51563 }, { "analysis_explanation": null, "end": 51828, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51802 }, { "analysis_explanation": null, "end": 52406, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52392 }, { "analysis_explanation": null, "end": 52532, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52518 }, { "analysis_explanation": null, "end": 52631, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52617 }, { "analysis_explanation": null, "end": 52823, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52809 }, { "analysis_explanation": null, "end": 53064, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53043 }, { "analysis_explanation": null, "end": 53148, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53134 }, { "analysis_explanation": null, "end": 53803, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53790 }, { "analysis_explanation": null, "end": 53887, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53877 }, { "analysis_explanation": null, "end": 53979, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53966 }, { "analysis_explanation": null, "end": 53994, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53984 }, { "analysis_explanation": null, "end": 54592, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54578 }, { "analysis_explanation": null, "end": 55326, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55300 }, { "analysis_explanation": null, "end": 56505, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56492 }, { "analysis_explanation": null, "end": 56790, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56777 }, { "analysis_explanation": null, "end": 58486, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58481 }, { "analysis_explanation": null, "end": 59514, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59473 }, { "analysis_explanation": null, "end": 59578, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59568 }, { "analysis_explanation": null, "end": 59637, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59627 }, { "analysis_explanation": null, "end": 59741, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59727 }, { "analysis_explanation": null, "end": 60065, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60049 }, { "analysis_explanation": null, "end": 60505, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60495 }, { "analysis_explanation": null, "end": 60951, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60942 }, { "analysis_explanation": null, "end": 61011, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61001 }, { "analysis_explanation": null, "end": 61187, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61177 }, { "analysis_explanation": null, "end": 61238, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61231 }, { "analysis_explanation": null, "end": 61272, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61267 }, { "analysis_explanation": null, "end": 62063, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62058 }, { "analysis_explanation": null, "end": 62266, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62243 }, { "analysis_explanation": null, "end": 62299, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62275 }, { "analysis_explanation": null, "end": 62637, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62554 }, { "analysis_explanation": null, "end": 62807, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62796 }, { "analysis_explanation": null, "end": 62855, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62843 }, { "analysis_explanation": null, "end": 62875, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62868 }, { "analysis_explanation": null, "end": 62917, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62896 }, { "analysis_explanation": null, "end": 63274, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63269 }, { "analysis_explanation": null, "end": 63546, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63543 }, { "analysis_explanation": null, "end": 64040, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64028 }, { "analysis_explanation": null, "end": 64337, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64314 }, { "analysis_explanation": null, "end": 64370, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64346 }, { "analysis_explanation": null, "end": 64495, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64489 }, { "analysis_explanation": null, "end": 64968, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64957 }, { "analysis_explanation": null, "end": 65013, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65001 }, { "analysis_explanation": null, "end": 65060, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65039 }, { "analysis_explanation": null, "end": 65196, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65193 }, { "analysis_explanation": null, "end": 65420, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65380 }, { "analysis_explanation": null, "end": 65673, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65670 }, { "analysis_explanation": null, "end": 66051, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66011 }, { "analysis_explanation": null, "end": 66065, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66055 }, { "analysis_explanation": null, "end": 66232, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66206 }, { "analysis_explanation": null, "end": 66899, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66870 }, { "analysis_explanation": null, "end": 69398, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69388 }, { "analysis_explanation": null, "end": 69477, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69465 }, { "analysis_explanation": null, "end": 69809, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69799 }, { "analysis_explanation": null, "end": 69872, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69862 }, { "analysis_explanation": null, "end": 69897, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69875 }, { "analysis_explanation": null, "end": 70201, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70192 }, { "analysis_explanation": null, "end": 70216, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70202 }, { "analysis_explanation": null, "end": 70569, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70536 }, { "analysis_explanation": null, "end": 71023, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71008 }, { "analysis_explanation": null, "end": 71209, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71194 }, { "analysis_explanation": null, "end": 71403, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71399 }, { "analysis_explanation": null, "end": 71681, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71671 }, { "analysis_explanation": null, "end": 71798, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71792 }, { "analysis_explanation": null, "end": 72485, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72477 }, { "analysis_explanation": null, "end": 73112, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73102 }, { "analysis_explanation": null, "end": 73182, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73172 }, { "analysis_explanation": null, "end": 73261, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73248 }, { "analysis_explanation": null, "end": 73364, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73354 }, { "analysis_explanation": null, "end": 73480, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73470 }, { "analysis_explanation": null, "end": 74589, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74571 }, { "analysis_explanation": null, "end": 75318, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75304 }, { "analysis_explanation": null, "end": 75332, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75320 }, { "analysis_explanation": null, "end": 75427, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75422 }, { "analysis_explanation": null, "end": 75466, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75462 }, { "analysis_explanation": null, "end": 75497, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75482 }, { "analysis_explanation": null, "end": 75525, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75513 }, { "analysis_explanation": null, "end": 75666, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75655 }, { "analysis_explanation": null, "end": 75797, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75784 }, { "analysis_explanation": null, "end": 75809, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75798 }, { "analysis_explanation": null, "end": 75832, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75811 }, { "analysis_explanation": null, "end": 75857, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75846 }, { "analysis_explanation": null, "end": 75867, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75859 }, { "analysis_explanation": null, "end": 75882, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75872 }, { "analysis_explanation": null, "end": 75976, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75972 }, { "analysis_explanation": null, "end": 76091, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76073 }, { "analysis_explanation": null, "end": 76120, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76112 }, { "analysis_explanation": null, "end": 76148, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76144 }, { "analysis_explanation": null, "end": 76170, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76163 }, { "analysis_explanation": null, "end": 76291, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76287 }, { "analysis_explanation": null, "end": 76307, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76298 }, { "analysis_explanation": null, "end": 76337, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76324 }, { "analysis_explanation": null, "end": 76434, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76430 }, { "analysis_explanation": null, "end": 76452, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76436 }, { "analysis_explanation": null, "end": 76516, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76512 }, { "analysis_explanation": null, "end": 76585, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76568 }, { "analysis_explanation": null, "end": 76696, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76692 }, { "analysis_explanation": null, "end": 76710, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76706 }, { "analysis_explanation": null, "end": 76767, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76739 }, { "analysis_explanation": null, "end": 76870, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76862 }, { "analysis_explanation": null, "end": 76888, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76872 }, { "analysis_explanation": null, "end": 76905, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76893 }, { "analysis_explanation": null, "end": 77014, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76990 }, { "analysis_explanation": null, "end": 77041, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77016 }, { "analysis_explanation": null, "end": 77106, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77102 }, { "analysis_explanation": null, "end": 77140, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77133 }, { "analysis_explanation": null, "end": 77155, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77143 }, { "analysis_explanation": null, "end": 77215, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77211 }, { "analysis_explanation": null, "end": 77332, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77328 }, { "analysis_explanation": null, "end": 77393, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77385 }, { "analysis_explanation": null, "end": 77399, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77395 }, { "analysis_explanation": null, "end": 77523, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77519 }, { "analysis_explanation": null, "end": 77552, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77538 }, { "analysis_explanation": null, "end": 77624, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77618 }, { "analysis_explanation": null, "end": 77630, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77626 }, { "analysis_explanation": null, "end": 77640, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77632 }, { "analysis_explanation": null, "end": 77704, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77696 }, { "analysis_explanation": null, "end": 77711, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77707 }, { "analysis_explanation": null, "end": 77725, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77714 }, { "analysis_explanation": null, "end": 77797, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77787 }, { "analysis_explanation": null, "end": 77834, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77830 }, { "analysis_explanation": null, "end": 77863, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77849 }, { "analysis_explanation": null, "end": 77926, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77922 }, { "analysis_explanation": null, "end": 77940, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77933 }, { "analysis_explanation": null, "end": 77956, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77942 }, { "analysis_explanation": null, "end": 78046, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78042 }, { "analysis_explanation": null, "end": 507, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.6, "start": 497 }, { "analysis_explanation": null, "end": 799, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 754 }, { "analysis_explanation": null, "end": 752, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 737 }, { "analysis_explanation": null, "end": 77351, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 77347 }, { "analysis_explanation": null, "end": 75651, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 75644 }, { "analysis_explanation": null, "end": 75794, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 75787 }, { "analysis_explanation": null, "end": 76566, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 76559 }, { "analysis_explanation": null, "end": 76749, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 76742 }, { "analysis_explanation": null, "end": 76855, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 76848 }, { "analysis_explanation": null, "end": 75651, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 75644 }, { "analysis_explanation": null, "end": 75794, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 75787 }, { "analysis_explanation": null, "end": 76566, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 76559 }, { "analysis_explanation": null, "end": 76749, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 76742 }, { "analysis_explanation": null, "end": 76855, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 76848 }, { "analysis_explanation": null, "end": 77000, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 76993 } ]
[ "Catherine Herridge takes a look at the email that triggered an FBI investigation and allegations of quid pro quo\n\nThe email at the heart of a \"quid pro quo\" controversy involving a senior State Department executive and the FBI contained intelligence about suspects in the 2012 Benghazi terrorist attack, two government sources told Fox News.", "\n\nHeavily redacted FBI interview summaries, known as 302s, state that Patrick Kennedy, a top lieutenant to Hillary Clinton when she was secretary of state, wanted to deep-six the email – which was one of two on her personal server that kick-started the FBI investigation into the mishandling of classified information on her unsecured system.", "\n\nIt contains “B1” redactions for classified information and “B1.4D” redactions for \"Foreign relations or foreign activities of the United States, including confidential sources\" -- as well as “B7” redactions covering \"law enforcement\" activities.", "\n\nThe FBI files say Kennedy offered a “quid pro quo” – allowing the FBI more agents in countries where they’re forbidden, in exchange for changing the email’s “SECRET” classification. ", "According to the documents, Kennedy wanted the record declassified and marked with a code that would shield it from public scrutiny.", "\n\nThe State Department confirmed Kennedy was discussing the Benghazi email in question. ", "The FBI did not immediately respond to a request for comment.", "\n\nRepublican lawmakers believe Kennedy was going to the mat over the Benghazi email in an effort to kill the FBI investigation.", "\n\n\"It demands deep investigation. ", "It's going to take months to try to untangle this. ", "But when you have the FBI themselves say that there was a quid pro quo negotiation that was going on to manipulate the classification of documents, that goes to the highest degree,\" House Oversight Committee Chairman Jason Chaffetz, R-Utah, said this week. \"", "And that's why I feel so strongly that Patrick Kennedy should immediately be relieved of his position.\"", "\n\nFox News first reported in August 2015 that the Sullivan email -- along with a record from Clinton aide Huma Abedin -- both containing classified information were the catalysts for the FBI probe. ", "The records were identified in nearly 300 Benghazi emails provided to Congress. ", "The Intelligence Community inspector general referred the matter to the bureau due to the classified intelligence from multiple agencies including the CIA, Defense Intelligence Agency and FBI.", "\n\nThe FBI interview summary with a senior official at the bureau's records management division in Winchester, Va., says he was contacted by the agent working with Kennedy.", "\n\n\"[Redacted] indicated he had been contacted by PATRICK KENNEDY, Undersecretary of State, who had asked his assistance in altering the email's classification in exchange for a 'quid pro quo,'\" the 302 states. \"[", "Redacted] advised that in exchange for marking the email unclassified, STATE would reciprocate by allowing the FBI to place more Agents in countries where they are presently forbidden.\"", "\n\nA second summary states Kennedy wanted an obscure B9 code applied to the email, allowing Kennedy to \"archive the document in the basement of DoS (Department of State) never to be seen again.\" ", "B9 is an exemption for \"geological and geophysical information and data.\"", "\n\nIn a written statement Wednesday, the State Department questioned the competency of FBI investigators and the accuracy of the interview summaries that report Kennedy wanted a backroom deal on the record.", "\n\n\"Speaking to what actually did occur -- Under Secretary Kennedy sought to understand the FBI's process for withholding certain information from public release. ", "Reference to a b9 exemption is mistaken,\" the State Department spokesperson said. \"", "Under Secretary Kennedy explained that State's preference would be to use a b7 law enforcement redaction. ", "In any case, the document still would have been released on our FOIA website.\"", "\n\nIn a written statement, Kennedy also denied “bargaining.”", "\n\nBut seasoned national security defense attorneys said an FBI 302 is a document of record.", "\n\n\"An FBI 302 does not contain opinion work by the FBI,\" defense lawyer Edward MacMahon Jr. said. \"", "If somebody said that somebody offered me for something else, and that's in a 302, that agent is going to say I’m sure that that's exactly what happened.\"", "\n\nPressing for changes to the email classification after a congressional subpoena and preservation order were issued in March 2015 would have the effect of changing evidence, according to Republicans pursuing the matter.", "\n\n\"The FBI thought this information was not relevant and that is just stunning to me because this is some of the most unbelievable set of documents that we've seen to date,\" Chaffetz said. \"", "It really goes to the core of why we're so concerned.”", "\n\nState Department spokesman John Kirby said in a statement that while redactions are made to protect exempt information from public release, “That does not affect whether a document has been preserved for purposes of a congressional subpoena.”", "\n\nThe FBI and State Department both emphasize that no \"quid pro quo\" took place. ", "The email classification was not changed in the end, and no additional FBI agents were assigned overseas.", "\n\nIn a Washington Post interview Tuesday, the now-retired FBI agent who dealt with Kennedy confirmed they discussed doing a favor for one another, but when the agent discovered a classified Benghazi email was involved, he turned Kennedy down.", "\n\nBut one of the FBI agent's colleagues told investigators the agent in fact pressured him to change the email to unclassified, and relayed the conversation with Kennedy as a quid pro quo. ", "The retired agent disputes that description.", "\n\nCatherine Herridge is an award-winning Chief Intelligence correspondent for FOX News Channel (FNC) based in Washington, D.C. She covers intelligence, the Justice Department and the Department of Homeland Security. ", "Herridge joined FNC in 1996 as a London-based correspondent." ]
{ "pile_set_name": "Pile-CC" }
[ 0.01466275659824047, 0.011695906432748537, 0, 0.016304347826086956, 0.007575757575757576, 0.03409090909090909, 0.01639344262295082, 0.023622047244094488, 0, 0, 0.011627906976744186, 0.009708737864077669, 0.025252525252525252, 0.0125, 0.020833333333333332, 0.011695906432748537, 0.009433962264150943, 0.010810810810810811, 0.015463917525773196, 0, 0.014634146341463415, 0.012345679012345678, 0.012048192771084338, 0.018867924528301886, 0.01282051282051282, 0.01694915254237288, 0.01098901098901099, 0.030303030303030304, 0, 0, 0.005263157894736842, 0, 0.00819672131147541, 0.024691358024691357, 0.009523809523809525, 0.02066115702479339, 0.010582010582010581, 0, 0.023148148148148147, 0.03333333333333333 ]
0.012901
5
[ { "analysis_explanation": null, "end": 18, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 276, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272 }, { "analysis_explanation": null, "end": 285, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 277 }, { "analysis_explanation": null, "end": 425, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 410 }, { "analysis_explanation": null, "end": 462, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 447 }, { "analysis_explanation": null, "end": 826, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 809 }, { "analysis_explanation": null, "end": 954, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 947 }, { "analysis_explanation": null, "end": 1146, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1139 }, { "analysis_explanation": null, "end": 1282, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1275 }, { "analysis_explanation": null, "end": 1310, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1302 }, { "analysis_explanation": null, "end": 1402, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1392 }, { "analysis_explanation": null, "end": 1428, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1421 }, { "analysis_explanation": null, "end": 1467, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1459 }, { "analysis_explanation": null, "end": 1575, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1569 }, { "analysis_explanation": null, "end": 1832, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1818 }, { "analysis_explanation": null, "end": 1840, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1834 }, { "analysis_explanation": null, "end": 1856, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1847 }, { "analysis_explanation": null, "end": 1914, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1899 }, { "analysis_explanation": null, "end": 2002, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1991 }, { "analysis_explanation": null, "end": 2020, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2012 }, { "analysis_explanation": null, "end": 2062, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2055 }, { "analysis_explanation": null, "end": 2079, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2068 }, { "analysis_explanation": null, "end": 2210, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2202 }, { "analysis_explanation": null, "end": 2539, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2529 }, { "analysis_explanation": null, "end": 2544, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2541 }, { "analysis_explanation": null, "end": 2601, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2594 }, { "analysis_explanation": null, "end": 2665, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2650 }, { "analysis_explanation": null, "end": 3031, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3024 }, { "analysis_explanation": null, "end": 3096, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3089 }, { "analysis_explanation": null, "end": 3194, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3192 }, { "analysis_explanation": null, "end": 3298, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3289 }, { "analysis_explanation": null, "end": 3431, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3424 }, { "analysis_explanation": null, "end": 3533, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3526 }, { "analysis_explanation": null, "end": 3737, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3730 }, { "analysis_explanation": null, "end": 3930, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3923 }, { "analysis_explanation": null, "end": 4136, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4117 }, { "analysis_explanation": null, "end": 4428, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4418 }, { "analysis_explanation": null, "end": 4497, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4486 }, { "analysis_explanation": null, "end": 4800, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4790 }, { "analysis_explanation": null, "end": 5229, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5222 }, { "analysis_explanation": null, "end": 5279, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5272 }, { "analysis_explanation": null, "end": 5387, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5379 }, { "analysis_explanation": null, "end": 5425, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5418 }, { "analysis_explanation": null, "end": 5599, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5592 }, { "analysis_explanation": null, "end": 5682, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5664 }, { "analysis_explanation": null, "end": 5782, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5772 }, { "analysis_explanation": null, "end": 5788, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5784 }, { "analysis_explanation": null, "end": 5886, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5878 }, { "analysis_explanation": null, "end": 5905, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5901 }, { "analysis_explanation": null, "end": 5917, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5911 }, { "analysis_explanation": null, "end": 698, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 696 }, { "analysis_explanation": null, "end": 745, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 743 }, { "analysis_explanation": null, "end": 877, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 875 }, { "analysis_explanation": null, "end": 3052, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 3050 }, { "analysis_explanation": null, "end": 3194, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 3192 } ]
[ "SydPay\n\nOverview\n\nSydPay is a campus payment account included with your UniKey and student card. ", "It can be used for print and copy services at libraries, IT labs and learning hubs across the University, and for laundry services in Queen Mary and Abercrombie student accommodation. ", "Other campuses and services will follow.", "\n\nGuests of the University Library, such as alumni, community members or students from other institutions, can also use SydPay by purchasing a guest card from a SydPay kiosk.", "\n\nHow to access SydPay\n\nIf you first enrolled in 2016 or 2017, your student card is already SydPay ready.", "\n\nIf you enrolled before 2016, and have not yet encoded your student card for SydPay, activate your student card with SydPay by visiting one of the following locations:\n\nWebsite feedback\n\nThank you\n\nYour feedback has been sent.", "\n\nSorry there was a problem sending your feedback. ", "Please try again\n\nYou should only use this form to send feedback about the content on this webpage – we will not respond to other enquiries made through this form. ", "If you have an enquiry or need help with something else such as your enrolment, course etc you can contact the Student Centre." ]
{ "pile_set_name": "Pile-CC" }
[ 0.010309278350515464, 0.016304347826086956, 0, 0.005747126436781609, 0, 0.004405286343612335, 0, 0, 0.007936507936507936 ]
0.004967
5
[ { "analysis_explanation": null, "end": 546, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 542 }, { "analysis_explanation": null, "end": 554, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 550 }, { "analysis_explanation": null, "end": 626, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 622 } ]
[ "\n\nNokia Mobile is gearing up for bringing their latest phones to the Indian market. ", "The launch event was planned for 11th September but was postponed due to some unknown reasons. ", "We don't know when the next event is scheduled for but we are definitely getting closer to the official launch in India.", "\n\n\n\n\n\nNokia Mobile just shared a video on twitter focusing on night photography experience with Nokia 7.2 and below is the embedded tweet.", "\n\n\n\npic.twitter.com/6COmsLwwo9 Get ready to see the night in a different light. ", "Stay tuned to #ExploreTheNight September 17, 2019" ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0, 0, 0.014492753623188406, 0, 0 ]
0.002415
5
[ { "analysis_explanation": null, "end": 73, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67 }, { "analysis_explanation": null, "end": 129, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120 }, { "analysis_explanation": null, "end": 296, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 291 }, { "analysis_explanation": null, "end": 359, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 354 }, { "analysis_explanation": null, "end": 484, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 475 }, { "analysis_explanation": null, "end": 556, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 538 }, { "analysis_explanation": null, "end": 457, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 431 } ]
[ "Hampton VAMC National Cemetery\n\nHampton Veterans Affairs Medical Center National Cemetery (Hampton VAMC National Cemetery) is a United States National Cemetery located the city of Hampton, Virginia. ", "It encompasses only 0.3 of an acre, and has 22 interments. ", "It is currently closed to new interments.", "\n\nHistory \nThe Hampton VAMC National Cemetery is the smallest cemetery overseen by the Department of Veterans Affairs. ", "It is located on the grounds of the Hampton Veterans Affairs Medical Center. ", "It was established in 1898 at the Southern Branch of the National Home for Volunteer Soldiers and Sailors during a strict quarantine for a yellow fever epidemic. ", "Every man who died during the quarantine was buried on site, because no one was allowed to enter or leave the station. ", "All burials took place between July 30 and August 15, 1899. ", "Twenty-two were buried, most of them from New York and Pennsylvania.", "\n\nAdministration of the cemetery was transferred from the United States Army to the Department of Veterans Affairs in 1973. ", "Hampton was one of 21 VA cemeteries on medical center grounds that were merged into the United States National Cemetery System.", "\n\nSee also\n Hampton National Cemetery\n List of Veterans Affairs medical facilities\n\nReferences\n\nExternal links \n National Cemetery Administration\n Hampton VA National Cemetery at Find a Grave\n \n\nCategory:Cemeteries in Hampton, Virginia\nCategory:Buildings and structures in Hampton, Virginia\nCategory:United States national cemeteries\nCategory:Tourist attractions in Hampton, Virginia\nCategory:1898 establishments in Virginia" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.010050251256281407, 0, 0, 0.008403361344537815, 0.012987012987012988, 0.006172839506172839, 0, 0, 0, 0.016129032258064516, 0, 0.0047169811320754715 ]
0.004872
5
[ { "analysis_explanation": null, "end": 141, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128 }, { "analysis_explanation": null, "end": 187, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 180 }, { "analysis_explanation": null, "end": 197, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189 }, { "analysis_explanation": null, "end": 520, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 516 }, { "analysis_explanation": null, "end": 833, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 798 }, { "analysis_explanation": null, "end": 885, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 877 }, { "analysis_explanation": null, "end": 902, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 890 }, { "analysis_explanation": null, "end": 1024, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1020 }, { "analysis_explanation": null, "end": 1377, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1370 }, { "analysis_explanation": null, "end": 1387, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1379 }, { "analysis_explanation": null, "end": 1432, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1425 }, { "analysis_explanation": null, "end": 1442, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1434 }, { "analysis_explanation": null, "end": 1465, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1452 }, { "analysis_explanation": null, "end": 1525, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1518 }, { "analysis_explanation": null, "end": 1535, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1527 }, { "analysis_explanation": null, "end": 1576, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1568 } ]
[ "package org.pih.warehouse.modules\n\nimport geb.", "Module\n\nclass AddIncomingItemToShipmentModule extends Module {\n static content = {\n searchIncomingInventoryItem{module SearchIncomingInventoryItemModule}\n quantity(wait:true){$(\"input#quantity\")}\n saveButton(wait:true){$(\"form#addIncomingItem input#_eventId_saveItem\")}\n }\n}" ]
{ "pile_set_name": "Github" }
[ 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 28, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 8 } ]
[ "Q:\n\nParse iOS SDK: Not able to fetch Objects from Array\n\nI have a table view which displays Facebook friend's data. ", "Data is stored on Parse and I'm pulling it down and storing the data in \"postArray\" using the following query. ", "I have used NSLog to check postArray object's and I am getting the desired results.", "\nWhat happens is that I get sum of my data stored in postArray to be set to the appropriate labels and then some are just left empty. ", "As I said, I did NSLog postArray and it gives me what I wanted. ", "But when I go to set the data, it doesn't set all the data but just some.", "\nProblem #1--> I need all of the data to be able to be accessible from the array and it's not letting me.", "\nProblem #2 --> It is hit or miss whether it loads anything at runtime or not. ", "If I log in and log out its a coin flip whether it will even load anything. ", "I NSLog postArray and it seems it the array is empty sometimes. ", "I know what you are thinking - \"You got to give me something better than \"sometimes\", but I really can't. ", "It's hit or miss.", "\nPlease help me out and tell me what's going on with it!", "\n(and the dispatch_async makes no difference)\nWhat I've been doing = \n [[FBRequest requestForMyFriends] startWithCompletionHandler:^(FBRequestConnection *connection, id result, NSError *error) {\n\n if (!", "error) {\n\n friendDict = result;\n\n friendArray = friendDict[@\"data\"];\n\n for (NSDictionary *friendObject in friendArray) {\n\n friendIDs = [NSMutableArray arrayWithObjects:[friendObject objectForKey:@\"id\"], nil];\n\n PFQuery *postQuery = [PFQuery queryWithClassName:@\"Post\"];\n [postQuery whereKey:@\"postedByID\" containedIn:friendIDs];\n [postQuery orderByAscending:@\"createdAt\"];\n [postQuery findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {\n\n dispatch_async(dispatch_get_main_queue(), ^{\n\n postArray = objects;\n [self.activityTableView reloadData];\n\n });\n\n }];\n\n }\n }\n\n else {\n\n //there are errors\n\n }\n\n }];\n\nA:\n\nI can see a couple ways this code can go wrong. ", " First, it looks like postArray gets replaced each time the inner find completes. ", " Second, the structure of the inner find is problematic, launching N asynch calls in rapid succession, then updating a table as each competes.", "\nConsider this alternative: we build a few methods that can run asynch with completion blocks. ", " The simplest one does the PFQuery for posts based on a userId:\n- (void)getPostsForId:(NSString *)userId withCompletion:(void (^)(NSArray *, NSError *))completion {\n\n PFQuery *postQuery = [PFQuery queryWithClassName:@\"Post\"];\n [postQuery whereKey:@\"postedByID\" containedIn:@[userId]];\n [postQuery orderByAscending:@\"createdAt\"];\n [postQuery findObjectsInBackgroundWithBlock:completion];\n}\n\nThe second one is the interesting one. ", " This solves the problem of making a sequence of asynch calls, letting one finish before launching the next, and only invoking it's completion block when all are complete.", "\nIt does this by using the array of user ids as a to-do list and calling itself recursively, collecting the results in a mutable array. ", " When the to-do list is complete (empty), it calls it's own completion block:\n- (void)getPostsForIds:(NSArray *)ids results:(NSMutableArray *)results completion:(void (^)(BOOL))completion {\n\n if (ids.count == 0) return completion(YES);\n\n NSString *userId = ids[0];\n NSArray *remainingIds = [ids subarrayWithRange:NSMakeRange(1, ids.count-1)];\n\n [self getPostsForId:userId withCompletion:^(NSArray *posts, NSError *error) {\n if (!", "error) {\n [results addObjectsFromArray:posts];\n [self getPostsForIds:remainingIds results:results completion:completion];\n } else {\n completion(NO);\n }\n }];\n}\n\nNow the method you started with can be simplified. ", " Get the friends list from FB, build an array of their ids, and call your magic function above:\n- (void)getFriendsPosts {\n\n [[FBRequest requestForMyFriends] startWithCompletionHandler:^(FBRequestConnection *connection, id result, NSError *error) {\n if (!", "error) {\n friendDict = result;\n friendArray = friendDict[@\"data\"];\n\n NSMutableArray *ids = [NSMutableArray array];\n\n for (NSDictionary *friendObject in friendArray) {\n [ids addObject:[friendObject objectForKey:@\"id\"]];\n }\n NSMutableArray *allPosts = [NSMutableArray array];\n [self getPostsForIds:ids results:allPosts completion:^(BOOL success) {\n\n // EDIT - be sure to use the resulting allPosts as your datasource\n self.theModelForMyTable = allPosts;\n\n [self.activityTableView reloadData];\n // if !", "success do an alert or something\n }];\n }\n }];\n}\n\nThe datasource methods should refer only to the table model, so for example numberOfRowsInSection should answer self.theModelForMyTable.count and cellForRowAtIndexPath should always get the data to configure the cell from self.theModelForMyTable[indexPath.row]\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0.012048192771084338, 0, 0.015625, 0, 0, 0, 0, 0, 0, 0, 0, 0.0047169811320754715, 0.002152852529601722, 0, 0, 0, 0, 0, 0, 0.008928571428571428, 0, 0.003787878787878788, 0.0015360983102918587, 0 ]
0.001877
5
[ { "analysis_explanation": null, "end": 139, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134 }, { "analysis_explanation": null, "end": 244, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239 }, { "analysis_explanation": null, "end": 466, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 461 }, { "analysis_explanation": null, "end": 848, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 843 }, { "analysis_explanation": null, "end": 3037, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3031 }, { "analysis_explanation": null, "end": 3454, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3438 }, { "analysis_explanation": null, "end": 2005, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1998 }, { "analysis_explanation": null, "end": 3493, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3487 }, { "analysis_explanation": null, "end": 3631, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3625 }, { "analysis_explanation": null, "end": 4807, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4800 }, { "analysis_explanation": null, "end": 4861, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4854 }, { "analysis_explanation": null, "end": 5122, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 5096 }, { "analysis_explanation": null, "end": 5213, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 5206 }, { "analysis_explanation": null, "end": 5242, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 5230 } ]
[ "<Project Sdk=\"Microsoft.", "NET.Sdk\">\n <PropertyGroup>\n <TargetFramework>netstandard2.0</TargetFramework>\n </PropertyGroup>\n <ItemGroup>\n\n </ItemGroup>\n <ItemGroup>\n <ProjectReference Include=\"..\\CSharpTest1\\CSharpTest1.csproj\" />\n <ProjectReference Include=\"..\\CSharpTest2\\CSharpTest2.csproj\" />\n <ProjectReference Include=\"..\\CSharpTest3\\CSharpTest3.csproj\" />\n </ItemGroup>\n <ItemGroup>\n\n </ItemGroup>\n</Project>" ]
{ "pile_set_name": "Github" }
[ 0, 0.004914004914004914 ]
0.002457
5
[ { "analysis_explanation": null, "end": 31, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 25 } ]
[ "THE MONSTER PROJECT – Releases New Poster and Trailer!", "\n\nWe have a bit of news for the upcoming horror film, THE MONSTER PROJECT from Epic Pictures. ", "They have released a new poster and trailer for the film. ", "This looks like it might be interesting, I’m quite excited to see this one.", "\n\nWhen aspiring horror filmmakers post an online casting call looking for “real life” monsters to interview for their upcoming documentary called, The Monster Project, they find three individuals claiming to be a skinwalker, a vampire, and a demon. ", "Meeting these monsters at a remote mansion in the woods on the night of a total lunar eclipse, the filmmakers invite the three subjects to share their haunting, personal experiences.", "Working on the crew is a recovering drug addict who suffers withdrawal and paranoia. ", "As a person of faith, he fears his friends underestimate the dark powers they are summoning. ", "When the interviews turn deadly, he must battle the demons, inside and out, to escape the house and defeat the rise of evil incarnate.", "\n\nWatch the trailer here:\n\nShare this:\n\nLike this:\n\nI am a devoted husband and father. ", "I have been a voracious horror fan since the early age of 5. ", "I watch all horror films but my great loves are classic horror films: Universal Monsters, Werewolves, Hammer Horror and an all around affinity for things that go bump in the night!" ]
{ "pile_set_name": "Pile-CC" }
[ 0.018518518518518517, 0.010638297872340425, 0, 0, 0.004016064257028112, 0.005494505494505495, 0, 0, 0, 0, 0, 0.011111111111111112 ]
0.004148
5
[ { "analysis_explanation": null, "end": 596, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 587 }, { "analysis_explanation": null, "end": 1168, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1150 } ]
[ "Workload measurement for resource nurses in the critical care unit: a pilot study.", "\nFaced with financial and staffing pressures, the resource nurses in a large pediatric critical care unit asked, \"How do we spend our time at work?\" ", "When a literature review showed no evidence of an applicable type of survey, a workload measurement tool was developed and the workload measured over a six-week period. ", "Large amounts of time were shown to be spent on tasks or jobs that could be delegated to someone who was not a nurse. ", "This study provided documentation to support the hiring of a staffing secretary and a pharmacy technician. ", "An increased need to be available to offer educational and professional growth and developmental support to colleagues was also identified." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.012195121951219513, 0, 0, 0, 0, 0 ]
0.002033
5
[ { "analysis_explanation": null, "end": 391, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 383 } ]
[ "Q:\n\nRemove extra sign-in step after enabling Forms Based Authentication\n\nNow that I have enabled Forms Based Authentication (FBA) on my sharepoint site, there is an extra Sign-In page where I have to select what type of authentication I wish to use. ", "I pretty much want users to only use FBA. ", "Therefore this step is redundant.", "\nIf I disable \"Windows Authentication\" in the \"Edit Authentication\" menu in Central Admin, it states that my site will no longer be able to be crawled. ", "I obviously still want my site to be searchable.", "\nSo how do I remove this extra Sign-In step without removing Windows Authentication?", "\n\nA:\n\nExtend the Web Application to create two zones - one can be Windows Authentication only, that will allow your content to be crawled. ", "The second can be FBA only, allowing the users to login directly.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0.011904761904761904, 0.007194244604316547, 0, 0 ]
0.002122
5
[]
[ "A creature resembling a human-sized lobster that roamed the Earth's oceans millions of years ago is providing new insights into the evolution of modern arthropods such as shrimp, ants and beetles.", "\n\nThe fossilized remains of an anomalocaridid (Aegirocassis benmoulae), measuring about two metres long, was unearthed in Morocco several years ago. ", "Paleontologists have since spent hundreds of hours chipping away at the rock it was found in, slowly uncovering more details about its anatomy.", "\n\n\"It's an amazing specimen,\" Dr. Allison Daley, a paleontologist at Oxford University and Canadian co-author of the report in Nature Magazine, told CBC Radio's Quirks and Quarks.", "\n\nThat's because it's three-dimensionally preserved, allowing researchers to get a better idea of the creature's shape. ", "Most fossils as old as these have been flattened after being preserved and compressed in rock over tens (or hundreds) of millions of years, giving us only a two-dimensional view of their bodies.", "\n\n\"It was a monster for its time — pretty much the biggest thing around,\" Daley said.", "\n\nIt lived during the Early Ordovician period, about 480 million years ago. ", "That would make it one of the largest and oldest living arthropods ever discovered, dwarfing the modern, smaller crustaceans and insects that share its evolutionary lineage.", "\n\n“It’s fair to say I was in shock at the discovery, and its implications,” said Peter Van Roy, co-author on the research and a research scientist at Yale University.", "\n\n“It once and for all resolves the debate on where anomalocaridids belong in the arthropod tree, and clears up one of the most problematic aspects of their anatomy.”", "\n\nGentle giant ate sea plankton\n\nThe new look revealed two sets of swimming flaps on either side of the body, possibly filling in a gap in the evolutionary path to modern arthropods such as shrimp.", "\n\nUnusually, the creature survived by feeding on tiny organisms known as plankton in the ocean, filtering them out of the water with appendages on its head, much as modern whales do.", "\n\nThere was a greater volume and diversity of plankton in the oceans 480 million years ago, allowing such a large creature to subsist.", "\n\nMost anomalocaridids who existed around this era (or at least within a few million years of it) were apex predators. ", "Their head appendages were more like spiny claws that could catch larger prey.", "\n\n“I’d love to swim alongside this guy, because I'd know he wasn’t going to try to eat me,” joked Daley.", "\n\nYou can listen to the full interview with Dr. Allison Daley on CBC Radio’s Quirks and Quarks this Saturday at noon." ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0, 0, 0.027932960893854747, 0, 0, 0.011764705882352941, 0, 0, 0.012048192771084338, 0, 0, 0, 0, 0, 0, 0.009615384615384616, 0.03418803418803419 ]
0.005308
5
[ { "analysis_explanation": null, "end": 65, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60 }, { "analysis_explanation": null, "end": 96, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75 }, { "analysis_explanation": null, "end": 254, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242 }, { "analysis_explanation": null, "end": 324, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 317 }, { "analysis_explanation": null, "end": 342, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 325 }, { "analysis_explanation": null, "end": 394, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 377 }, { "analysis_explanation": null, "end": 533, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 520 }, { "analysis_explanation": null, "end": 585, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 577 }, { "analysis_explanation": null, "end": 653, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647 }, { "analysis_explanation": null, "end": 1056, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1051 }, { "analysis_explanation": null, "end": 1135, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1108 }, { "analysis_explanation": null, "end": 1403, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1390 }, { "analysis_explanation": null, "end": 2106, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2085 }, { "analysis_explanation": null, "end": 2239, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2220 }, { "analysis_explanation": null, "end": 2448, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2443 }, { "analysis_explanation": null, "end": 2509, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2496 }, { "analysis_explanation": null, "end": 2531, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2525 }, { "analysis_explanation": null, "end": 2556, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2543 }, { "analysis_explanation": null, "end": 2564, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2560 } ]
[ "EROTIC CAKES X-RATED BAKERY CAKE MAIN PAGE\n\nWE DELIVER Nationwide IN 1 DAY, PLEASE CALL 1-866-396-8429\n\nIN Alaska Atlantic city Alabama Arkansas Arizona California Canada Connecticut Colorado Delaware Florida Georgia Hawaii Idaho Illinois Indiana Iowa Kansas Kentucky Las Vegas Nevada Los Angeles Louisiana Maine Massachusetts Maryland Michigan Minnesota Mississippi Missouri Montana Nassau Bahamas Paradise Island New Hampshire Nebraska New Jersey New Mexico New Orleans New York North Carolina North Dakota Ohio Oklahoma Ontario Oregon Pennsylvania Quebec Rhode Island San Francisco Savannah Seattle Washington South Carolina South Dakota Tennessee Texas Toronto Utah Virginia Vermont Washington DC West Virginia Wisconsin Wyoming\n\nTHE BAKERIES ONLY NEED 1 HOUR NOTICE, FOR ANY CAKE.", "\n\nPLEASE LOOK FOR OUR 125 PAGE LINK BAR WITH OVER 1000 CUSTOM CAKES AT THE BOTTOM OF EVERY PAGE !!!!!!!!", "\n\nNew-york-Manhattan-all-fingers-and-hands-erotic-cake Vagina pussy cake to lick Atlanta-georgia-full-breasted-corset-leather-body-sexy-cake\n\n\n\n\n\nErotic bed cakes cum's in all positions Doggy style bed cake.. Las-Vegas-shes-holding-on-tight-enormass-dick-cake At EROTIC all of our cakes are hand carved and not made from a mold. ", "Each of our customers get a unique personalized design. ", "At EROTIC our decorator hand draws on each individual cake. ", "We will create any design that you can imagine from a couple making love on top of a cake to a hand carved male organ or female torso with edible panties bra. ", "We are also the leaders in the most exotic shaped cakes. ", "Our male or female erotic body shapes are always the talk of any bachelor Shower or bachelorette Party ! ", "All our loyal and new customers are welcome to design their own cake. ", "EROTIC is happy to create a cake to your specification. ", "Our Motto is \"You design it, we will bake it\" Our Adult party theme cakes go over great at an x-rated party at your home. ", "Erotic Sexy Big Butty Butt cake\n\nYou supply Photo or drawing our computers will redraw it onto a fully edible cake.", "\n\nLimitations apply, no copyrighted material accepted\n\nunless accompanied by models release, notarized. ", "Please ask about our erotic cookies, with EDIBLE photos, they are the perfect favor....\n\nEROTIC EDIBLE SEX PHOTO'S Exotic-Pot-Leaf-smoking-cake THE MAN'S BRIEF SHORT'S UNDERWEAR WITH BULGE CUSTOM CAKE COMES IN ALL Colorado-Springs-Snake-Slytherin-Sexy-Bachelorette-Torso-cake The royal exploding dick cake, when you cut into the head, you pop the hidden balloon inside, and it cum's out squirting California-San-Diego-Cumming-Dripping-Red-Hot-Standup-Hand-Dick-cake Atlantic-City-NewJersey-She-so-shy-sexy-cake BACHELOR PARTY POCO DOT TIT CAKE\n\nThank you for considering The Erotic bakery for your party cakes and erotic cake and bakery needs. ", "Our cake decorators specialize in wedding cakes, holiday cakes, grooms cakes, birthday cakes, specialty cakes, custom cakes, adult candies, bachelor cakes, tit cakes, dick cakes, breast cakes, vagina cakes, bachelorette cookies, x-rated cake, x rated cake, French pastries and decorative cakes. ", "We also carry sugar free cakes, diabetic cakes, cholesterol free items......© 2001 www.cakes3.com\n\nClick on A Bakery link below for more Erotic Exotic Adult X-rated Novelty Cakes ....\n\nCan you make a penis, butt, body cake for my bachelorette party?", "\n\nYou’re in luck! ", "That’s our job!", "\n\nCan we make a Tit, vagina, butt, body cake for my bachelor party?", "\n\nErotic Bakery Usa is a family-owned and operated erotic bakery. ", "We are able to provide cakes shaped like penises for bachelor parties, because we believe that marriage is a sacred bond between a penis cake and a vagina cake.", "\n\nDo you have any other rules?", "\n\nJust that you have fun, all of our cakes to be eaten by all, anytime anywhere 24/7, one hour notice!", "\n\nCan you make cakes in both chocolate and vanilla?", "\n\nOf course we can. ", "We’re not out to discriminate or exclude anyone!", "\n\nCan you make any penis cake and any vagina cake?", "\n\nOf course!", "\n\nWhat about pubic hair?", "\n\nWe love pubic hair! ", "At time of order, please specify if you would like the pubic hair to be made out of frosting or toasted coconut.", "\n\nCan the pubic hair be blue/pink/green/purple?", "\n\nYep, we can only make pubic hair out of frosting in all colors.", "\n\nPlease list any sex acts that can be depicted on cakes.", "\n\nMissionary, sixty nine, and all others you can dream of.", "\n\nDo you make Penis, Vagina, tit, but, sex cupcakes?", "\n\nOf course!", "\n\nCan my cake show someone masturbating?", "\n\nOf course! ", "Please let us know if you would like the palm hair to be made out of frosting or toasted coconut.", "\n\nWhat’s your history?", "\n\nErotic Bakery USA is simply a family-run. ", "Though we acknowledge that times are changing, Confirmed bachelors, bachelorettes cakes we nevertheless spent three decades happily making penis cakes for women across United States in all fifty states. ", "Call for a cake in only one hour, in any state any time of the day or night.", "\n\ns......© 2001 www.cakes3.com....." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.003821656050955414, 0, 0.0060790273556231, 0, 0, 0, 0, 0.01904761904761905, 0, 0, 0, 0, 0, 0.004658385093167702, 0.003389830508474576, 0.008032128514056224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.019230769230769232, 0, 0, 0, 0, 0, 0, 0, 0, 0.02857142857142857 ]
0.002063
5
[ { "analysis_explanation": null, "end": 74, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69 }, { "analysis_explanation": null, "end": 122, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107 }, { "analysis_explanation": null, "end": 135, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128 }, { "analysis_explanation": null, "end": 144, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136 }, { "analysis_explanation": null, "end": 152, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 145 }, { "analysis_explanation": null, "end": 163, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 153 }, { "analysis_explanation": null, "end": 170, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 164 }, { "analysis_explanation": null, "end": 182, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171 }, { "analysis_explanation": null, "end": 191, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 183 }, { "analysis_explanation": null, "end": 200, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 192 }, { "analysis_explanation": null, "end": 208, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201 }, { "analysis_explanation": null, "end": 216, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209 }, { "analysis_explanation": null, "end": 223, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217 }, { "analysis_explanation": null, "end": 229, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224 }, { "analysis_explanation": null, "end": 238, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230 }, { "analysis_explanation": null, "end": 246, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239 }, { "analysis_explanation": null, "end": 251, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247 }, { "analysis_explanation": null, "end": 258, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252 }, { "analysis_explanation": null, "end": 267, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 259 }, { "analysis_explanation": null, "end": 277, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268 }, { "analysis_explanation": null, "end": 284, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 278 }, { "analysis_explanation": null, "end": 296, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285 }, { "analysis_explanation": null, "end": 306, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297 }, { "analysis_explanation": null, "end": 312, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 307 }, { "analysis_explanation": null, "end": 326, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 313 }, { "analysis_explanation": null, "end": 335, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 327 }, { "analysis_explanation": null, "end": 344, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 336 }, { "analysis_explanation": null, "end": 354, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 345 }, { "analysis_explanation": null, "end": 366, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 355 }, { "analysis_explanation": null, "end": 375, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 367 }, { "analysis_explanation": null, "end": 383, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 376 }, { "analysis_explanation": null, "end": 390, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 384 }, { "analysis_explanation": null, "end": 428, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 415 }, { "analysis_explanation": null, "end": 437, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 429 }, { "analysis_explanation": null, "end": 448, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 438 }, { "analysis_explanation": null, "end": 459, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 449 }, { "analysis_explanation": null, "end": 471, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 460 }, { "analysis_explanation": null, "end": 495, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 472 }, { "analysis_explanation": null, "end": 508, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 496 }, { "analysis_explanation": null, "end": 513, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 509 }, { "analysis_explanation": null, "end": 522, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514 }, { "analysis_explanation": null, "end": 530, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 523 }, { "analysis_explanation": null, "end": 537, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 531 }, { "analysis_explanation": null, "end": 550, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 538 }, { "analysis_explanation": null, "end": 557, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 551 }, { "analysis_explanation": null, "end": 570, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 558 }, { "analysis_explanation": null, "end": 584, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 571 }, { "analysis_explanation": null, "end": 593, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 585 }, { "analysis_explanation": null, "end": 601, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 594 }, { "analysis_explanation": null, "end": 612, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 602 }, { "analysis_explanation": null, "end": 627, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 613 }, { "analysis_explanation": null, "end": 640, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 628 }, { "analysis_explanation": null, "end": 650, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 641 }, { "analysis_explanation": null, "end": 656, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 651 }, { "analysis_explanation": null, "end": 664, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 657 }, { "analysis_explanation": null, "end": 669, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 665 }, { "analysis_explanation": null, "end": 678, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 670 }, { "analysis_explanation": null, "end": 686, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 679 }, { "analysis_explanation": null, "end": 697, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 687 }, { "analysis_explanation": null, "end": 705, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 698 }, { "analysis_explanation": null, "end": 714, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 706 }, { "analysis_explanation": null, "end": 724, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 715 }, { "analysis_explanation": null, "end": 732, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 725 }, { "analysis_explanation": null, "end": 763, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 757 }, { "analysis_explanation": null, "end": 907, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 889 }, { "analysis_explanation": null, "end": 975, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 968 }, { "analysis_explanation": null, "end": 1078, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1073 }, { "analysis_explanation": null, "end": 1105, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1096 }, { "analysis_explanation": null, "end": 2341, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2333 }, { "analysis_explanation": null, "end": 2526, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2516 }, { "analysis_explanation": null, "end": 2608, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2585 }, { "analysis_explanation": null, "end": 3026, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3020 }, { "analysis_explanation": null, "end": 3140, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3134 }, { "analysis_explanation": null, "end": 3357, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3354 }, { "analysis_explanation": null, "end": 3752, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3744 }, { "analysis_explanation": null, "end": 4713, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4700 }, { "analysis_explanation": null, "end": 4771, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4758 }, { "analysis_explanation": null, "end": 4825, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4812 }, { "analysis_explanation": null, "end": 4868, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4863 }, { "analysis_explanation": null, "end": 4883, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4877 }, { "analysis_explanation": null, "end": 3155, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3141 }, { "analysis_explanation": null, "end": 4898, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4884 }, { "analysis_explanation": null, "end": 102, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 88 } ]
[ "/* Generated by RuntimeBrowser.", "\n */\n\n@protocol SFAirDropClassroomTransferDelegate <NSObject>\n\n@required\n\n- (void)transferWithIdentifierWasAccepted:(NSString *)arg1;\n\n@optional\n\n- (void)transferWithIdentifierWasDeclined:(NSString *)arg1;\n- (void)transferWithIdentifierWasDeclined:(NSString *)arg1 withFailureReason:(unsigned long long)arg2;\n\n@end\n" ]
{ "pile_set_name": "Github" }
[ 0.03225806451612903, 0.012698412698412698 ]
0.022478
5
[ { "analysis_explanation": null, "end": 30, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16 } ]
[ "---\ntitle: Calendar transition modes\npage_title: RadCalendar transition modes | Progress NativeScript UI Documentation\ndescription: A transition modes usage guide page for RadCalendar with Vue\nslug: calendar-transition-modes-vue\ntags: radcalendar, transition, modes, calendar, nativescript, professional, ui\nposition: 6\npublish: true\n---\n\n# RadCalendar Transitions\n{% typedoc_link classes:RadCalendar %} supports different animations when switching between months, weeks or years. ", "These are also called *transitions*. ", "Defining a transition is done by setting the {% typedoc_link classes:RadCalendar,member:transitionMode %} property to one of the values enlisted by the {% typedoc_link enums:CalendarTransitionMode %} enum.", "\n\n## Available Transition Modes:\n- {% typedoc_link enums:CalendarTransitionMode,member:None %} - Transitions with gestures are disabled and no animation is applied when transitioning programatically. ", "Available in iOS and Android.", "\n- {% typedoc_link enums:CalendarTransitionMode,member:Slide %} - Slide animation is applied when transitioning between views in {% typedoc_link classes:RadCalendar %}. ", "Available in iOS and Android.", "\n- {% typedoc_link enums:CalendarTransitionMode,member:Stack %} - Stack animation is applied when transitioning between views in {% typedoc_link classes:RadCalendar %}. ", "Available in iOS and Android.", "\n- {% typedoc_link enums:CalendarTransitionMode,member:Flip %} - Flip animation is applied when transitioning between views in {% typedoc_link classes:RadCalendar %}. ", "Available only in iOS.", "\n- {% typedoc_link enums:CalendarTransitionMode,member:Fold %} - Fold animation is applied when transitioning between views in {% typedoc_link classes:RadCalendar %}. ", "Available only in iOS.", "\n- {% typedoc_link enums:CalendarTransitionMode,member:Float %} - Float animation is applied when transitioning between views in {% typedoc_link classes:RadCalendar %}. ", "Available only in iOS.", "\n- {% typedoc_link enums:CalendarTransitionMode,member:Rotate %} - Rotate animation is applied when transitioning between views in {% typedoc_link classes:RadCalendar %}. ", "Available only in iOS.", "\n- {% typedoc_link enums:CalendarTransitionMode,member:Plain %} - Allows non inertial scrolling between views in {% typedoc_link classes:RadCalendar %}. ", "Available only in Android.", "\n- {% typedoc_link enums:CalendarTransitionMode,member:Free %} - Allows inertial scrolling between views in {% typedoc_link classes:RadCalendar %}. ", "Available only in Android.", "\n- {% typedoc_link enums:CalendarTransitionMode,member:Combo %} - Applies inertial slide animation when transitioning between views in {% typedoc_link classes:RadCalendar %}. ", "Available only in Android.", "\n- {% typedoc_link enums:CalendarTransitionMode,member:Overlap %} - Views overlap when transitioning in {% typedoc_link classes:RadCalendar %}. ", "Available only in Android.", "\n\n<snippet id='calendar-transitionmodes-vue'/>" ]
{ "pile_set_name": "Github" }
[ 0.008316008316008316, 0, 0.004878048780487805, 0, 0.034482758620689655, 0.011834319526627219, 0.034482758620689655, 0.011764705882352941, 0.034482758620689655, 0.005952380952380952, 0, 0.005952380952380952, 0, 0.0058823529411764705, 0, 0.005813953488372093, 0, 0.006493506493506494, 0.038461538461538464, 0.006711409395973154, 0.038461538461538464, 0.005681818181818182, 0.038461538461538464, 0.006896551724137931, 0.038461538461538464, 0 ]
0.01321
5
[ { "analysis_explanation": null, "end": 198, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189 }, { "analysis_explanation": null, "end": 470, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 449 }, { "analysis_explanation": null, "end": 479, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 474 }, { "analysis_explanation": null, "end": 939, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 936 }, { "analysis_explanation": null, "end": 951, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 944 }, { "analysis_explanation": null, "end": 1137, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1134 }, { "analysis_explanation": null, "end": 1149, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1142 }, { "analysis_explanation": null, "end": 1336, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1333 }, { "analysis_explanation": null, "end": 1348, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1341 }, { "analysis_explanation": null, "end": 1538, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1535 }, { "analysis_explanation": null, "end": 1728, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1725 }, { "analysis_explanation": null, "end": 1920, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1917 }, { "analysis_explanation": null, "end": 2114, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2111 }, { "analysis_explanation": null, "end": 2294, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2287 }, { "analysis_explanation": null, "end": 2469, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2462 }, { "analysis_explanation": null, "end": 2671, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2664 }, { "analysis_explanation": null, "end": 2842, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2835 } ]
[ "[Perinatal Health Education: survey of French midwives].", "\nPerinatal Health Education (PHE) is designed to promote mother and child health. ", "This study investigated the midwives' point of view concerning PHE and tried to identify their reported practices in this area. ", "This was a descriptive, comparative study. ", "Data were collected by means of an online questionnaire between June and December 2009. ", "The study population was composed of voluntary midwives informed about the online questionnaire. ", "498 midwives took part in the study. ", "Many PHE actions were reported. ", "Private and public health midwives described themselves as being the most active in terms of PHE, especially \"support actions\". ", "Purely informative actions were preferred (85% of midwives), revealing disparities in dissemination of information. ", "Estimated difficulties in implementing PHE varied according to the type of practice e, with the exception of insufficient training (38 %). ", "Most midwives agreed on the importance of their role in PHE (98%) and the efficacy of PHE for women (79%). ", "This study helps to more clearly define the diversity of PHE actions implemented by midwives. ", "It also raises the issue of their initial and continuing training in this area and remuneration of PHE actions other than prenatal education." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.017857142857142856, 0, 0, 0, 0, 0, 0, 0, 0.0078125, 0, 0, 0.009345794392523364, 0, 0 ]
0.002501
5
[ { "analysis_explanation": null, "end": 45, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39 }, { "analysis_explanation": null, "end": 395, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 365 } ]
[ "Edmundo (footballer)\n\nEdmundo Alves de Souza Neto (born 2 April 1971), better known simply as Edmundo, is a Brazilian former footballer who played as a forward.", "\n\nNicknamed as Animal, Edmundo played for Brazil national team in the victorious 1997 South America Cup, and at the 1998 World Cup, where they finished in second place. ", "With Brazilian side Palmeiras, he won the Brasileirão Série A twice in a row, in 1993 and 1994, while with Vasco da Gama he won the 1997 edition, scoring 29 goals; he also had spells in Italy and Japan.", "\n\nA talented yet controversial footballing figure, he drew attention both for his skill, as well as for his volatile behaviour, both on and off the pitch.", "\n\nClub career\n\nVasco da Gama\nBorn in Niterói, Edmundo played for several clubs throughout his career, both in his native country of Brazil and abroad. ", "However, the history of Edmundo, as a football player, is strongly intertwined with Vasco da Gama. ", "He began his career with the club in the amateur divisions in 1982, also later playing for the Botafogo youth side before returning to the club. ", "He went on to make his debut as professional with the Vasco da Gama senior side, where he remained until 1992.", "\n\nHe returned to the club in 1996, and in 1997, when Vasco won the Brasileirão Série A, he was the season's top scorer, his 29 goals breaking a record set by Reinaldo of Atlético Mineiro 20 years earlier. ", "In that same year, Vasco da Gama scored 69 goals. ", "That season, Edmundo was named the league's player of the year. ", "He also scored 6 goals in a match against União São João. ", "After moving between several clubs abroad, he returned to Vasco da Gama in 1999, where he joined his international team-mate Romário and was initially handed the captain's armband, reaching the final of the 2000 Club World Championship, defeating Manchester United in the process; he was later kicked off the team in 2000 by vice-president Eurico Miranda for lack of discipline, however, after he left the dressing-room before a game. ", "He returned to Vasco da Gama again in 2003, where he remained until the end of the season when was released after scoring only 7 goals in 19 appearances. ", "He returned to Vasco da Gama in 2008, when he played the last season of his career. ", "In total, he made 127 appearances with the club.", "\n\nRegarding his attachment to the club, Edmundo stated that his love for Vasco da Gama was like that between a son and his mother. ", "On 28 March 2012, he played his testimonial match when Vasco da Gama hosted Barcelona de Guayaquil in a friendly match. ", "The game ended 9–1 with Edmundo scoring twice.", "\n\nCareer in Brazil\nIn 1993, Edmundo left Vasco da Gama and transferred to Palmeiras, where he won the Brasileirão twice, in 1993 and 1994, scoring 34 goals in 89 appearances for the club. ", "Despite his success, he had several disputes with his manager Wanderley Luxemburgo, and was involved in an altercation with his team-mate Antônio Carlos, which led to Edmundo being sacked by the club. ", "He later joined Flamengo for a season in 1995 (2 goals in 14 appearances), and subsequently signed for Corinthians in 1996, although he failed to make an appearance for the club, as he reportedly stormed out of a training session after an argument. ", "He later joined Santos on loan in 2000 (scoring 13 goals in 20 appearances), and Cruzeiro in 2001 (3 goals in 13 appearances). ", "After another spell at Vasco da Gama, he joined Fluminense in 2004, scoring 7 goals in 20 appearances, and also scored 1 goal in 2 appearances whilst playing for Nova Iguaçu in 2005.", "\n\nTime in Italy and abroad\nIn 1997, Italian club Fiorentina purchased Edmundo for 13 billion lire, and he remained with the team until 1999. ", "Despite putting on some spectacular performances during his tenure in Florence, which initially endeared him with the fans, his stint in Italy was also marked by inconsistency and controversy, which drew criticism from the press. ", "One particular incident which drew much publicity occurred during the 1998–99 season, under manager Giovanni Trapattoni; Edmundo left the club midway through the season in order to attend the Rio Carnival. ", "Although at that point Fiorentina were first in the league, due to his absence, as well as strike partner Gabriel Batistuta's injury, Fiorentina missed out on the league title at the end of the season, and as a result, Edmundo had a falling out with the club, his manager, and his team-mates.", "\n\nIn January 2001, he was sent out on loan to Napoli, where he remained until June. ", "He was injured during his debut with the club against Udinese however, which kept him sidelined, and was unable to prevent the club's relegation to Serie B at the end of the season.", "\n\nLater that year, he joined J1 League club Tokyo Verdy, scoring 18 goals in 31 appearances, and remaining with the club until 2002. ", "He joined Japanese club Urawa Red Diamonds in 2003, but did not make a single appearance for the team.", "\n\nLater years\nDuring the end of his career, Edmundo still managed to perform well, despite not being as physically strong or fit as he had been during his prime in the mid-90s, although his performances became increasingly less consistent with age. ", "Nevertheless, his football skills and goalscoring proved to be fundamental in helping Figueirense avoid relegation in the 2005 Brasileirão Série A, as he managed 15 goals in 31 appearances. ", "The following season, he also saved Palmeiras from relegation during the 2006 Brasileirão Série A.\n\nAlong with Jorge Valdivia and Marcos, Edmundo was one of the most important footballers for Palmeiras during the 2007 season; however, his contract was not renewed at the end of the season. ", "There are two versions of this fact: according to the \"official\" one, his salary was too high for his irregular performances. ", "But it is more possible that the actual reason was that Caio Júnior, who was favorable to this permanence, was sacked and Vanderlei Luxemburgo, who has personal problems with Edmundo, was hired.", "\n\nIn January 2008, Edmundo returned to Vasco da Gama, although he was not able to prevent the club's relegation to the 2009 Campeonato Brasileiro Série B. Edmundo announced retirement from football on 30 May 2008, but he returned to play until the end of 2008 season.", "\n\nInternational career\nAt international level Edmundo made 42 appearances for Brazil between 1992 and 2000, scoring 10 goals. ", "He was a member of the team that won the 1997 Copa América, and also made two substitute appearances at the 1998 FIFA World Cup, including the final where the team lost 3–0 to hosts France and finished in second place. ", "Additionally, Edmundo was a member of the Brazil squad that took part at the 1993 and 1995 Copa América tournaments, winning a runners-up medal in the latter edition; he also won a bronze medal at the 1998 CONCACAF Gold Cup. ", "Furthermore, he took part in two exhibition tournaments with the Brazil national side, winning the 1995 Umbro Cup, and finishing second in the 1997 Tournoi de France. ", "Despite his talent, however, Edmundo's turbulent lifestyle off the pitch, as well as extensive competition from several world-class Brazilian forwards at the time (including Bebeto, Romário, and Ronaldo), are thought to have limited his playing time at international level.", "\n\nStyle of play\nEdmundo was a quick, powerful, creative, and technically gifted player, who was known for his pace, strength, acceleration, and his outstanding dribbling skills, as well as his use of feints, including the Pelé runaround move; as a second striker, he was capable of both scoring and assisting many goals. ", "A versatile forward, Edmundo played primarily as a second striker, but was capable to play as a winger or even as a main striker or attacking midfielder. ", "Despite his talent, he was also a tenacious and controversial footballer, who was criticised for his poor work-rate and lack of consistency at times; he was also known for his aggression and poor behaviour on the pitch, which often led him to pick up cards, and earned him the nickname O Animal (The Animal, in Portuguese).", "\n\nOutside of football\nIn the middle of 2009, Edmundo became a football pundit for Rede TV!. ", "In the beginning of 2010, Rede Bandeirantes hired him; he was part of the broadcaster's journalistics team in the 2010 FIFA World Cup and UEFA Euro 2012 coverages.", "\n\nControversy\nKnown for his tenacious style of play and aggressive behaviour, as well as his skill on the pitch, Edmundo was also involved in several incidents off the pitch throughout his career; he had several disagreements with his managers and officials, and was known for his \"partying\". ", "In 1999, he faced prosecution by animal welfare groups after hiring an entire circus to perform in his back garden to celebrate his son's first birthday. ", "At the party, he was accused by some individuals of the press of having a chimpanzee called Pedrinho drunk on beer and whiskey. ", "Subsequent images of this appeared in the media (including the February 2004 issue of the UK version of FHM magazine) and have passed into a football legend. ", "Days later, Edmundo proved those accusations were false. ", "The same year, during his turbulent time with Fiorentina, he also escaped a four year prison sentence for driving drunk and crashing his car during the Rio Carnival of 1995, resulting in the deaths of three people; for his behaviour he received a seven-day suspended sentence. ", "In 1998, due to his difficult relationship with the Florentine club, he suddenly left for the Rio Carnival halfway through the season, and was two days late in returning to Florence according to the Italian newspaper Il Corriere della Sera.", "\n\nCareer statistics\n\nClub\n\nInternational\n\nHonours\n\nClub\nVasco da Gama\nBrasileirão Série A: 1997\nRio de Janeiro State Championship: 1992\n\nPalmeiras\nBrasileirão Série A: 1993, 1994 \nSão Paulo State Championship: 1993, 1994\nRio de Janeiro-São Paulo Tournament: 1993\n\nInternational\nBrazil\nCopa América: 1997\nUmbro Cup: 1995\n\nIndividual\nBola de Ouro: 1997\nBola de Prata: 1993, 1997\nSouth American Team of the Year: 1995, 1997\nSouth American Player of the Year Bronze Ball: 1995\nChuteira de Ouro: 1997\nCopa do Brazil top scorer: 2008\nBrasileirão Série A top scorer: 1997\nFIFA Club World Cup Silver Ball: 2000\n\nReferences and notes\n\nExternal links\n \n\n \n\nCategory:1971 births\nCategory:Living people\nCategory:Sportspeople from Niterói\nCategory:Association football forwards\nCategory:Brazilian footballers\nCategory:Brazilian expatriate footballers\nCategory:Expatriate footballers in Japan\nCategory:CR Vasco da Gama players\nCategory:Sociedade Esportiva Palmeiras players\nCategory:Clube de Regatas do Flamengo footballers\nCategory:Sport Club Corinthians Paulista players\nCategory:Santos FC players\nCategory:Nova Iguaçu Futebol Clube players\nCategory:Figueirense FC players\nCategory:ACF Fiorentina players\nCategory:S.S.C. Napoli players\nCategory:Tokyo Verdy players\nCategory:Urawa Red Diamonds players\nCategory:Cruzeiro Esporte Clube players\nCategory:1993 Copa América players\nCategory:1998 FIFA World Cup players\nCategory:Campeonato Brasileiro Série A players\nCategory:Serie A players\nCategory:Expatriate footballers in Italy\nCategory:J1 League players\nCategory:Brazil international footballers\nCategory:Copa América-winning players\nCategory:Brazilian expatriate sportspeople in Japan\nCategory:Brazilian expatriate sportspeople in Italy\nCategory:1998 CONCACAF Gold Cup players\nCategory:Brazilian beach soccer players" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.00625, 0.005917159763313609, 0.009900990099009901, 0, 0.019867549668874173, 0.010101010101010102, 0.006896551724137931, 0, 0.00975609756097561, 0.02, 0.015625, 0.017241379310344827, 0.004597701149425287, 0, 0, 0, 0.007633587786259542, 0.016666666666666666, 0.021739130434782608, 0.010638297872340425, 0.009950248756218905, 0, 0.007874015748031496, 0.005494505494505495, 0.0070921985815602835, 0.004347826086956522, 0.0048543689320388345, 0.010273972602739725, 0, 0.0055248618784530384, 0.015037593984962405, 0.00980392156862745, 0, 0.005263157894736842, 0.010344827586206896, 0, 0.015463917525773196, 0.011235955056179775, 0, 0.0091324200913242, 0.0044444444444444444, 0.005988023952095809, 0.01098901098901099, 0.003115264797507788, 0, 0, 0.010869565217391304, 0.006134969325153374, 0, 0.006493506493506494, 0.0078125, 0.006329113924050633, 0.017543859649122806, 0.0036101083032490976, 0.0125, 0.010532150776053215 ]
0.007516
5
[ { "analysis_explanation": null, "end": 7, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 49, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22 }, { "analysis_explanation": null, "end": 68, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56 }, { "analysis_explanation": null, "end": 101, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94 }, { "analysis_explanation": null, "end": 117, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108 }, { "analysis_explanation": null, "end": 189, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182 }, { "analysis_explanation": null, "end": 207, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201 }, { "analysis_explanation": null, "end": 244, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240 }, { "analysis_explanation": null, "end": 342, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 333 }, { "analysis_explanation": null, "end": 413, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 409 }, { "analysis_explanation": null, "end": 422, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 418 }, { "analysis_explanation": null, "end": 448, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 435 }, { "analysis_explanation": null, "end": 464, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 460 }, { "analysis_explanation": null, "end": 519, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514 }, { "analysis_explanation": null, "end": 529, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 524 }, { "analysis_explanation": null, "end": 726, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 719 }, { "analysis_explanation": null, "end": 735, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 728 }, { "analysis_explanation": null, "end": 820, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 814 }, { "analysis_explanation": null, "end": 864, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 857 }, { "analysis_explanation": null, "end": 930, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 917 }, { "analysis_explanation": null, "end": 998, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 994 }, { "analysis_explanation": null, "end": 1186, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1182 }, { "analysis_explanation": null, "end": 1219, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1215 }, { "analysis_explanation": null, "end": 1232, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1228 }, { "analysis_explanation": null, "end": 1244, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1239 }, { "analysis_explanation": null, "end": 1291, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1285 }, { "analysis_explanation": null, "end": 1352, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1344 }, { "analysis_explanation": null, "end": 1364, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1356 }, { "analysis_explanation": null, "end": 1372, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1365 }, { "analysis_explanation": null, "end": 1389, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1373 }, { "analysis_explanation": null, "end": 1408, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1394 }, { "analysis_explanation": null, "end": 1423, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1410 }, { "analysis_explanation": null, "end": 1452, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1441 }, { "analysis_explanation": null, "end": 1461, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1454 }, { "analysis_explanation": null, "end": 1503, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1495 }, { "analysis_explanation": null, "end": 1634, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1621 }, { "analysis_explanation": null, "end": 1642, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1638 }, { "analysis_explanation": null, "end": 1695, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1688 }, { "analysis_explanation": null, "end": 1827, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1810 }, { "analysis_explanation": null, "end": 1884, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1880 }, { "analysis_explanation": null, "end": 1917, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1903 }, { "analysis_explanation": null, "end": 2026, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2013 }, { "analysis_explanation": null, "end": 2040, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2036 }, { "analysis_explanation": null, "end": 2087, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2066 }, { "analysis_explanation": null, "end": 2180, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2167 }, { "analysis_explanation": null, "end": 2188, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2184 }, { "analysis_explanation": null, "end": 2220, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2205 }, { "analysis_explanation": null, "end": 2330, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2323 }, { "analysis_explanation": null, "end": 2369, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2356 }, { "analysis_explanation": null, "end": 2430, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2417 }, { "analysis_explanation": null, "end": 2482, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2469 }, { "analysis_explanation": null, "end": 2512, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2490 }, { "analysis_explanation": null, "end": 2565, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2558 }, { "analysis_explanation": null, "end": 2597, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2591 }, { "analysis_explanation": null, "end": 2605, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2601 }, { "analysis_explanation": null, "end": 2614, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2607 }, { "analysis_explanation": null, "end": 2633, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2620 }, { "analysis_explanation": null, "end": 2707, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2703 }, { "analysis_explanation": null, "end": 2716, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2712 }, { "analysis_explanation": null, "end": 2849, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2829 }, { "analysis_explanation": null, "end": 2919, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2905 }, { "analysis_explanation": null, "end": 2941, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2934 }, { "analysis_explanation": null, "end": 3013, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2997 }, { "analysis_explanation": null, "end": 3082, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3071 }, { "analysis_explanation": null, "end": 3090, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3086 }, { "analysis_explanation": null, "end": 3239, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3233 }, { "analysis_explanation": null, "end": 3255, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3251 }, { "analysis_explanation": null, "end": 3314, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3310 }, { "analysis_explanation": null, "end": 3410, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3406 }, { "analysis_explanation": null, "end": 3517, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3506 }, { "analysis_explanation": null, "end": 3525, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3521 }, { "analysis_explanation": null, "end": 3540, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3535 }, { "analysis_explanation": null, "end": 3559, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3555 }, { "analysis_explanation": null, "end": 3568, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3561 }, { "analysis_explanation": null, "end": 3664, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3660 }, { "analysis_explanation": null, "end": 3744, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3736 }, { "analysis_explanation": null, "end": 3808, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3803 }, { "analysis_explanation": null, "end": 3980, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3962 }, { "analysis_explanation": null, "end": 4015, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3996 }, { "analysis_explanation": null, "end": 4024, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4017 }, { "analysis_explanation": null, "end": 4227, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4208 }, { "analysis_explanation": null, "end": 4302, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4281 }, { "analysis_explanation": null, "end": 4328, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4321 }, { "analysis_explanation": null, "end": 4410, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4398 }, { "analysis_explanation": null, "end": 4475, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4471 }, { "analysis_explanation": null, "end": 4538, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4531 }, { "analysis_explanation": null, "end": 4657, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4636 }, { "analysis_explanation": null, "end": 4674, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4659 }, { "analysis_explanation": null, "end": 4712, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4701 }, { "analysis_explanation": null, "end": 4788, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4784 }, { "analysis_explanation": null, "end": 4808, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4800 }, { "analysis_explanation": null, "end": 4840, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4836 }, { "analysis_explanation": null, "end": 4904, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4893 }, { "analysis_explanation": null, "end": 4942, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4935 }, { "analysis_explanation": null, "end": 5066, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5055 }, { "analysis_explanation": null, "end": 5237, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5226 }, { "analysis_explanation": null, "end": 5266, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5262 }, { "analysis_explanation": null, "end": 5350, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5330 }, { "analysis_explanation": null, "end": 5407, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5403 }, { "analysis_explanation": null, "end": 5455, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5441 }, { "analysis_explanation": null, "end": 5466, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5460 }, { "analysis_explanation": null, "end": 5475, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5468 }, { "analysis_explanation": null, "end": 5547, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5543 }, { "analysis_explanation": null, "end": 5618, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5597 }, { "analysis_explanation": null, "end": 5813, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5802 }, { "analysis_explanation": null, "end": 5888, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5868 }, { "analysis_explanation": null, "end": 5928, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5921 }, { "analysis_explanation": null, "end": 5956, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5944 }, { "analysis_explanation": null, "end": 5965, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5958 }, { "analysis_explanation": null, "end": 5991, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5978 }, { "analysis_explanation": null, "end": 6062, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6058 }, { "analysis_explanation": null, "end": 6151, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6140 }, { "analysis_explanation": null, "end": 6205, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6183 }, { "analysis_explanation": null, "end": 6258, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6251 }, { "analysis_explanation": null, "end": 6289, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6283 }, { "analysis_explanation": null, "end": 6311, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6290 }, { "analysis_explanation": null, "end": 6376, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6372 }, { "analysis_explanation": null, "end": 6443, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6439 }, { "analysis_explanation": null, "end": 6519, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6513 }, { "analysis_explanation": null, "end": 6571, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6564 }, { "analysis_explanation": null, "end": 6598, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6592 }, { "analysis_explanation": null, "end": 6631, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6627 }, { "analysis_explanation": null, "end": 6640, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6636 }, { "analysis_explanation": null, "end": 6653, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6646 }, { "analysis_explanation": null, "end": 6755, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6751 }, { "analysis_explanation": null, "end": 6846, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6840 }, { "analysis_explanation": null, "end": 6878, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6874 }, { "analysis_explanation": null, "end": 6922, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6918 }, { "analysis_explanation": null, "end": 6940, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6923 }, { "analysis_explanation": null, "end": 6978, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6971 }, { "analysis_explanation": null, "end": 7083, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7074 }, { "analysis_explanation": null, "end": 7131, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7116 }, { "analysis_explanation": null, "end": 7144, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7137 }, { "analysis_explanation": null, "end": 7237, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7230 }, { "analysis_explanation": null, "end": 7440, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7436 }, { "analysis_explanation": null, "end": 7563, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7556 }, { "analysis_explanation": null, "end": 8010, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8000 }, { "analysis_explanation": null, "end": 8054, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8036 }, { "analysis_explanation": null, "end": 8063, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8056 }, { "analysis_explanation": null, "end": 8127, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8106 }, { "analysis_explanation": null, "end": 8221, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8217 }, { "analysis_explanation": null, "end": 8255, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8246 }, { "analysis_explanation": null, "end": 8385, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8378 }, { "analysis_explanation": null, "end": 8565, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8561 }, { "analysis_explanation": null, "end": 8916, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8903 }, { "analysis_explanation": null, "end": 8932, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8930 }, { "analysis_explanation": null, "end": 9008, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8998 }, { "analysis_explanation": null, "end": 9017, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9010 }, { "analysis_explanation": null, "end": 9068, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9055 }, { "analysis_explanation": null, "end": 9140, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9131 }, { "analysis_explanation": null, "end": 9227, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9223 }, { "analysis_explanation": null, "end": 9311, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9302 }, { "analysis_explanation": null, "end": 9339, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9335 }, { "analysis_explanation": null, "end": 9394, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9384 }, { "analysis_explanation": null, "end": 9488, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9475 }, { "analysis_explanation": null, "end": 9513, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9505 }, { "analysis_explanation": null, "end": 9538, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9531 }, { "analysis_explanation": null, "end": 9571, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9567 }, { "analysis_explanation": null, "end": 9666, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9662 }, { "analysis_explanation": null, "end": 9681, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9667 }, { "analysis_explanation": null, "end": 9706, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9702 }, { "analysis_explanation": null, "end": 9743, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9739 }, { "analysis_explanation": null, "end": 9749, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9745 }, { "analysis_explanation": null, "end": 9785, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9781 }, { "analysis_explanation": null, "end": 9791, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9787 }, { "analysis_explanation": null, "end": 9827, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9792 }, { "analysis_explanation": null, "end": 9833, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9829 }, { "analysis_explanation": null, "end": 9855, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9849 }, { "analysis_explanation": null, "end": 9874, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9870 }, { "analysis_explanation": null, "end": 9890, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9886 }, { "analysis_explanation": null, "end": 9915, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9903 }, { "analysis_explanation": null, "end": 9921, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9917 }, { "analysis_explanation": null, "end": 9935, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9922 }, { "analysis_explanation": null, "end": 9941, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9937 }, { "analysis_explanation": null, "end": 9947, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9943 }, { "analysis_explanation": null, "end": 9991, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9987 }, { "analysis_explanation": null, "end": 10006, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9992 }, { "analysis_explanation": null, "end": 10043, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10039 }, { "analysis_explanation": null, "end": 10066, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10062 }, { "analysis_explanation": null, "end": 10081, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10075 }, { "analysis_explanation": null, "end": 10098, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10094 }, { "analysis_explanation": null, "end": 10135, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10131 }, { "analysis_explanation": null, "end": 10354, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10345 }, { "analysis_explanation": null, "end": 10385, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10376 }, { "analysis_explanation": null, "end": 10449, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10444 }, { "analysis_explanation": null, "end": 10786, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10773 }, { "analysis_explanation": null, "end": 10918, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10900 }, { "analysis_explanation": null, "end": 11084, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11079 }, { "analysis_explanation": null, "end": 11127, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11121 }, { "analysis_explanation": null, "end": 11210, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11201 }, { "analysis_explanation": null, "end": 11243, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11238 }, { "analysis_explanation": null, "end": 11262, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11253 }, { "analysis_explanation": null, "end": 11295, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11290 }, { "analysis_explanation": null, "end": 11354, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11345 }, { "analysis_explanation": null, "end": 4688, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 4686 }, { "analysis_explanation": null, "end": 11096, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 11094 } ]
[ "Megachile cheesmanae\n\nMegachile cheesmanae is a species of bee in the family Megachilidae. ", "It was described by Michener in 1965.", "\n\nReferences\n\nCheesmanae\nCategory:Insects described in 1965" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0, 0.02702702702702703, 0 ]
0.009009
5
[ { "analysis_explanation": null, "end": 119, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 111 }, { "analysis_explanation": null, "end": 127, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123 }, { "analysis_explanation": null, "end": 186, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182 } ]
[ "Carmen Mathews\n\nCarmen Sylvia Mathews (May 8, 1911 – August 31, 1995) was an American actress and environmentalist.", "\n\nBiography\nMathews was born in Philadelphia. ", "She studied first at Bennett Junior College and then in London at the Royal Academy of Dramatic Art. ", " She began her professional acting appearance with the Stratford-on-Avon Shakespearean Company before moving back to the United States.", "\n\nHer Shakespearean roles included Ophelia in Hamlet and the Queen in Richard II. ", " Her film credits include Butterfield 8 (1960), A Rage to Live (1965), Rabbit, Run (1970), Sounder (1972), Top of the Hill (1980) and Daniel (1983). ", "On television she performed on a wide variety of series over a span of four decades. ", "A few of those series include appearances on six episodes of Alfred Hitchcock Presents (1955–65), as well as roles in a 1961 episode of The Twilight Zone and a 1964 episode of The Fugitive. ", "One of her more memorable televised performances is as Colonel Lilian Rayborn on Episode 150 of M*A*S*H. Toward the end of her career, in 1990, she was cast in the Last Best Year with Mary Tyler Moore and Bernadette Peters.", "\n\nIn 1975, Mathews set up and ran a residential summer camp for disadvantaged children on her 100-acre farm in Redding, Connecticut. ", "Toward the end her of life, Mathews, a passionate environmentalist, made a perpetual donation of her 100-acre New Pond Farm to the Redding Land Trust, to ensure that it would retain its woods, fields, pond and marsh. ", "The United Nations Association of the United States of America named Mathews one of Connecticut's outstanding women in 1987.", "\n\nDeath\nMathews died at her farm in Redding, Connecticut in 1995, aged 84, from undisclosed causes.", "\n\nFilmography\n\nReferences\n\nExternal links\nCarmen Mathews papers, 1921-1995, held by the Billy Rose Theatre Division, New York Public Library for the Performing Arts\nNew Pond Farm's page on Carmen Mathews\nRemembering Carmen Mathews\n\nCategory:1911 births\nCategory:1995 deaths\nCategory:Actresses from Philadelphia\nCategory:American environmentalists\nCategory:American women environmentalists\nCategory:American stage actresses\nCategory:American Shakespearean actresses\nCategory:American film actresses\nCategory:Bennett College (New York) alumni\nCategory:Alumni of the Royal Academy of Dramatic Art\nCategory:20th-century American actresses\nCategory:People from Redding, Connecticut" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0, 0, 0.019801980198019802, 0.007407407407407408, 0.012195121951219513, 0.020134228187919462, 0, 0.005263157894736842, 0.013452914798206279, 0, 0.009216589861751152, 0.008064516129032258, 0, 0.0073964497041420114 ]
0.007352
5
[ { "analysis_explanation": null, "end": 14, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 37, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16 }, { "analysis_explanation": null, "end": 50, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39 }, { "analysis_explanation": null, "end": 68, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53 }, { "analysis_explanation": null, "end": 85, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77 }, { "analysis_explanation": null, "end": 158, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146 }, { "analysis_explanation": null, "end": 222, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216 }, { "analysis_explanation": null, "end": 324, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 315 }, { "analysis_explanation": null, "end": 394, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 377 }, { "analysis_explanation": null, "end": 436, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 429 }, { "analysis_explanation": null, "end": 474, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 464 }, { "analysis_explanation": null, "end": 512, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 501 }, { "analysis_explanation": null, "end": 520, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 516 }, { "analysis_explanation": null, "end": 543, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 539 }, { "analysis_explanation": null, "end": 563, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 559 }, { "analysis_explanation": null, "end": 579, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 575 }, { "analysis_explanation": null, "end": 603, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 599 }, { "analysis_explanation": null, "end": 615, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 609 }, { "analysis_explanation": null, "end": 621, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 617 }, { "analysis_explanation": null, "end": 707, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 685 }, { "analysis_explanation": null, "end": 833, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 829 }, { "analysis_explanation": null, "end": 873, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 869 }, { "analysis_explanation": null, "end": 976, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 962 }, { "analysis_explanation": null, "end": 1041, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1037 }, { "analysis_explanation": null, "end": 1077, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1059 }, { "analysis_explanation": null, "end": 1099, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1083 }, { "analysis_explanation": null, "end": 1121, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1104 }, { "analysis_explanation": null, "end": 1130, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1126 }, { "analysis_explanation": null, "end": 1175, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1169 }, { "analysis_explanation": null, "end": 1239, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1232 }, { "analysis_explanation": null, "end": 1252, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1241 }, { "analysis_explanation": null, "end": 1566, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1555 }, { "analysis_explanation": null, "end": 1594, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1590 }, { "analysis_explanation": null, "end": 1637, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1630 }, { "analysis_explanation": null, "end": 1650, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1639 }, { "analysis_explanation": null, "end": 1658, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1654 }, { "analysis_explanation": null, "end": 1667, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1665 }, { "analysis_explanation": null, "end": 1748, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1734 }, { "analysis_explanation": null, "end": 1766, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1757 }, { "analysis_explanation": null, "end": 1895, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1881 }, { "analysis_explanation": null, "end": 1922, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1908 }, { "analysis_explanation": null, "end": 2020, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2012 }, { "analysis_explanation": null, "end": 2056, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2048 }, { "analysis_explanation": null, "end": 2098, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2090 }, { "analysis_explanation": null, "end": 2132, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2124 }, { "analysis_explanation": null, "end": 2174, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2166 }, { "analysis_explanation": null, "end": 2224, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2216 }, { "analysis_explanation": null, "end": 2307, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2286 }, { "analysis_explanation": null, "end": 2316, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2308 }, { "analysis_explanation": null, "end": 2355, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2348 }, { "analysis_explanation": null, "end": 2368, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2357 } ]
[ "Congresso AMEMG\n\nThe Crucial Element to Highly effective Building a Custom-made Essay\n\nThe Crucial Element to Highly effective Building a Custom-made Essay\n\nIf you’re composing a back drop enhancer, sometimes it could be acceptable that you can give you an interpretation for this resource or take a spot (thesis). ", "Our tailor-made essay support has years of solid practical knowledge in the area of editing. ", "Any penning often takes a designated information and techniques. ", "If You Check out Little Else Immediately, Check This Out State on Resulting in a Unique Essay On the list of very best inconveniences about using the web establishing devices and resolutions is the way individuals need customized essays. ", "So, if you’re not looking for low-priced specialty generating strategy, however for main superior solutions you could expect, then you really found the most suitable facility! ", "With sizable comprehension, our specialty formulating company makes sure all our composing solutions should provide you with impressive results. ", "IT platform is a vibrant realm of operation so, keeping adaptability is extremely important. ", "If you’d like superior quality solutions which allows you get tremendous heights, you will definitely be just handful of apps relocate and thereafter get what you will really enjoy. ", "A marketing and advertising technique is seen as a guide book towards the marketing tasks of the business enterprise in a predetermined time frame, usually about 5 many years. ", "Most Evident Building a Made to order Essay It’s only normal to concern yourself with employing an online essay article author as you cannot ever be some specific regardless if https://samedayessay.org/\nyou’re employing the exact assistance or not. ", "If you’re finding it difficult to prepare an essay, it is always possible to decide to put a purchase order for getting a brand name-new dose of deliver the results with reference to your own preference or you will may well create it your self after which you can invest in a re-create or proofreading expertise. ", "As a result, you’re ready to ensure the essay is showed in a very trendy that assures a first-class standard and definitely will not come out produced by other people.", "\n\nA, we get a particularly thorough number of our editors. ", "You may also speak to writers to supply you with a quick ( close to 100 words and phrases) first appearance to choose their coming up with knowledge and choose the most beneficial copy writer. ", "Most creators will most definitely have a very evening or two a long time to commence. ", "The 30-Secondary Cheat for Creating a Tailor-made Essay The custom coming up with agencies get a detailed knowledge of the problem nearly all the scholars end up and don’t overprice. ", "There are various advantages of deciding to build a Master’s qualification online. ", "Generating a Made to order Essay Basics Defined If you feel that is definitely the next web-site the place where you’ll discover studies reports available for sale, you couldn’t are more wrong. ", "It’s accordingly vital for students to operate market research or research study within the composing enterprises web to settle on more dependable business enterprise which might have sophisticated personalised investigate records. ", "Generating a personalised evaluation pieces of paper is a crucial exercise on consideration within their bigger necessity for specialized investigate records. ", "Various great freelance writers at our customers are all set to you can make your old fashioned paper therefore it won’t set you back big money. ", "It takes time for consultant authors to finish reduced outstanding papers, what factors to say about students who just do not have ample rehearse in educational writing articles. ", "When component of effort is named literature, it’s in most cases viewed as an awesome thing of beauty. ", "The bibliography of a typical jot down my specialized paper services are necessary mainly because it will allow your reader or site visitor to spell out the data which is certainly covered prepare my made to order report answers structure. ", "Our personalized essay generating services tends to make several you’ll get your money back will you not acquire your excellent-good cardstock at time, or we’ll provide you with a perform refund. ", "Regardless of your academic disciplines, it is easy to methodology web-based personalised essay company to encounter the ideal report.", "\n\nThe Favorite Causing a Tailor made Essay The very first the initial one is to the primary document about the area. ", "Each one essay is put together in accordance with the prerequisites of these school students. ", "You aspire to distribute a plagiarism-complimentary document getting a single plan. ", "You could have presently identified why it’s very important to generate personalized essays a priority within pre-published essays, but you still need to select a trustworthy business. ", "Our specialty crafting service demands the perfect really care when composing any portion of an essay. ", "Subsequently, in the event you develop a custom made essay invest in at most reliable-specialized-newspapers. ", "Our website page will be here with the intention to assist in you of of the essay writing articles problems by providing you the right essay writing articles enable. ", "Applying an essay creating solution isn’t something to conserve the amount of money on. ", "For those who continue to create essays, there are many unique laws or guidelines that would permit them to produce a excellent essay.", "\n\nAmongst the principal explanations why students ought not to be concerned with composing caliber school essays often is the very easy actuality that help with generating has already been a service that’s easily available and available today. ", "Hence, in cases like this they seek to consultant suggestion and obtain essays on line. ", "They are not able to write essays without any plagiarizing the information. ", "It is possible to regulate the continuing development of your essay through your credit account. ", "You could buy your essay within budgetary organize. ", "Every time you need to make an essay on your own, there are various nice customs that may be useful." ]
{ "pile_set_name": "Pile-CC" }
[ 0.006349206349206349, 0, 0, 0, 0, 0, 0, 0, 0, 0.008032128514056224, 0, 0, 0, 0, 0, 0.00546448087431694, 0, 0.005154639175257732, 0, 0, 0, 0, 0, 0, 0, 0, 0.017094017094017096, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.001027
5
[ { "analysis_explanation": null, "end": 354, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 349 }, { "analysis_explanation": null, "end": 1481, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1463 }, { "analysis_explanation": null, "end": 2517, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2503 }, { "analysis_explanation": null, "end": 5719, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5714 }, { "analysis_explanation": null, "end": 1685, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 1660 } ]
[ "Addressing the problem of inaccuracy of measured 24-hour urine collections due to incomplete collection.", "\nThe 24-hour urine collection is widely considered the gold standard for assessing 24-hour excretion of various analytes. ", "Yet, studies show that >30% of collections are incomplete and hence understate the true 24-hour excretion. ", "We previously validated an equation for estimating an individual's 24-hour creatinine excretion, based on weight, sex, race, and age. ", "The present study examines whether routinely correcting measured 24-hour excretion of an analyte using the ratio of estimated to measured 24-hour urine creatinine mitigates the misleadingly low values that result from undercollection. ", "Ninety-nine participants, recruited from an outpatient hypertension clinic, submitted a 24-hour urine collection for measurement of creatinine and sodium excretion. ", "The urine collections were dichotomized into complete (n = 63) and incomplete (n = 36) collections based on previously described criteria for expected 24-hour creatinine excretion. ", "To adjust for possible incompleteness of collections, the measured 24-hour values were then corrected by multiplying them by the ratio of estimated to measured 24-hour urine creatinine. ", "The mean 24-hour creatinine excretion was 1682 mg/d among complete collectors. ", "Among incomplete collectors, the mean was 1211 mg/d before and 1695 mg/d after, adjustment. ", "Similarly, mean 24-hour sodium excretion was 156 mEq/d among complete collectors, whereas among incomplete collectors it was 121 mEq/d before and 171 mEq/d after, adjustment. ", "Undercollection of 24-hour urines is a common problem and results in misleadingly low values for excretion of analytes being measured. ", "Routine adjustment of 24-hour urine values using estimated values for 24-hour creatinine excretion can greatly mitigate artifactually low 24-hour excretion results." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 56, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49 }, { "analysis_explanation": null, "end": 116, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109 }, { "analysis_explanation": null, "end": 194, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 187 }, { "analysis_explanation": null, "end": 321, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 314 }, { "analysis_explanation": null, "end": 407, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 400 }, { "analysis_explanation": null, "end": 539, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 532 }, { "analysis_explanation": null, "end": 612, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 605 }, { "analysis_explanation": null, "end": 797, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 790 }, { "analysis_explanation": null, "end": 1025, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1018 }, { "analysis_explanation": null, "end": 1122, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1115 }, { "analysis_explanation": null, "end": 1215, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1208 }, { "analysis_explanation": null, "end": 1250, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1243 }, { "analysis_explanation": null, "end": 1285, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1276 }, { "analysis_explanation": null, "end": 1359, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1355 }, { "analysis_explanation": null, "end": 1428, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1421 }, { "analysis_explanation": null, "end": 1606, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1599 }, { "analysis_explanation": null, "end": 1744, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1737 }, { "analysis_explanation": null, "end": 1792, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1785 }, { "analysis_explanation": null, "end": 1860, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1853 }, { "analysis_explanation": null, "end": 1280, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 1276 }, { "analysis_explanation": null, "end": 1380, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 1376 } ]
[ "Greenpeace Applauds Cisco, Ericsson, Wags Finger At Dell, Oracle\n\nGreenpeace on Tuesday updated its Cool IT Leaderboard in conjunction with the climate negotiations in Cancun occurring this week at the COP16 conference. ", "Cisco retained its top spot at the greenest IT company, earning 70 out of 100 points from the ecology watchdog organization. ", "Oracle was a new entry on the list and came in dead last, with a mere 12 points.", "\n\nEricsson landed a distant second to Cisco, at 57 points, with Fujitsu snagging third at 52 points. ", "Dell earned 39 points, which would be a definite F grade if Greenpeace was a college professor. ", "And yet, compared to the whole 17 companies on the leaderboard, Dell's score was in the top-third (a C+ if the professor graded on the curve). ", "Dell's scores improved over Version 3 of the leaderboard, too. ", "We point this out because of all the IT companies on the list, Dell has been specifically targeted by Greenpeace with its \"Tell Dell to phase out the use of toxic chemicals campaign.\"", "\n\nGreenpeace has been urging environmentalists to e-mail Michael Dell and tell him that it's not ok that he waffle on his commitment to eliminate toxic chemicals from products. \"", "Dell was penalized in the latest Greenpeace Guide to Greener Electronics for backtracking on its commitments to eliminate toxic PVC plastic and brominated flame retardants (BFRs) from its products, despite the fact that many of its competitors have already done so.\"", "\n\nThe leaderboard represents Greenpeace's opinion on how well important tech companies are doing toward leading the world to reduce greenhouse gas emissions by 15 percent as of 2020. ", "It combs through each company's public Web site, and uses other tidbits it knows, to score them on three criteria:\n\nTechnologies they develop that help others reduce greenhouse gas.", "\n\nInternal initiatives to reduce their own emissions and energy impact.", "\n\nPolitical advocacy and support for climate and energy policies. (", "For instance, companies earned points for showing up to the COP16 conference).", "\n\nCisco, Ericsson and Fujitsu scored highest because they did well in at least two areas. ", "Google scored highest for political advocacy. \"", "The company’s work to stop Prop 23, an oil-sponsored California ballot initiative, from bulldozing the state’s landmark global warming legislation, sets the bar for advocacy in this scoring round,\" Greenpeace's Jodie Van Horn said in a blog post.", "\n\nIBM scored highest for energy impact and did well for its Smart Planet technologies. ", "But the company's lack of political presence and its failure to come up with a stated goal for reducing its emissions hurt it.", "\n\nIBM, Intel and Microsoft, and many of the Japanese brands, were also dinged for failing to break with, or chastise, any business associations they belong to that have terrible eco-policies.", "\n\nNothing beat the abysmal score Oracle achieved on its first year on the list. ", "Beyond a few weak case studies published on the Web, Greenpeace couldn't find any evidence that Oracle was paying attention to clean tech at all. ", "Indian outsourcer Wipro, frequently named as one of the more reviled global IT companies, scored higher than Oracle. ", "It hit 38 points for its first appearance on the leaderboard.", "\n\n\"The gap between leaders and laggards has widened in this round, as many companies are still failing to incorporate the carbon-reducing potential of IT products and services into core business decisions and development, or into their lobbying efforts,\" Horn concludes." ]
{ "pile_set_name": "Pile-CC" }
[ 0.00909090909090909, 0, 0, 0.009900990099009901, 0.010416666666666666, 0.013986013986013986, 0, 0.00546448087431694, 0.0056179775280898875, 0.011278195488721804, 0.00546448087431694, 0, 0, 0, 0, 0.011111111111111112, 0, 0.0040650406504065045, 0.011494252873563218, 0, 0.015706806282722512, 0.0125, 0.0136986301369863, 0.008547008547008548, 0, 0 ]
0.005705
5
[ { "analysis_explanation": null, "end": 25, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11 }, { "analysis_explanation": null, "end": 48, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37 }, { "analysis_explanation": null, "end": 87, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80 }, { "analysis_explanation": null, "end": 174, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168 }, { "analysis_explanation": null, "end": 194, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185 }, { "analysis_explanation": null, "end": 718, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 705 }, { "analysis_explanation": null, "end": 1078, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1066 }, { "analysis_explanation": null, "end": 1634, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1630 }, { "analysis_explanation": null, "end": 2232, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2222 }, { "analysis_explanation": null, "end": 2394, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2380 }, { "analysis_explanation": null, "end": 2678, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2670 }, { "analysis_explanation": null, "end": 2882, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2868 }, { "analysis_explanation": null, "end": 3048, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3042 } ]
[ "1. ", "Field of the Invention\nThe present invention relates generally to reproduction of information stored on a magnetic recording medium, and more particularly to magnetic storage apparatus in which information is reproduced by a magnetoresistive element in a magnetoresistive head.", "\n2. ", "Description of the Related Art\nMagnetoresistive elements are being adopted increasingly as the information reproducing element in magnetic tape and magnetic disk storage apparatus. ", "The magnetoresistive element undergoes a resistivity change in response to a stray field from the recording medium, a phenomenon known as the magnetoresistance effect. ", "The reproducing sensitivity of the magnetoresistive element is higher than that of the conventional inductive element, and is substantially independent of tape velocity and disk medium rotational speed. ", "These characteristics make the magnetoresistive element quite effective in developing smaller magnetic tape drives, improving the recording density of magnetic tape media, enhancing the capacity of magnetic disk storage apparatus, and in making smaller-diameter magnetic disk media. ", "Thus, magnetic heads equipped with the magnetoresistive elements are being used more and more.", "\nFIG. ", "1 schematically illustrates a common configuration of a magnetic recording medium (magnetic tape or magnetic disk) and a magnetoresistive element in a magnetoresistive head. ", "Between terminals 2, the magnetoresistive element 1 forms a single magnetic domain, and a bias field is applied to magnetize the magnetoresistive element 1 in a predetermined direction in the absence of a stray field from the recording medium. ", "This region between the terminals 2 is the magnetic sensing part, where the magnetization direction tends to rotate from the normally-biased direction when the stray field 6 from the recording medium 4 is superposed on the bias field. ", "The resistivity of the magnetoresistive element 1 changes in proportion to the rotation angle.", "\nThus, this region is effective in reproducing information, and the width of this region is the reproducing track width of the magnetic head. ", "Shielding films 3 at both sides of the magnetoresistive element 1 prevent interference between stray fields 6 corresponding to plural information items, which stray fields distinguish each item of information even when the information is recorded at a high density on the recording medium 4.", "\nThe resistivity change in the magnetoresistive element 1 in response to the stray field 6 from the recording medium 4 can be converted into an electrical signal by detecting a voltage drop between the two terminals 2 when the sense current 5 supplied to the magnetoresistive element 1 is a constant current, or by detecting a change in the sense current 5 when a constant voltage is applied to the magnetoresistive element 1.", "\nAn example of a circuit configuration that may be used as a reproducing circuit for the magnetoresistive element 1 is shown in FIG. ", "2. ", "In this configuration, the voltage applied to the terminals 2 is controlled by feedback through a low-pass filter 8 so that the sense current, the value of which is defined by an external resistor element 7, is supplied to the magnetoresistive element 1. ", "Accordingly, the sense current 5 supplied to the magnetoresistive element 1 has a constant value that is not dependent upon the resistance of the magnetoresistive element 1. ", "In this configuration, a change in the resistance of the magnetoresistive element 1 caused by the stray field 6 causes a change in the sense current 5 corresponding to the change of resistance, since a constant voltage is applied to the magnetoresistive element 1. ", "This change in the sense current 5 is separated out as a reproduced signal by being converted to a voltage change through a load resistor 9.", "\nA reproducing channel (of a magnetic disk storage apparatus, for example) which utilizes magnetoresistive elements as reproducing elements has generally a composition as shown in the block diagram of FIG. ", "3. ", "The sense current defining resistor element 7 is connected to a read/write amplifier 10. ", "The reproducing signal is obtained according to the principles described above, by supplying the sense current 5 defined by the resistor element 7 to the magnetoresistive element 1. ", "The other illustrated portions of the reproducing channel are similar to those of the conventional reproducing channel that utilizes inductive elements." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007518796992481203, 0, 0, 0, 0, 0, 0.0048543689320388345, 0, 0, 0, 0 ]
0.000458
5
[ { "analysis_explanation": null, "end": 1412, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1411 } ]
[ "1969 in Canadian television\n\nThe following is a list of events affecting Canadian television in 1969. ", "Events listed include television show debuts, finales, cancellations, and channel launches, closures and rebrandings.", "\n\nEvents\n\nDebuts\n\nEnding this year\n\nTelevision shows\n\n1950s\nCountry Canada (1954–2007)\nCBC News Magazine (1952–1981)\nChez Hélène (1959–1973)\nCircle 8 Ranch (1955–1978)\nThe Friendly Giant (1958–1985)\nHockey Night in Canada (1952–present)\nThe National (1954–present)\nFront Page Challenge (1957–1995)\nWayne and Shuster Show (1958–1989)\n\n1960s\nAudubon Wildlife Theatre (1968–1974)\nCTV National News (1961–present)\nElwood Glover's Luncheon Date (1963–1975)\nThe Galloping Gourmet (1968–1972)\nLand and Sea (1964–present)\nMan Alive (1967–2000)\nMr. Dressup (1967–1996)\nMusic Hop (1962–1972)\nThe Nature of Things (1960–present, scientific documentary series)\nPeople in Conflict (1962–1970)\nThe Pierre Berton Show (1962–1973)\nThe Pig and Whistle (1967–1977)\nQuestion Period (1967–present, news program)\nReach for the Top (1961–1985)\nSingalong Jubilee (1961–1974)\nTake 30 (1962–1983)\nTelescope (1963–1973)\nThe Tommy Hunter Show (1965–1992)\nUniversity of the Air (1966–1983)\nW-FIVE (1966–present, newsmagazine program)\n\nTV movies\n\nTelevision stations\n\nDebuts\n\nNetwork affiliation changes\n\nSee also\n 1969 in Canada\n List of Canadian films\n\nReferences\n\n*" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0, 0, 0.010535557506584723 ]
0.003512
5
[ { "analysis_explanation": null, "end": 4, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 16, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8 }, { "analysis_explanation": null, "end": 81, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73 }, { "analysis_explanation": null, "end": 100, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96 }, { "analysis_explanation": null, "end": 252, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243 }, { "analysis_explanation": null, "end": 277, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272 }, { "analysis_explanation": null, "end": 357, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 348 }, { "analysis_explanation": null, "end": 439, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 433 }, { "analysis_explanation": null, "end": 445, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 441 }, { "analysis_explanation": null, "end": 473, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 469 }, { "analysis_explanation": null, "end": 521, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 516 }, { "analysis_explanation": null, "end": 557, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 552 }, { "analysis_explanation": null, "end": 593, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 584 }, { "analysis_explanation": null, "end": 618, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 614 }, { "analysis_explanation": null, "end": 643, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 628 }, { "analysis_explanation": null, "end": 702, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 693 }, { "analysis_explanation": null, "end": 722, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 718 }, { "analysis_explanation": null, "end": 765, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 758 }, { "analysis_explanation": null, "end": 826, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 822 }, { "analysis_explanation": null, "end": 896, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 887 }, { "analysis_explanation": null, "end": 963, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 954 }, { "analysis_explanation": null, "end": 986, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 982 }, { "analysis_explanation": null, "end": 1110, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1101 }, { "analysis_explanation": null, "end": 1192, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1188 }, { "analysis_explanation": null, "end": 1308, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1304 }, { "analysis_explanation": null, "end": 1318, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1312 }, { "analysis_explanation": null, "end": 1336, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1328 } ]
[ "Intradural free fragment of the lumbar region: report of two cases.", "\nTwo cases of intrathecal disc protrusion and a review of the literature is presented. ", "The rarity of this complication, which might occur after an incomplete disc removal, is pointed out. ", "These two cases confirmed that the L4-5 interspace is the one most commonly affected." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 292, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 290 } ]
[ "SPARC promotes the proliferation and metastasis of oral squamous cell carcinoma by PI3K/AKT/PDGFB/PDGFRβ axis.", "\nOral squamous cell carcinoma (OSCC) is a highly lethal cancer in the world, and the prognosis of OSCC is poor with a 60% 5-year survival rate in recent decades. ", "Here, we introduced a novel secretory and acid glycoprotein with cysteine rich (secreted protein acidic and rich in cysteine, SPARC), which is correlated with the worst pattern of invasion (WPOI) and prognosis of OSCC. ", "SPARC expression levels were measured in OSCC tissues and normal tissues using quantitative polymerase chain reaction and immunohistochemistry. ", "The influence of SPARC on cell proliferation was examined by cell counting kit-8, colony formation, and Edu tests. ", "Then, the effect of SPARC on the metastasis of OSCC cells was detected by wound healing and transwell migration assays. ", "Next, the biologic characteristics of SPARC shared by STRING were analyzed. ", "Furthermore, the underlying mechanisms were confirmed by western blot analysis. ", "SPARC revealed higher expression in OSCC tissues than nontumor tissues. ", "Higher SPARC expression was correlated with poorer tumor differentiation, poorer WPOI pattern, and significantly and shorter overall survival. ", "Knockdown SPARC significantly restrained OSCC cell growth, migration, and invasion. ", "In addition, bioinformatics analysis found SPARC had a coexpression network with the platelet-derived growth factor-B (PDGFB) and PI3K/AKT signaling pathways with minimal false discovery rate. ", "Furthermore, SPARC promotes OSCC cells metastasis by regulating the expressions of PDGFB, PDGFRβ, p-PDGFRβ , and the PI3K/AKT pathway. ", "Higher SPARC expression was positively correlated with poor WPOI and differentiation in OSCC. ", "SPARC activates the PI3K/AKT/PDGFB/PDGFRβ axis to promote proliferation and metastasis by OSCC cell lines. ", "Therefore, SPARC may be a potential therapeutic target for patients with OSCC." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.01818181818181818, 0, 0.0045662100456621, 0.006944444444444444, 0.008695652173913044, 0.008333333333333333, 0.013157894736842105, 0, 0.013888888888888888, 0, 0.011904761904761904, 0.0051813471502590676, 0.014814814814814815, 0, 0.009345794392523364, 0.01282051282051282 ]
0.00799
5
[ { "analysis_explanation": null, "end": 238, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232 }, { "analysis_explanation": null, "end": 270, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256 }, { "analysis_explanation": null, "end": 466, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 462 }, { "analysis_explanation": null, "end": 1183, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1179 }, { "analysis_explanation": null, "end": 1717, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1713 } ]
[ "Q:\n\nJava Swing - getting char from ResultSet\n\nAs per the following codes:\nchar Secgrp = 0;\n try{\n String a = (String) comboName.getSelectedItem();\n String fill = \"Select recDate, attendant, grp from log order by id DESC\";\n ps = conn.prepareStatement(fill);\n rs = ps.executeQuery();\n\n String x = cDate();\n while (rs.next()){\n\n java.sql.", "Date dDate = rs.getDate(\"recDate\");\n String bName = rs.getString(\"attendant\");\n char[] cbuf = new char[1];\n rs.getCharacterStream(\"grp\").read(cbuf);\n char theValue = cbuf[0];\n String grp = Character.toString(theValue);\n\n if(x.equals(dDate.toString()) && group1 == theValue && a.equals(bName)){\n Secgrp = theValue++ ;\n } \n else if(x.equals(dDate.toString()) && theValue > group1 && a.equals(bName)) \n { Secgrp = theValue++;\n }\n else if(x.equals(dDate.toString()) && group1 > theValue && a.equals(bName)) \n { Secgrp = group1;\n }\n\nAs per the above codes, I'm trying to check if a char is equal to my resultset record. ", "e.g. if A is equal to A, if date = date and name = name than do something.", "\nBut when I setText(String.valueOf(Secgrp)), no char is being inserted. ", "\nPlease advice how can I retrieve a char e.g 'A' from resultSet.", "\n\nA:\n\nSolution: Add breaks after each blocks\n if(x.equals(dDate.toString()) && group1 == theValue && a.equals(bName)){\n Secgrp = theValue++ ;\n Break;\n } \n else if(x.equals(dDate.toString()) && theValue > group1 && a.equals(bName)) \n { Secgrp = theValue++;\n Break;\n }\n else if(x.equals(dDate.toString()) && group1 > theValue && a.equals(bName)) \n { Secgrp = group1;\n Break;\n }\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.01278772378516624, 0.007692307692307693, 0, 0, 0, 0.010570824524312896 ]
0.005175
5
[ { "analysis_explanation": null, "end": 85, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79 }, { "analysis_explanation": null, "end": 338, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 333 }, { "analysis_explanation": null, "end": 446, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 440 }, { "analysis_explanation": null, "end": 629, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 623 }, { "analysis_explanation": null, "end": 1059, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1053 }, { "analysis_explanation": null, "end": 1522, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1516 }, { "analysis_explanation": null, "end": 1815, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1809 }, { "analysis_explanation": null, "end": 140, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 128 }, { "analysis_explanation": null, "end": 259, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 252 }, { "analysis_explanation": null, "end": 362, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 357 }, { "analysis_explanation": null, "end": 410, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 405 }, { "analysis_explanation": null, "end": 460, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 455 }, { "analysis_explanation": null, "end": 538, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 533 }, { "analysis_explanation": null, "end": 648, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 636 }, { "analysis_explanation": null, "end": 699, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 691 }, { "analysis_explanation": null, "end": 839, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 831 }, { "analysis_explanation": null, "end": 978, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 970 }, { "analysis_explanation": null, "end": 1275, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1266 }, { "analysis_explanation": null, "end": 1452, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1444 }, { "analysis_explanation": null, "end": 1596, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1588 }, { "analysis_explanation": null, "end": 1738, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1730 } ]