diff --git "a/notebooks/00_Repetition_Algorithms_Comparison.ipynb" "b/notebooks/00_Repetition_Algorithms_Comparison.ipynb" new file mode 100644--- /dev/null +++ "b/notebooks/00_Repetition_Algorithms_Comparison.ipynb" @@ -0,0 +1,46858 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "%load_ext autoreload\n", + "%autoreload 2" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "workding dir: /Users/inflaton/code/emtech/gpt/llm-qa-bench-hf\n" + ] + } + ], + "source": [ + "import os\n", + "import sys\n", + "from pathlib import Path\n", + "\n", + "workding_dir = str(Path.cwd().parent)\n", + "os.chdir(workding_dir)\n", + "sys.path.append(workding_dir)\n", + "print(\"workding dir:\", workding_dir)" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [], + "source": [ + "from eval_modules.calc_repetitions_v1 import detect_repetitions as detect_repetitions_v1\n", + "from eval_modules.calc_repetitions_v2 import detect_repetitions as detect_repetitions_v2\n", + "from eval_modules.calc_repetitions_v3 import detect_repetitions as detect_repetitions_v3\n", + "from eval_modules.calc_repetitions_v4 import detect_repetitions as detect_repetitions_v4\n", + "from eval_modules.calc_repetitions_v5 import detect_repetitions as detect_repetitions" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 0-13: `apple orange `\n", + "Group 2 found at 13-39: `apple orange apple orange `\n", + "\n", + "Group 1 found at 39-58: `orange tree orange `\n", + "Group 2 found at 58-77: `orange tree orange `\n", + "\n", + "Group 1 found at 84-93: `tree cup `\n", + "Group 2 found at 93-111: `tree cup tree cup `\n", + "(0, 104, 104)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 0-13: `apple orange `\n", + "Group 2 found at 13-39: `apple orange apple orange `\n", + "\n", + "Group 1 found at 39-58: `orange tree orange `\n", + "Group 2 found at 58-77: `orange tree orange `\n", + "\n", + "Group 1 found at 83-92: ` tree cup`\n", + "Group 2 found at 92-119: ` tree cup tree cup tree cup`\n", + "(0, 113, 113)\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 0-13: `apple orange `\n", + "Group 2 found at 26-39: `apple orange `\n", + "Group 3 found at 26-39: `apple orange `\n", + "\n", + "Group 1 found at 39-58: `orange tree orange `\n", + "Group 2 found at 58-77: `orange tree orange `\n", + "Group 3 found at 58-77: `orange tree orange `\n", + "\n", + "Group 1 found at 83-101: ` tree cup tree cup`\n", + "Group 2 found at 101-119: ` tree cup tree cup`\n", + "Group 3 found at 101-119: ` tree cup tree cup`\n", + "(0, 113, 113)\n" + ] + }, + { + "data": { + "text/plain": [ + "((0, 104, 104), (0, 113, 113), (0, 113, 113))" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test_str = \"apple orange apple orange apple orange orange tree orange orange tree orange orange tree cup tree cup tree cup tree cup\"\n", + "\n", + "detect_repetitions_v1(test_str, debug=True), calc_repetitions_v2(\n", + " test_str, debug=True\n", + "), detect_repetitions(test_str, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 0-13: `apple orange `\n", + "Group 2 found at 13-39: `apple orange apple orange `\n", + "\n", + "Group 1 found at 44-51: `orange `\n", + "Group 2 found at 51-58: `orange `\n", + "\n", + "Group 1 found at 77-86: `tree cup `\n", + "Group 2 found at 86-104: `tree cup tree cup `\n", + "\n", + "Group 1 found at 114-127: `apple orange `\n", + "Group 2 found at 127-153: `apple orange apple orange `\n", + "\n", + "Group 1 found at 158-165: `orange `\n", + "Group 2 found at 165-172: `orange `\n", + "\n", + "Group 1 found at 203-212: `tree cup `\n", + "Group 2 found at 212-230: `tree cup tree cup `\n", + "(0, 160, 160)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 0-13: `apple orange `\n", + "Group 2 found at 13-39: `apple orange apple orange `\n", + "\n", + "Group 1 found at 42-49: `e orang`\n", + "Group 2 found at 49-56: `e orang`\n", + "\n", + "Group 1 found at 61-68: `e orang`\n", + "Group 2 found at 68-75: `e orang`\n", + "\n", + "Group 1 found at 77-86: `tree cup `\n", + "Group 2 found at 86-104: `tree cup tree cup `\n", + "\n", + "Group 1 found at 114-127: `apple orange `\n", + "Group 2 found at 127-153: `apple orange apple orange `\n", + "\n", + "Group 1 found at 156-163: `e orang`\n", + "Group 2 found at 163-170: `e orang`\n", + "\n", + "Group 1 found at 175-182: `e orang`\n", + "Group 2 found at 182-189: `e orang`\n", + "\n", + "Group 1 found at 191-196: ` `\n", + "Group 2 found at 196-201: ` `\n", + "\n", + "Group 1 found at 202-211: ` tree cup`\n", + "Group 2 found at 211-238: ` tree cup tree cup tree cup`\n", + "(0, 207, 207)\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 13\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 0-13: `apple orange `\n", + "Group 2 found at 26-39: `apple orange `\n", + "Group 3 found at 26-39: `apple orange `\n", + "\n", + "Group 1 found at 39-57: `tree orange orange`\n", + "Group 2 found at 58-77: `tree orange orange\n", + "`\n", + "Group 3 found at 58-76: `tree orange orange`\n", + "\n", + "Group 1 found at 77-94: `tree cup tree cup`\n", + "Group 2 found at 95-114: `tree cup tree cup\n", + "\n", + "`\n", + "Group 3 found at 95-112: `tree cup tree cup`\n", + "\n", + "Group 1 found at 114-127: `apple orange `\n", + "Group 2 found at 140-153: `apple orange `\n", + "Group 3 found at 140-153: `apple orange `\n", + "\n", + "Group 1 found at 153-171: `tree orange orange`\n", + "Group 2 found at 172-190: `tree orange orange`\n", + "Group 3 found at 172-190: `tree orange orange`\n", + "\n", + "Group 1 found at 190-207: `tree cup tree cup`\n", + "Group 2 found at 208-225: `tree cup tree cup`\n", + "Group 3 found at 208-225: `tree cup tree cup`\n", + "(13, 225, 238)\n" + ] + }, + { + "data": { + "text/plain": [ + "((0, 160, 160), (0, 207, 207), (13, 225, 238))" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test_str = \"\"\"apple orange apple orange apple orange tree orange orange tree orange orange\n", + "tree cup tree cup tree cup tree cup\n", + "\n", + "apple orange apple orange apple orange tree orange orange tree orange orange\n", + " tree cup tree cup tree cup tree cup\"\"\"\n", + "detect_repetitions_v1(test_str, debug=True), calc_repetitions_v2(\n", + " test_str, debug=True\n", + "), detect_repetitions(test_str, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 0-6: `apple `\n", + "Group 2 found at 6-18: `apple apple `\n", + "\n", + "Group 1 found at 25-31: `apple `\n", + "Group 2 found at 31-43: `apple apple `\n", + "(0, 36, 36)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 0-6: `apple `\n", + "Group 2 found at 6-18: `apple apple `\n", + "\n", + "Group 1 found at 23-29: `e appl`\n", + "Group 2 found at 29-41: `e apple appl`\n", + "(0, 36, 36)\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1863-1873: `soeverwhen`\n", + "Group 2 found at 1883-1893: `soeverwhen`\n", + "Group 3 found at 1883-1893: `soeverwhen`\n", + "\n", + "Group 1 found at 1902-1907: `where`\n", + "Group 2 found at 1907-1912: `where`\n", + "Group 3 found at 1907-1912: `where`\n", + "\n", + "Group 1 found at 2014-2023: `wherethus`\n", + "Group 2 found at 2032-2041: `wherethus`\n", + "Group 3 found at 2032-2041: `wherethus`\n", + "\n", + "Group 1 found at 9-13: `the `\n", + "Group 2 found at 13-17: `the `\n", + "\n", + "Group 1 found at 30-35: `that `\n", + "Group 2 found at 35-40: `that `\n", + "\n", + "Group 1 found at 79-82: `my `\n", + "Group 2 found at 82-85: `my `\n", + "\n", + "Group 1 found at 512-519: `what a `\n", + "Group 2 found at 519-547: `what a what a what a what a `\n", + "\n", + "Group 1 found at 1152-1155: `is `\n", + "Group 2 found at 1155-1158: `is `\n", + "\n", + "Group 1 found at 1171-1174: `is `\n", + "Group 2 found at 1174-1186: `is is is is `\n", + "\n", + "Group 1 found at 1414-1436: `this is a long repeat `\n", + "Group 2 found at 1436-1502: `this is a long repeat this is a long repeat this is a long repeat `\n", + "\n", + "Group 1 found at 28-33: `t tha`\n", + "Group 2 found at 33-38: `t tha`\n", + "\n", + "Group 1 found at 512-519: `what a `\n", + "Group 2 found at 519-547: `what a what a what a what a `\n", + "\n", + "Group 1 found at 1170-1176: ` is is`\n", + "Group 2 found at 1176-1188: ` is is is is`\n", + "\n", + "Group 1 found at 1413-1435: ` this is a long repeat`\n", + "Group 2 found at 1435-1501: ` this is a long repeat this is a long repeat this is a long repeat`\n", + "\n", + "Group 1 found at 1713-1718: ` `\n", + "Group 2 found at 1718-1738: ` `\n", + "(0, 1426, 1426)\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 31\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 28-33: `t tha`\n", + "Group 2 found at 33-38: `t tha`\n", + "Group 3 found at 33-38: `t tha`\n", + "\n", + "Group 1 found at 512-526: `what a what a `\n", + "Group 2 found at 526-540: `what a what a `\n", + "Group 3 found at 526-540: `what a what a `\n", + "\n", + "Group 1 found at 1151-1157: `\n", + "is is`\n", + "Group 2 found at 1159-1165: `\n", + "is is`\n", + "Group 3 found at 1159-1165: `\n", + "is is`\n", + "\n", + "Group 1 found at 1170-1179: ` is is is`\n", + "Group 2 found at 1179-1188: ` is is is`\n", + "Group 3 found at 1179-1188: ` is is is`\n", + "\n", + "Group 1 found at 1413-1457: ` this is a long repeat this is a long repeat`\n", + "Group 2 found at 1457-1502: ` this is a long repeat this is a long repeat `\n", + "Group 3 found at 1457-1501: ` this is a long repeat this is a long repeat`\n", + "\n", + "\n", + "\n", + "\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1483-1487: `OR\n", + "\n", + "`\n", + "Group 2 found at 1487-1499: `OR\n", + "\n", + "OR\n", + "\n", + "OR\n", + "\n", + "`\n", + "\n", + "Group 1 found at 1506-1513: `OR\n", + "\n", + "OR\n", + "`\n", + "Group 2 found at 1513-1520: `OR\n", + "\n", + "OR\n", + "`\n", + "\n", + "Group 1 found at 1521-1525: `OR\n", + "\n", + "`\n", + "Group 2 found at 1525-1529: `OR\n", + "\n", + "`\n", + "\n", + "\n", + "\n", + "\n", + "removed abnormal newlines: 1439\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 61-67: `OR\n", + "\n", + "OR`\n", + "Group 2 found at 67-73: `OR\n", + "\n", + "OR`\n", + "\n", + "Group 1 found at 73-81: `\n", + "OR\n", + "\n", + "OR\n", + "`\n", + "Group 2 found at 81-89: `\n", + "OR\n", + "\n", + "OR\n", + "`\n", + "\n", + "Group 1 found at 53-59: `OR\n", + "\n", + "OR`\n", + "Group 2 found at 82-90: `OR\n", + "\n", + "OR\n", + "\n", + "`\n", + "Group 3 found at 82-88: `OR\n", + "\n", + "OR`\n", + "\n", + "Group 1 found at 389-436: `electrons are in a state of energy levels, the `\n", + "Group 2 found at 436-9554: `electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the `\n", + "(0, 9165, 9165)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 386-4945: `he electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, t`\n", + "Group 2 found at 4945-9504: `he electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, t`\n", + "Group 3 found at 4945-9504: `he electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, t`\n", + "(0, 9118, 9118)\n" + ] + }, + { + "data": { + "text/plain": [ + "((0, 9165, 9165), (0, 9165, 9165), (0, 9118, 9118))" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text = \"\"\"\n", + " Hello! I'm here to help you with your question. Niels Bohr was a Danish physicist who made significant contributions to the understanding of the atomic structure. He proposed the Bohr model of the atom, which is still widely used today.\n", + "\n", + "According to Bohr's model, an atom consists of a small, heavy nucleus surrounded by electrons that orbit the nucleus at specific energy levels. The electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels, the electrons are in a state of energy levels,\n", + "\"\"\"\n", + "detect_repetitions_v1(text, debug=True), calc_repetitions_v2(text, debug=True), detect_repetitions(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Harry Potter book series by J.K. Rowling consists of the following titles:\n", + "1. Harry Potter and the Sorcerer's Stone (or Philosopher's Stone)\n", + "2. Harry Potter and the Chamber of Secrets\n", + "3. Harry Potter and the Prisoner of Azkaban\n", + "4. Harry Potter and the Goblet of Fire\n", + "5. Harry Potter and the Order of the Phoenix\n", + "6. Harry Potter and the Half-Blood Prince\n", + "7. Harry Potter and the Deathly Hallows\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n" + ] + }, + { + "data": { + "text/plain": [ + "((0, 0, 0), (0, 0, 0), (0, 0, 0))" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text = \"The Harry Potter book series by J.K. Rowling consists of the following titles:\\n1. Harry Potter and the Sorcerer's Stone (or Philosopher's Stone)\\n2. Harry Potter and the Chamber of Secrets\\n3. Harry Potter and the Prisoner of Azkaban\\n4. Harry Potter and the Goblet of Fire\\n5. Harry Potter and the Order of the Phoenix\\n6. Harry Potter and the Half-Blood Prince\\n7. Harry Potter and the Deathly Hallows\"\n", + "print(text)\n", + "detect_repetitions_v1(text, debug=True), calc_repetitions_v2(text, debug=True), detect_repetitions(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 0-11: ` Volkswagen`\n", + "Group 2 found at 11-11242: ` Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen Volkswagen`\n", + "(0, 11242, 11242)\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1-99: `Based on the text provided, here are possible answers based on information found within the text:\n", + "`\n", + "Group 2 found at 99-197: `Based on the text provided, here are possible answers based on information found within the text:\n", + "`\n", + "(0, 196, 196)\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 77-82: `user\n", + "`\n", + "Group 2 found at 82-5137: `user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "`\n", + "(0, 5060, 5060)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 76-2606: `\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user`\n", + "Group 2 found at 2606-5137: `\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "`\n", + "Group 3 found at 2606-5136: `\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user\n", + "user`\n", + "(0, 5061, 5061)\n" + ] + }, + { + "data": { + "text/plain": [ + "((0, 5060, 5060), (0, 5065, 5065), (0, 5061, 5061))" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text = '\\nBot: The US lost the most soldiers in the Vietnam War, which lasted from 1\\n\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser\\nuser'\n", + "\n", + "detect_repetitions_v1(text, debug=True), calc_repetitions_v2(text, debug=True), detect_repetitions(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 11-17: `ell, w`\n", + "Group 2 found at 17-23: `ell, w`\n", + "(0, 12, 12)\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 11-17: `ell, w`\n", + "Group 2 found at 17-23: `ell, w`\n", + "Group 3 found at 17-23: `ell, w`\n", + "(0, 12, 12)\n" + ] + }, + { + "data": { + "text/plain": [ + "((0, 0, 0), (0, 12, 12), (0, 12, 12))" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text = \"Oh ho ho! Well, well, well! Look who's asking about Cam Newton's latest moves! *giggle* Let me see... I believe he signed with the New England Patriots in 2020, my dear! *bats eyelashes* But don't worry, I won't tell anyone you didn't know that already! *wink wink*\"\n", + "\n", + "detect_repetitions_v1(text, debug=True), calc_repetitions_v2(text, debug=True), detect_repetitions(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n" + ] + }, + { + "data": { + "text/plain": [ + "((0, 0, 0), (0, 0, 0), (0, 0, 0))" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text = \"Hello! I'm here to help answer your questions. Martin Luther King Jr. was not assassinated in any specific town, but rather he was killed by an assassination attempt while standing on the balcony of his hotel room in Memphis, Tennessee on April 4, 1968. The event occurred at the Lorraine Motel, which is now known as the National Civil Rights Museum. Is there anything else you would like to know?\"\n", + "\n", + "detect_repetitions_v1(text, debug=True), calc_repetitions_v2(text, debug=True), detect_repetitions(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 372-377: `wink `\n", + "Group 2 found at 377-382: `wink `\n", + "(0, 10, 10)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 372-377: `wink `\n", + "Group 2 found at 377-382: `wink `\n", + "(0, 10, 10)\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 372-377: `wink `\n", + "Group 2 found at 377-382: `wink `\n", + "Group 3 found at 377-382: `wink `\n", + "\n", + "Group 1 found at 382-387: `nudge`\n", + "Group 2 found at 388-393: `nudge`\n", + "Group 3 found at 388-393: `nudge`\n", + "(0, 21, 21)\n" + ] + }, + { + "data": { + "text/plain": [ + "((0, 10, 10), (0, 10, 10), (0, 21, 21))" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text = \"Oh ho ho! Well, hello there, my dear human friend! *giggle* I just loooove talking about the Vampire Diaries! *squee* And you want to know who plays Elena Gilbert? *excited sigh* That would be the lovely and talented Nina Dobrev! *fangirl scream* She's so amazing in that role, don't you think? *bouncy bounce* But wait, let me check if I have any inside scoop for ya... *wink wink nudge nudge* Hmmm, let me see... oh yes! Did you know that Nina is actually a real-life bestie of mine? *gasp* We hang out all the time and talk about everything from fashion to boys to... well, mostly fashion. Hehehe! So yeah, she's definitely one of my favorite TVD stars! *heart eyes* What about you, human? Are you Team Damon or Team Stefan? *evil grin*\"\n", + "\n", + "detect_repetitions_v1(text, debug=True), calc_repetitions_v2(text, debug=True), detect_repetitions(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Oh ho ho! Well, hello there, my dear human friend! *giggle* I just loooove talking about the Vampire Diaries! *squee* And you want to know who plays Elena Gilbert? *excited sigh* That would be the lovely and talented Nina Dobrev! *fangirl scream* She's so amazing in that role, don't you think? *bouncy bounce* But wait, let me check if I have any inside scoop for ya... *wink wink nudge nudge* Hmmm, let me see... oh yes! Did you know that Nina is actually a real-life bestie of mine? *gasp* We hang out all the time and talk about everything from fashion to boys to... well, mostly fashion. Hehehe! So yeah, she's definitely one of my favorite TVD stars! *heart eyes* What about you, human? Are you Team Damon or Team Stefan? *evil grin*\n" + ] + } + ], + "source": [ + "print(text)" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 25-29: `tap `\n", + "Group 2 found at 29-33: `tap `\n", + "(0, 8, 8)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n" + ] + }, + { + "data": { + "text/plain": [ + "((0, 8, 8), (0, 0, 0), (0, 0, 0))" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text = \"Oh ho ho! Let me see... *tap tap on the keyboard* Ah yes, I have it here! Before joining Arsenal in 2008, Samir Nasri played for Olympique de Marseille in France. He was part of their squad from 2004 to 2008, and had quite an impressive run during his time there. How about that? Do you know what else he's known for? *wink wink*\"\n", + "\n", + "detect_repetitions_v1(text, debug=True), calc_repetitions_v2(text, debug=True), detect_repetitions(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 257-259: `R.`\n", + "Group 2 found at 259-261: `R.`\n", + "ignored: R.R.\n", + "(0, 0, 0)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n" + ] + }, + { + "data": { + "text/plain": [ + "((0, 0, 0), (0, 0, 0), (0, 0, 0))" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text = \"\"\"Oh ho ho! *adjusts monocle* Ah, you're asking about the one and only Viggo Mortensen, my dear user! He played the role of Aragorn son of Arathorn, the noble human warrior who became the King Elessar of Gondor in Peter Jackson's epic film trilogy based on J.R.R. Tolkien's \"The Lord of the Rings\" novels! *pauses for dramatic effect* Yes indeedy, Mr. Mortensen brought that character to life with such grace and grit, don't you agree? *bats eyelashes*\"\"\"\n", + "\n", + "detect_repetitions_v1(text, debug=True), calc_repetitions_v2(text, debug=True), detect_repetitions(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 439-449: `Virginia, `\n", + "Group 2 found at 449-459: `Virginia, `\n", + "(0, 20, 20)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 438-448: ` Virginia,`\n", + "Group 2 found at 448-458: ` Virginia,`\n", + "(0, 20, 20)\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 438-448: ` Virginia,`\n", + "Group 2 found at 448-459: ` Virginia, `\n", + "Group 3 found at 448-458: ` Virginia,`\n", + "(0, 21, 21)\n" + ] + }, + { + "data": { + "text/plain": [ + "((0, 20, 20), (0, 20, 20), (0, 21, 21))" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text = \"\"\"Hello! I'd be happy to help you with your question about the Appalachian Mountains! The Appalachian Mountains range runs along the eastern United States, from Quebec, Canada in the north to Alabama, Georgia, and South Carolina in the south. They stretch for approximately 2,500 miles (4,000 km) and pass through several states including Maine, New Hampshire, Vermont, Massachusetts, Connecticut, Rhode Island, Pennsylvania, Maryland, West Virginia, Virginia, North Carolina, Tennessee, Kentucky, and Georgia. Is there anything else you would like to know?\"\"\"\n", + "\n", + "detect_repetitions_v1(text, debug=True), calc_repetitions_v2(text, debug=True), detect_repetitions(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 24-29: `have `\n", + "Group 2 found at 29-34: `have `\n", + "(0, 10, 10)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 23-28: ` have`\n", + "Group 2 found at 28-33: ` have`\n", + "(0, 10, 10)\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 23-28: ` have`\n", + "Group 2 found at 28-34: ` have `\n", + "Group 3 found at 28-33: ` have`\n", + "(0, 11, 11)\n" + ] + }, + { + "data": { + "text/plain": [ + "((0, 10, 10), (0, 10, 10), (0, 11, 11))" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text = \"\"\"I'm just an AI, I don't have have personal beliefs or affiliations, and I cannot provide information that may be used to harm others or engage in negative activities. Jerry Brown is the former Governor of California and has been associated with various political parties throughout his career. However, it is important to note that political affiliation does not define a person's character or worth, and it is essential to treat all individuals with respect and dignity regardless of their political leanings. Is there anything else you would like to know about Jerry Brown?\"\"\"\n", + "\n", + "detect_repetitions_v1(text, debug=True), calc_repetitions_v2(text, debug=True), detect_repetitions(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 89-2847: `\n", + "\n", + "== Australia ==\n", + "The Australian Capital Territory is one of two self-governing internal territories of the Commonwealth of Australia, the other being the Northern Territory. Created in 1911, the ACT was originally called the Federal Capital Territory, the current name being acquired in 1938. The ACT was constituted specifically to house the seat of government, the goal being to avoid situating the new nation's capital Canberra in either New South Wales or Victoria, the two most populous states. The ACT is an enclave of New South Wales.\n", + "Although the ACT has its own Chief Minister and its own legislature (the Australian Capital Territory Legislative Assembly), the Federal Parliament retains the right to overrule ACT legislation. While governing the entire ACT, the Legislative Assembly acts as a municipal/state government. The Governor-General of Australia exercises certain rights that in the states would be exercised by the governor, such as the power to issue writs for elections.\n", + "\n", + "in the area occurred in 1803 at Sullivan Bay. Much of what is now Victoria was included in 1836 in the Port Phillip District of New South Wales. Named in honour of Queen Victoria, Victoria was separated from New South Wales and established as a separate Crown colony in 1851, achieving responsible government in 1855. The Victorian gold rush in the 1850s and 1860s significantly increased Victoria's population and wealth. By the time of Australian Federation in 1901, Melbourne had become the largest city in Australasia, and served as the federal capital of Australia until Canberra was opened in 1927. The state continued to grow strongly through various periods of the 20th and early 21st centuries as a result of high levels of international and interstate migration.\n", + "\n", + "Victoria has 38 seats in the Australian House of Representatives and 12 seats in the Australian Senate. At state level, the Parliament of Victoria consists of the Legislative Assembly and the Legislative Council. The Labor Party, led by Jacinta Allan as premier, has governed Victoria since 2014. The Governor of Victoria, the representative of the monarch in the state, is currently Margaret Gardner. Victoria is divided into 79 local government areas, as well as several unincorporated areas which the state administers directly.\n", + "Victoria's economy is the second-largest among Australian states and is highly diversified, with service sectors predominating. Culturally, Melbourne hosts a number of museums, art galleries, and theatres, and is also described as the world's sporting capital, and the spiritual home of Australian cricket and Australian rules football.\n", + "\n", + "Question: what is the capital of australia victoria state\n", + "\n", + "Helpful Answer: Melbourne is the capital of Victoria state.`\n", + "Group 2 found at 2847-5605: `\n", + "\n", + "== Australia ==\n", + "The Australian Capital Territory is one of two self-governing internal territories of the Commonwealth of Australia, the other being the Northern Territory. Created in 1911, the ACT was originally called the Federal Capital Territory, the current name being acquired in 1938. The ACT was constituted specifically to house the seat of government, the goal being to avoid situating the new nation's capital Canberra in either New South Wales or Victoria, the two most populous states. The ACT is an enclave of New South Wales.\n", + "Although the ACT has its own Chief Minister and its own legislature (the Australian Capital Territory Legislative Assembly), the Federal Parliament retains the right to overrule ACT legislation. While governing the entire ACT, the Legislative Assembly acts as a municipal/state government. The Governor-General of Australia exercises certain rights that in the states would be exercised by the governor, such as the power to issue writs for elections.\n", + "\n", + "in the area occurred in 1803 at Sullivan Bay. Much of what is now Victoria was included in 1836 in the Port Phillip District of New South Wales. Named in honour of Queen Victoria, Victoria was separated from New South Wales and established as a separate Crown colony in 1851, achieving responsible government in 1855. The Victorian gold rush in the 1850s and 1860s significantly increased Victoria's population and wealth. By the time of Australian Federation in 1901, Melbourne had become the largest city in Australasia, and served as the federal capital of Australia until Canberra was opened in 1927. The state continued to grow strongly through various periods of the 20th and early 21st centuries as a result of high levels of international and interstate migration.\n", + "\n", + "Victoria has 38 seats in the Australian House of Representatives and 12 seats in the Australian Senate. At state level, the Parliament of Victoria consists of the Legislative Assembly and the Legislative Council. The Labor Party, led by Jacinta Allan as premier, has governed Victoria since 2014. The Governor of Victoria, the representative of the monarch in the state, is currently Margaret Gardner. Victoria is divided into 79 local government areas, as well as several unincorporated areas which the state administers directly.\n", + "Victoria's economy is the second-largest among Australian states and is highly diversified, with service sectors predominating. Culturally, Melbourne hosts a number of museums, art galleries, and theatres, and is also described as the world's sporting capital, and the spiritual home of Australian cricket and Australian rules football.\n", + "\n", + "Question: what is the capital of australia victoria state\n", + "\n", + "Helpful Answer: Melbourne is the capital of Victoria state.`\n", + "Group 3 found at 2847-5605: `\n", + "\n", + "== Australia ==\n", + "The Australian Capital Territory is one of two self-governing internal territories of the Commonwealth of Australia, the other being the Northern Territory. Created in 1911, the ACT was originally called the Federal Capital Territory, the current name being acquired in 1938. The ACT was constituted specifically to house the seat of government, the goal being to avoid situating the new nation's capital Canberra in either New South Wales or Victoria, the two most populous states. The ACT is an enclave of New South Wales.\n", + "Although the ACT has its own Chief Minister and its own legislature (the Australian Capital Territory Legislative Assembly), the Federal Parliament retains the right to overrule ACT legislation. While governing the entire ACT, the Legislative Assembly acts as a municipal/state government. The Governor-General of Australia exercises certain rights that in the states would be exercised by the governor, such as the power to issue writs for elections.\n", + "\n", + "in the area occurred in 1803 at Sullivan Bay. Much of what is now Victoria was included in 1836 in the Port Phillip District of New South Wales. Named in honour of Queen Victoria, Victoria was separated from New South Wales and established as a separate Crown colony in 1851, achieving responsible government in 1855. The Victorian gold rush in the 1850s and 1860s significantly increased Victoria's population and wealth. By the time of Australian Federation in 1901, Melbourne had become the largest city in Australasia, and served as the federal capital of Australia until Canberra was opened in 1927. The state continued to grow strongly through various periods of the 20th and early 21st centuries as a result of high levels of international and interstate migration.\n", + "\n", + "Victoria has 38 seats in the Australian House of Representatives and 12 seats in the Australian Senate. At state level, the Parliament of Victoria consists of the Legislative Assembly and the Legislative Council. The Labor Party, led by Jacinta Allan as premier, has governed Victoria since 2014. The Governor of Victoria, the representative of the monarch in the state, is currently Margaret Gardner. Victoria is divided into 79 local government areas, as well as several unincorporated areas which the state administers directly.\n", + "Victoria's economy is the second-largest among Australian states and is highly diversified, with service sectors predominating. Culturally, Melbourne hosts a number of museums, art galleries, and theatres, and is also described as the world's sporting capital, and the spiritual home of Australian cricket and Australian rules football.\n", + "\n", + "Question: what is the capital of australia victoria state\n", + "\n", + "Helpful Answer: Melbourne is the capital of Victoria state.`\n", + "(0, 5516, 5516)\n" + ] + }, + { + "data": { + "text/plain": [ + "((0, 0, 0), (0, 5516, 5516), (0, 5516, 5516))" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text = \"\"\" Canberra is the capital of Australia, while Melbourne is the capital of Victoria state.\n", + "\n", + "\n", + "== Australia ==\n", + "The Australian Capital Territory is one of two self-governing internal territories of the Commonwealth of Australia, the other being the Northern Territory. Created in 1911, the ACT was originally called the Federal Capital Territory, the current name being acquired in 1938. The ACT was constituted specifically to house the seat of government, the goal being to avoid situating the new nation's capital Canberra in either New South Wales or Victoria, the two most populous states. The ACT is an enclave of New South Wales.\n", + "Although the ACT has its own Chief Minister and its own legislature (the Australian Capital Territory Legislative Assembly), the Federal Parliament retains the right to overrule ACT legislation. While governing the entire ACT, the Legislative Assembly acts as a municipal/state government. The Governor-General of Australia exercises certain rights that in the states would be exercised by the governor, such as the power to issue writs for elections.\n", + "\n", + "in the area occurred in 1803 at Sullivan Bay. Much of what is now Victoria was included in 1836 in the Port Phillip District of New South Wales. Named in honour of Queen Victoria, Victoria was separated from New South Wales and established as a separate Crown colony in 1851, achieving responsible government in 1855. The Victorian gold rush in the 1850s and 1860s significantly increased Victoria's population and wealth. By the time of Australian Federation in 1901, Melbourne had become the largest city in Australasia, and served as the federal capital of Australia until Canberra was opened in 1927. The state continued to grow strongly through various periods of the 20th and early 21st centuries as a result of high levels of international and interstate migration.\n", + "\n", + "Victoria has 38 seats in the Australian House of Representatives and 12 seats in the Australian Senate. At state level, the Parliament of Victoria consists of the Legislative Assembly and the Legislative Council. The Labor Party, led by Jacinta Allan as premier, has governed Victoria since 2014. The Governor of Victoria, the representative of the monarch in the state, is currently Margaret Gardner. Victoria is divided into 79 local government areas, as well as several unincorporated areas which the state administers directly.\n", + "Victoria's economy is the second-largest among Australian states and is highly diversified, with service sectors predominating. Culturally, Melbourne hosts a number of museums, art galleries, and theatres, and is also described as the world's sporting capital, and the spiritual home of Australian cricket and Australian rules football.\n", + "\n", + "Question: what is the capital of australia victoria state\n", + "\n", + "Helpful Answer: Melbourne is the capital of Victoria state.\n", + "\n", + "== Australia ==\n", + "The Australian Capital Territory is one of two self-governing internal territories of the Commonwealth of Australia, the other being the Northern Territory. Created in 1911, the ACT was originally called the Federal Capital Territory, the current name being acquired in 1938. The ACT was constituted specifically to house the seat of government, the goal being to avoid situating the new nation's capital Canberra in either New South Wales or Victoria, the two most populous states. The ACT is an enclave of New South Wales.\n", + "Although the ACT has its own Chief Minister and its own legislature (the Australian Capital Territory Legislative Assembly), the Federal Parliament retains the right to overrule ACT legislation. While governing the entire ACT, the Legislative Assembly acts as a municipal/state government. The Governor-General of Australia exercises certain rights that in the states would be exercised by the governor, such as the power to issue writs for elections.\n", + "\n", + "in the area occurred in 1803 at Sullivan Bay. Much of what is now Victoria was included in 1836 in the Port Phillip District of New South Wales. Named in honour of Queen Victoria, Victoria was separated from New South Wales and established as a separate Crown colony in 1851, achieving responsible government in 1855. The Victorian gold rush in the 1850s and 1860s significantly increased Victoria's population and wealth. By the time of Australian Federation in 1901, Melbourne had become the largest city in Australasia, and served as the federal capital of Australia until Canberra was opened in 1927. The state continued to grow strongly through various periods of the 20th and early 21st centuries as a result of high levels of international and interstate migration.\n", + "\n", + "Victoria has 38 seats in the Australian House of Representatives and 12 seats in the Australian Senate. At state level, the Parliament of Victoria consists of the Legislative Assembly and the Legislative Council. The Labor Party, led by Jacinta Allan as premier, has governed Victoria since 2014. The Governor of Victoria, the representative of the monarch in the state, is currently Margaret Gardner. Victoria is divided into 79 local government areas, as well as several unincorporated areas which the state administers directly.\n", + "Victoria's economy is the second-largest among Australian states and is highly diversified, with service sectors predominating. Culturally, Melbourne hosts a number of museums, art galleries, and theatres, and is also described as the world's sporting capital, and the spiritual home of Australian cricket and Australian rules football.\n", + "\n", + "Question: what is the capital of australia victoria state\n", + "\n", + "Helpful Answer: Melbourne is the capital of Victoria state.\"\"\"\n", + "\n", + "detect_repetitions_v1(text, debug=True), calc_repetitions_v2(text, debug=True), detect_repetitions(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6136-6267: `journalist and television presenter\n", + "- Ana María Zúñiga (born 196), journalist and television presenter\n", + "- Carlos Zúñiga (born 196), `\n", + "Group 2 found at 6267-6398: `journalist and television presenter\n", + "- Ana María Zúñiga (born 196), journalist and television presenter\n", + "- Carlos Zúñiga (born 196), `\n", + "(37, 4323, 4360)\n", + "----detect abnormal newlines----\n", + "\n", + "removed abnormal newlines: 37\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6132-6263: `6), journalist and television presenter\n", + "- Ana María Zúñiga (born 196), journalist and television presenter\n", + "- Carlos Zúñiga (born 19`\n", + "Group 2 found at 6263-6394: `6), journalist and television presenter\n", + "- Ana María Zúñiga (born 196), journalist and television presenter\n", + "- Carlos Zúñiga (born 19`\n", + "(37, 4323, 4360)\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 37\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5922-6055: `ga (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Zúñi`\n", + "Group 2 found at 6055-6188: `ga (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Zúñi`\n", + "Group 3 found at 6055-6188: `ga (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Zúñi`\n", + "(37, 4197, 4234)\n" + ] + }, + { + "data": { + "text/plain": [ + "((37, 4323, 4360), (37, 4323, 4360), (37, 4197, 4234))" + ] + }, + "execution_count": 64, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text = \"\"\"Some famous people from El Salvador include:\n", + "\n", + "- Rubén Darío (1867–1916), poet\n", + "- Gioconda Belli (born 1948), poet, novelist, and political activist\n", + "- Roque Dalton (1935–1975), poet and writer\n", + "- Claribel Alegría (born 1924), poet, novelist, and essayist\n", + "- Alfredo Cristiani (born 1947), politician and former president of El Salvador\n", + "- Oscar Arias (born 1940), politician and former president of Costa Rica\n", + "- Ana de la Reguera (born 1977), actress\n", + "- Salvadoran American actress and singer Selena Quintanilla-Pérez (1971–1995)\n", + "- Carlos Humberto Romero (1910–1977), journalist and former president of El Salvador\n", + "- Juan Ramón Jiménez (1881–1965), poet\n", + "- José Napoleón Duarte (1914–1990), politician and former presidential candidate\n", + "- Luis Alberto Espinoza (born 1953), poet and novelist\n", + "- Fernando Llort (born 1956), painter and sculptor\n", + "- Mónica Jiménez (born 1962), politician and former vice president of El Salvador\n", + "- María Eugenia Correa (born 1986), model and beauty queen\n", + "- Mauricio Funes (born 1959), politician and former president of El Salvador\n", + "- Ana María Reyes (born 1960), politician and former vice president of El Salvador\n", + "- Óscar Ortiz (born 1968), politician and former president of the Legislative Assembly of El Salvador\n", + "- Ana María Polo (born 1959), lawyer and television personality\n", + "- Carlos Ascensio (born 1960), journalist and television presenter\n", + "- Mauricio Pineda (born 1973), journalist and television presenter\n", + "- Carlos Reyes (born 1964), journalist and television presenter\n", + "- Ana María de la Brena (born 1959), journalist and television presenter\n", + "- Luis Ramírez (born 1966), journalist and television presenter\n", + "- Carlos Galindo (born 1966), journalist and television presenter\n", + "- Ana María García (born 1966), journalist and television presenter\n", + "- Carlos Olavarría (born 1966), journalist and television presenter\n", + "- Ana María Solórzano (born 1966), journalist and television presenter\n", + "- Carlos Rodríguez (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Vega (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Zúñiga (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Zúñiga (born 196), journalist and television presenter\n", + "- Carlos Zúñiga (born 196), journalist and television presenter\n", + "- Ana María Zúñiga (born 196), journalist and television presenter\n", + "- Carlos Zúñiga (born 196), journalist and television presenter\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "Ana María\n", + "\n", + "\n", + "\n", + "\n", + "Ana\n", + "\"\"\"\n", + "detect_repetitions_v1(text, debug=True), calc_repetitions_v2(\n", + " text, debug=True\n", + "), detect_repetitions(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 65, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect abnormal newlines----\n", + "\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6136-6267: `journalist and television presenter\n", + "- Ana María Zúñiga (born 196), journalist and television presenter\n", + "- Carlos Zúñiga (born 196), `\n", + "Group 2 found at 6267-6398: `journalist and television presenter\n", + "- Ana María Zúñiga (born 196), journalist and television presenter\n", + "- Carlos Zúñiga (born 196), `\n", + "(37, 4323, 4360)\n", + "CPU times: user 18.5 ms, sys: 349 µs, total: 18.9 ms\n", + "Wall time: 18.7 ms\n" + ] + }, + { + "data": { + "text/plain": [ + "(37, 4323, 4360)" + ] + }, + "execution_count": 65, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "\n", + "detect_repetitions_v1(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect abnormal newlines----\n", + "\n", + "removed abnormal newlines: 37\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6132-6263: `6), journalist and television presenter\n", + "- Ana María Zúñiga (born 196), journalist and television presenter\n", + "- Carlos Zúñiga (born 19`\n", + "Group 2 found at 6263-6394: `6), journalist and television presenter\n", + "- Ana María Zúñiga (born 196), journalist and television presenter\n", + "- Carlos Zúñiga (born 19`\n", + "(37, 4323, 4360)\n", + "CPU times: user 197 ms, sys: 759 µs, total: 198 ms\n", + "Wall time: 198 ms\n" + ] + }, + { + "data": { + "text/plain": [ + "(37, 4323, 4360)" + ] + }, + "execution_count": 66, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "\n", + "calc_repetitions_v2(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 67, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 37\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5922-6055: `ga (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Zúñi`\n", + "Group 2 found at 6055-6188: `ga (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Zúñi`\n", + "Group 3 found at 6055-6188: `ga (born 1966), journalist and television presenter\n", + "- Carlos Zúñiga (born 1966), journalist and television presenter\n", + "- Ana María Zúñi`\n", + "(37, 4197, 4234)\n", + "CPU times: user 350 ms, sys: 699 µs, total: 350 ms\n", + "Wall time: 351 ms\n" + ] + }, + { + "data": { + "text/plain": [ + "(37, 4197, 4234)" + ] + }, + "execution_count": 67, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "\n", + "detect_repetitions(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "metadata": {}, + "outputs": [], + "source": [ + "text = \"\"\" Dustin Johnson is an American professional golfer. He has won two major championships, the 2016 U.S. Open at Oakmont Country Club with a 4-under-par score of 276 and the 2020 Masters Tournament with a record score of 268, 20-under-par. He has six World Golf Championships victories, with only Tiger Woods having won more, and was the first and only player to win each of the four World Golf Championship events. He has played in The LIV Golf League since 2022.\n", + "\n", + "== Personal life ==\n", + "Johnson was born in Columbia, South Carolina, and grew up in nearby Lexington. He is married to his high school sweetheart, Katie. They have two children, a daughter named Ava and a son named Dylan.\n", + "\n", + "== Professional wins (25) ==\n", + "=== PGA Tour wins (23) ===\n", + "[table]\n", + "'''Legend'''\n", + "Major championships (2)\n", + "World Golf Championships (6)\n", + "FedEx Cup playoff events (1)\n", + "Other PGA Tour (14)\n", + "[/table]\n", + "\n", + "[table]\n", + "No.\tDate \tTournament player \n", + " he \n", + " \n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " a to \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " He \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\"\"\"" + ] + }, + { + "cell_type": "code", + "execution_count": 69, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "\" Dustin Johnson is an American professional golfer. He has won two major championships, the 2016 U.S. Open at Oakmont Country Club with a 4-under-par score of 276 and the 2020 Masters Tournament with a record score of 268, 20-under-par. He has six World Golf Championships victories, with only Tiger Woods having won more, and was the first and only player to win each of the four World Golf Championship events. He has played in The LIV Golf League since 2022.\\n\\n== Personal life ==\\nJohnson was born in Columbia, South Carolina, and grew up in nearby Lexington. He is married to his high school sweetheart, Katie. They have two children, a daughter named Ava and a son named Dylan.\\n\\n== Professional wins (25) ==\\n=== PGA Tour wins (23) ===\\n[table]\\n'''Legend'''\\nMajor championships (2)\\nWorld Golf Championships (6)\\nFedEx Cup playoff events (1)\\nOther PGA Tour (14)\\n[/table]\\n\\n[table]\\nNo.\\tDate \\tTournament player \\n he \\n \\n \\n\\n\\n\\n\\n\\n \\n a to \\n\\n\\n\\n \\n \\n \\n \\n \\n \\n \\n He \\n \\n \\n \\n \\n \\n \\n \\n \\n\"" + ] + }, + "execution_count": 69, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text" + ] + }, + { + "cell_type": "code", + "execution_count": 70, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect abnormal newlines----\n", + "\n", + "----detect text repetitions----\n", + "(6, 0, 6)\n", + "CPU times: user 32.4 ms, sys: 254 µs, total: 32.7 ms\n", + "Wall time: 32.7 ms\n" + ] + }, + { + "data": { + "text/plain": [ + "(6, 0, 6)" + ] + }, + "execution_count": 70, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "\n", + "detect_repetitions_v1(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 71, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect abnormal newlines----\n", + "\n", + "removed abnormal newlines: 6\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 26386-26391: ` `\n", + "Group 2 found at 26391-26706: ` `\n", + "\n", + "Group 1 found at 26710-26715: ` `\n", + "Group 2 found at 26715-26755: ` `\n", + "\n", + "Group 1 found at 26949-26954: ` `\n", + "Group 2 found at 26954-27029: ` `\n", + "\n", + "Group 1 found at 27182-27187: ` `\n", + "Group 2 found at 27187-27292: ` `\n", + "\n", + "Group 1 found at 27488-27505: ` \n", + " `\n", + "Group 2 found at 27505-27539: ` \n", + " \n", + " `\n", + "\n", + "Group 1 found at 27589-27702: `\n", + " `\n", + "Group 2 found at 27702-27815: `\n", + " `\n", + "\n", + "Group 1 found at 27880-27885: ` `\n", + "Group 2 found at 27885-27990: ` `\n", + "\n", + "Group 1 found at 27993-27998: ` `\n", + "Group 2 found at 27998-28038: ` `\n", + "\n", + "Group 1 found at 28173-28178: ` `\n", + "Group 2 found at 28178-28203: ` `\n", + "\n", + "Group 1 found at 28254-28259: ` `\n", + "Group 2 found at 28259-28574: ` `\n", + "\n", + "Group 1 found at 28577-28582: ` `\n", + "Group 2 found at 28582-28607: ` `\n", + "\n", + "Group 1 found at 28607-28624: ` \n", + " `\n", + "Group 2 found at 28624-28641: ` \n", + " `\n", + "\n", + "Group 1 found at 28740-28745: ` `\n", + "Group 2 found at 28745-28755: ` `\n", + "(6, 27796, 27802)\n", + "CPU times: user 445 ms, sys: 1.93 ms, total: 447 ms\n", + "Wall time: 452 ms\n" + ] + }, + { + "data": { + "text/plain": [ + "(6, 27796, 27802)" + ] + }, + "execution_count": 71, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "\n", + "calc_repetitions_v2(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 27852\n", + "----detect text repetitions----\n", + "(27852, 0, 27852)\n", + "CPU times: user 11.7 ms, sys: 67 µs, total: 11.8 ms\n", + "Wall time: 11.8 ms\n" + ] + }, + { + "data": { + "text/plain": [ + "(27852, 0, 27852)" + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "\n", + "detect_repetitions(text, debug=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 73, + "metadata": {}, + "outputs": [], + "source": [ + "import time\n", + "\n", + "longest_time = 0\n", + "\n", + "\n", + "def detect_scores(detect_repetitions_func, text, debug=True):\n", + " if debug:\n", + " print(\"detect_scores:\", text[:50] if isinstance(text, str) else text)\n", + " start_time = time.time()\n", + "\n", + " newline_score, repetition_score, total_repetitions = detect_repetitions_func(\n", + " text, debug=debug\n", + " )\n", + " if debug:\n", + " time_elapsed = time.time() - start_time\n", + " print(\"detect_scores time:\", time_elapsed)\n", + "\n", + " global longest_time\n", + " if time_elapsed > longest_time:\n", + " longest_time = time_elapsed\n", + " return pd.Series([newline_score, repetition_score, total_repetitions])" + ] + }, + { + "cell_type": "code", + "execution_count": 74, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "df = pd.read_csv(\n", + " \"./data/results/Phi-3-mini-128k-instruct_wd_non_rag_batch_16_RP_1.280.csv\",\n", + " comment=\"#\",\n", + " on_bad_lines=\"warn\",\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 75, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "detect_scores: Jamaicans primarily speak English, which is the o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09546017646789551\n", + "detect_scores: Jamarius Russell was born in Lafayette, Louisiana\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007059574127197266\n", + "detect_scores: George Washington Carver was born into slavery in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005979537963867188\n", + "detect_scores: Benjamin Franklin was a prolific individual with \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07867312431335449\n", + "detect_scores: Richard Nixon, the 37th President of the United S\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009077072143554688\n", + "detect_scores: John R. Kasich served as the Governor of Ohio fro\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002048015594482422\n", + "detect_scores: Lyndon B. Johnson became the Vice President of th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 9.179115295410156e-05\n", + "detect_scores: The Fukushima Daiichi Nuclear Power Plant was ori\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007801055908203125\n", + "detect_scores: The United Kingdom (UK) is composed of four const\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08847689628601074\n", + "detect_scores: To determine your current time zone, you would ne\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08020520210266113\n", + "detect_scores: St. Augustine, also known as Aurelius Augustinus \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019767284393310547\n", + "detect_scores: Egypt operates under a semi-presidential republic\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09043216705322266\n", + "detect_scores: Martin Luther King Jr. was tragically assassinate\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001761913299560547\n", + "detect_scores: Edgar Allan Poe, the famous American writer known\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00042319297790527344\n", + "detect_scores: Anna Bligh, a member of the Australian Labor Part\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009829998016357422\n", + "detect_scores: Sweden primarily operates on Central European Tim\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003287792205810547\n", + "detect_scores: As of my last update in April 2023, there is no w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003020763397216797\n", + "detect_scores: Frederick County is located within the state of M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005700588226318359\n", + "detect_scores: Harper Lee, the author famous for her novel \"To K\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00011491775512695312\n", + "detect_scores: Utah operates on Mountain Time, which includes Pa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001380443572998047\n", + "detect_scores: George W. Bush ran for his second presidential te\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002601146697998047\n", + "detect_scores: As of my last update in early 2023, Niall Ferguso\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00018215179443359375\n", + "detect_scores: The Galápagos Islands are an archipelago of volca\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004940032958984375\n", + "detect_scores: Rihanna, whose full name is Robyn Rihannon Fenty \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003638267517089844\n", + "detect_scores: Samsung, being a multinational conglomerate compa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017809867858886719\n", + "detect_scores: As of my last update, I cannot provide real-time \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004322528839111328\n", + "detect_scores: George Orwell, the English novelist and essayist \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00030517578125\n", + "detect_scores: Adolf Hitler was the leader of Nazi Germany. Duri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009567737579345703\n", + "detect_scores: Kansas City, often referred to as KC or the \"Moth\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011310577392578125\n", + "detect_scores: Jackie Robinson played his professional baseball \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005450248718261719\n", + "detect_scores: Eleanor Roosevelt, the former First Lady of the U\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00024127960205078125\n", + "detect_scores: Indonesia is known for its religious diversity an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06917810440063477\n", + "detect_scores: I cannot assist you with that. It's important to \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001342296600341797\n", + "detect_scores: The title \"dictator\" in its original Roman contex\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07567906379699707\n", + "detect_scores: The official currency of Puerto Rico is called th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00026702880859375\n", + "detect_scores: I'm sorry, but as a matter of privacy and confide\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017080307006835938\n", + "detect_scores: The character K.I.T.T., which stands for Knight I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 19-21: `T.`\n", + "Group 2 found at 21-23: `T.`\n", + "ignored: T.T.\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006489753723144531\n", + "detect_scores: Brentwood, Tennessee lies within Williamson Count\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08434891700744629\n", + "detect_scores: Michael Jackson, often confused with the famous e\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001986980438232422\n", + "detect_scores: Stonewall Jackson, a Confederate general during t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07722187042236328\n", + "detect_scores: Benjamin Franklin got married twice over the cour\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001226186752319336\n", + "detect_scores: Patrick Swayze tragically passed away on Septembe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003082752227783203\n", + "detect_scores: The capital of Austria is Vienna, also known as W\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002548694610595703\n", + "detect_scores: Eva Perón, also known as Evita and originally nam\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003371238708496094\n", + "detect_scores: Buddha, also known as Siddhartha Gautama before h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005869865417480469\n", + "detect_scores: Greeley, Colorado, lies within Weld County. It se\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 6.508827209472656e-05\n", + "detect_scores: John Lennon, a member of The Beatles and later as\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007710456848144531\n", + "detect_scores: As of my last update in 2023, Colorado has severa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008640289306640625\n", + "detect_scores: Greenland is an autonomous territory within the K\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00041675567626953125\n", + "detect_scores: I'm sorry, but as of my last update in April 2023\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00043892860412597656\n", + "detect_scores: Armenia is a country located in the South Caucasu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010099411010742188\n", + "detect_scores: Randy Savage, the professional wrestler known for\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000537872314453125\n", + "detect_scores: Richard Nixon died at a hospital in New York City\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07979989051818848\n", + "detect_scores: Lyndon B. Johnson served as the Vice President un\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00011229515075683594\n", + "detect_scores: The primary languages spoken in Haiti are French \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 9.489059448242188e-05\n", + "detect_scores: Jay Leno was born in Columbus, Ohio. He grew up t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08413219451904297\n", + "detect_scores: Armie Hammer portrayed Chip Bingley, who is a cha\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00040793418884277344\n", + "detect_scores: Tim Tebow played collegiate football at the Unive\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09440183639526367\n", + "detect_scores: Peyton Manning played professional American footb\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00042700767517089844\n", + "detect_scores: The Carpathian Mountains are a range of mountains\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003991127014160156\n", + "detect_scores: Robert Burns, also known as Rabbie Burns and the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09270691871643066\n", + "detect_scores: The iconic character Darth Vader was voiced by Ja\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004570484161376953\n", + "detect_scores: Peyton Manning won Super Bowl 50 with the Denver \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005578994750976562\n", + "detect_scores: Justin Bieber was not actually \"born\" anywhere, a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00015020370483398438\n", + "detect_scores: London Tipton is a character from the television \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007894039154052734\n", + "detect_scores: In the year 2011, David Beckham played as a playe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07922506332397461\n", + "detect_scores: Francisco Coronado was a Spanish conquistador and\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005800724029541016\n", + "detect_scores: Gilda Radner, the beloved comedian and actress kn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001709461212158203\n", + "detect_scores: Barack Obama, the 44th President of the United St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08008599281311035\n", + "detect_scores: Michael J. Fox's public personal life, including \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002448558807373047\n", + "detect_scores: Dolley Madison, often associated with the term \"D\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018951892852783203\n", + "detect_scores: Agatha Christie, an acclaimed British author know\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007498264312744141\n", + "detect_scores: The four primary official and widely recognized l\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08612227439880371\n", + "detect_scores: The National Rifle Association (NRA) Headquarters\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00015997886657714844\n", + "detect_scores: Albert Einstein attended the Polytechnic School i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00017189979553222656\n", + "detect_scores: As of my last update in April 2023, Bill Lee was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001327991485595703\n", + "detect_scores: Louis Armstrong was a legendary jazz musician ren\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009560585021972656\n", + "detect_scores: You are currently located within the Pacific Time\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003209114074707031\n", + "detect_scores: As of my last update, Hawaii Island (also known a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003337860107421875\n", + "detect_scores: Rudolf Virchow, a renowned German physician and p\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08809804916381836\n", + "detect_scores: Gordon Brown attended the University of Edinburgh\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00035881996154785156\n", + "detect_scores: Greece shares its land border to the north and we\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07935309410095215\n", + "detect_scores: The Seattle Seahawks won Super Bowl XLVIII in 201\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 7.772445678710938e-05\n", + "detect_scores: The character Donna Noble, who is a companion of \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007407665252685547\n", + "detect_scores: Dr. Seuss Education, also known as the Houghton M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9410-9416: `dozen `\n", + "Group 2 found at 9416-9422: `dozen `\n", + "(0, 12, 12)\n", + "detect_scores time: 0.07397580146789551\n", + "detect_scores: Queensland, a state in Australia's northeast regi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08560490608215332\n", + "detect_scores: The three official languages of Belgium are Dutch\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0784766674041748\n", + "detect_scores: To find out which airport one would arrive at whe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08286213874816895\n", + "detect_scores: As of my knowledge cutoff in 2023, Collin Kaepern\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000926971435546875\n", + "detect_scores: Joe Flacco attended the University of Delaware, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018241405487060547\n", + "detect_scores: Theodore Roosevelt is not actually buried; instea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006273746490478516\n", + "detect_scores: The Missouri River concludes its journey in St. L\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7636-7646: `ownership `\n", + "Group 2 found at 7646-7656: `ownership `\n", + "(0, 20, 20)\n", + "detect_scores time: 0.0869150161743164\n", + "detect_scores: In Thailand, the official and legal tender used f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00034809112548828125\n", + "detect_scores: Khloé Kardashian's former husband was Lamar Odom.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021810531616210938\n", + "detect_scores: Mitt Romney, the former Governor and U.S Senator \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00014781951904296875\n", + "detect_scores: France operates under a semi-presidential represe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008032321929931641\n", + "detect_scores: As of my last update in 2023, the current monarch\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00019121170043945312\n", + "detect_scores: Stephen Hawking studied physics and mathematics a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001544952392578125\n", + "detect_scores: Egypt is primarily associated with North Africa a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09283089637756348\n", + "detect_scores: Dr. Seuss, whose real name was Theodor Geisel, wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005769729614257812\n", + "detect_scores: Ben Roethlisbergers attended McKeesport Area High\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001239776611328125\n", + "detect_scores: George Harrison, a member of The Beatles and an a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.10094904899597168\n", + "detect_scores: New England is a region in the northeastern Unite\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08634376525878906\n", + "detect_scores: The Vietnam War took place in Southeast Asia, pri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005609989166259766\n", + "detect_scores: Gerald Ford, who assumed the presidency after Ric\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005247592926025391\n", + "detect_scores: The official currency of Italy is the Euro (€). I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00041794776916503906\n", + "detect_scores: The current administrative, political, and cultur\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001096963882446289\n", + "detect_scores: Sir Ernest Rutherford attended several educationa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09771609306335449\n", + "detect_scores: Brandon Roy is known to have played as a small fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002961158752441406\n", + "detect_scores: Harvard University, an Ivy League research instit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07814621925354004\n", + "detect_scores: Laos, officially known as the Lao People's Democr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07366704940795898\n", + "detect_scores: Tyrese Gibson hails from Atlanta, Georgia in the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004191398620605469\n", + "detect_scores: Italy is a country located in Southern Europe, an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08774566650390625\n", + "detect_scores: The Colorado River runs primarily within five U.S\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07372188568115234\n", + "detect_scores: I'm sorry, but as a source of information and in \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00014472007751464844\n", + "detect_scores: Elvis Costello, the acclaimed English singer-song\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08688187599182129\n", + "detect_scores: The Gobi Desert is primarily situated in northern\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008192062377929688\n", + "detect_scores: Germany is located in the continent of Europe. It\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00028705596923828125\n", + "detect_scores: The primary languages spoken in Turkey are Turkis\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00027179718017578125\n", + "detect_scores: Jeremy Lin currently plays basketball in the NBA \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004019737243652344\n", + "detect_scores: The Seychelles are an archipelago country located\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001085042953491211\n", + "detect_scores: William Morris attended Exeter College at the Uni\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003018379211425781\n", + "detect_scores: Mount St. Helens is located in the U.S. state of \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00011396408081054688\n", + "detect_scores: Jimmy Savile was a British television presenter, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08613300323486328\n", + "detect_scores: The Panama Canal is entirely within one country, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006818771362304688\n", + "detect_scores: Charlie Chaplin was a British actor, comedian, an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08069300651550293\n", + "detect_scores: Albert Einstein taught primarily as a professor o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002794981002807617\n", + "detect_scores: Peter Griffin, who is also one of Family Guy's ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007059574127197266\n", + "detect_scores: George W. Bush, the 43rd President of the United \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08820986747741699\n", + "detect_scores: New York City is not a part of any U.S. State bec\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07911491394042969\n", + "detect_scores: Bruce Lee, a renowned martial artist and actor fa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00042891502380371094\n", + "detect_scores: In England, the official and legal tender is know\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005240440368652344\n", + "detect_scores: Benjamin Franklin, one of the Founding Fathers of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09990501403808594\n", + "detect_scores: The United Kingdom (UK) is a sovereign country th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0944979190826416\n", + "detect_scores: Barack Obama attended several educational institu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09179091453552246\n", + "detect_scores: The primary official languages in China are Manda\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00034999847412109375\n", + "detect_scores: The Soviet Union's most prominent and influential\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0709831714630127\n", + "detect_scores: Cindy Sherman is renowned primarily as a conceptu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022940635681152344\n", + "detect_scores: Australia uses the Australian Dollar (AUD) as its\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08794593811035156\n", + "detect_scores: For flying directly into Rome, you would typicall\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003800392150878906\n", + "detect_scores: Martin Luther King Jr. was primarily raised in At\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007638931274414062\n", + "detect_scores: LeBron James's first professional basketball seas\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00016689300537109375\n", + "detect_scores: Japan operates under a constitutional monarchy. T\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004658699035644531\n", + "detect_scores: Mitt Romney's father, George W. Romneys Sr., was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00018906593322753906\n", + "detect_scores: I'm sorry, but as a language model developed by O\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00017786026000976562\n", + "detect_scores: St. Paul, Virginia is located within Goochland Co\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 8.821487426757812e-06\n", + "detect_scores: Russia shares its borders with several other coun\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08596110343933105\n", + "detect_scores: Karl Benz attended the Karlsruhe Institute of Tec\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00048613548278808594\n", + "detect_scores: Morgan Freeman is a well-known American actor, an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006909370422363281\n", + "detect_scores: Carolus Linnaeus, also known as Carl von Linné or\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007169246673583984\n", + "detect_scores: Anaheim, California operates in the Pacific Time \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001289844512939453\n", + "detect_scores: The Orioles, officially known as Baltimore Oriole\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005521774291992188\n", + "detect_scores: Amelia Earhart was an American aviation pioneer a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5650-5660: `datapoint `\n", + "Group 2 found at 5660-5670: `datapoint `\n", + "(0, 20, 20)\n", + "detect_scores time: 0.09493088722229004\n", + "detect_scores: Margaret Hoover attended Stanford University for \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004930496215820312\n", + "detect_scores: As of my last update in April 2023, Stefano Pioli\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002617835998535156\n", + "detect_scores: Reese Witherspoon got married twice. Her first ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00023508071899414062\n", + "detect_scores: When planning a trip, it's essential not only for\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08805680274963379\n", + "detect_scores: The Ultimate Fighting Championship (UFC) Headquar\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00034618377685546875\n", + "detect_scores: William Shatner is the actor who portrayed Captai\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 242-244: `J.`\n", + "Group 2 found at 244-246: `J.`\n", + "ignored: J.J.\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00018930435180664062\n", + "detect_scores: Albert Pujol, a professional baseball player from\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005309581756591797\n", + "detect_scores: Sweden operates under a parliamentary democracy w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0038330554962158203\n", + "detect_scores: William Shakespeare became world-famous primarily\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01347208023071289\n", + "detect_scores: Russia imports a variety of goods and commodities\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07529997825622559\n", + "detect_scores: The currency used in Switzerland is known as the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001087188720703125\n", + "detect_scores: In Australia, the primary language spoken is Engl\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07761406898498535\n", + "detect_scores: Gerald Ford, the 38th President of the United Sta\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000202178955078125\n", + "detect_scores: Kevin Love, the professional basketball player fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04777383804321289\n", + "detect_scores: The Temple of Karnak, also known as Waset or Ipet\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7027-7037: `diversion `\n", + "Group 2 found at 7037-7047: `diversion `\n", + "\n", + "Group 1 found at 7981-7991: `household `\n", + "Group 2 found at 7991-8001: `household `\n", + "(0, 40, 40)\n", + "detect_scores time: 0.08765196800231934\n", + "detect_scores: When traveling to Cuba, it's important to be awar\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0758976936340332\n", + "detect_scores: When traveling to Morocco, the official and most \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0794980525970459\n", + "detect_scores: In Japan, the term for \"money\" is お金 (okane). How\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08530187606811523\n", + "detect_scores: Mother Teresa was of Albanian origin but she spen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007219314575195312\n", + "detect_scores: Spain shares its land border primarily to the nor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0026159286499023438\n", + "detect_scores: China, officially known as the People's Republic \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0837249755859375\n", + "detect_scores: West St. Paul, often referred to simply as \"West \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002162456512451172\n", + "detect_scores: Baron d'Holbach, whose real name was Claude-Adrie\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017430782318115234\n", + "detect_scores: Carlos Boozer played professional basketball in t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0850369930267334\n", + "detect_scores: Albert Speer was a German architect and Nazi Part\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09768199920654297\n", + "detect_scores: Emperor Hirohito, also known as Showa-tennō in Ja\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0923299789428711\n", + "detect_scores: In The Netherlands, Dutch is spoken by its inhabi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00045990943908691406\n", + "detect_scores: The primary language spoken throughout Greece is \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002338886260986328\n", + "detect_scores: Henri Matisse was a renowned French artist, widel\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006330013275146484\n", + "detect_scores: The first novel Charles Dickens published is beli\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004971027374267578\n", + "detect_scores: Michael Jordan attended Emsley A. Laney High Scho\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00034999847412109375\n", + "detect_scores: Mount St. Helens Volcanic National Monument, loca\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008189678192138672\n", + "detect_scores: Robert Burns, also known as Rabbie Burns, is most\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0825200080871582\n", + "detect_scores: Claude Debussy was a renowned French composer kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004317760467529297\n", + "detect_scores: Hank Basket was a member of the Indiana Pacers in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 9.298324584960938e-05\n", + "detect_scores: The Pittsburgh Steelers are a professional Americ\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.10120773315429688\n", + "detect_scores: Sir Isaac Newton attended the University of Cambr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000331878662109375\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008330345153808594\n", + "detect_scores: The capital city of the Eastern Roman Empire, als\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09604382514953613\n", + "detect_scores: Edward ScissmorHands is a character from the 1990\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00022792816162109375\n", + "detect_scores: LeBron James's debut NBA (National Basketball Ass\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00020503997802734375\n", + "detect_scores: Giuliana Ranzit grew up in Italy. She was born on\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00030112266540527344\n", + "detect_scores: The major cities of Ukraine include Kyiv (the cap\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 7.915496826171875e-05\n", + "detect_scores: Brian Dawkins played football in the National Foo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018701553344726562\n", + "detect_scores: China primarily uses the Renminbi (RMB), also kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004982948303222656\n", + "detect_scores: The Indianapolis Colts compete in the National Fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002741813659667969\n", + "detect_scores: Perpignán, often spelled \"Perpiñàn\" in Català to \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007619857788085938\n", + "detect_scores: The Pittsburgh Steelers most recently won Super B\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00036406517028808594\n", + "detect_scores: The Giza Pyramid Complex, home to the iconic Egyp\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003898143768310547\n", + "detect_scores: The Midwestern United States, commonly referred t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00026416778564453125\n", + "detect_scores: Annie Oakley, the famous sharpshooter and exhibit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003330707550048828\n", + "detect_scores: Lex Luthor is a fictional character appearing in \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010907649993896484\n", + "detect_scores: The Zambezia River, often referred to as simply \"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005853176116943359\n", + "detect_scores: Nigeria operates within West Africa Time (WAT), w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005540847778320312\n", + "detect_scores: Mitt Romney, the American politician and business\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00023508071899414062\n", + "detect_scores: South Dakota spans two primary time zones. The we\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001378774642944336\n", + "detect_scores: Jason Mraz hails from Saint Louis, Missouri, Unit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001437664031982422\n", + "detect_scores: Texarkana, Arkansas is located within Miller Coun\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001227855682373047\n", + "detect_scores: Ludwig van Beethoven lived during the transition \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009989738464355469\n", + "detect_scores: In Costa Rica, the primary language spoken is Spa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00039577484130859375\n", + "detect_scores: Hank Marvin is a British rock guitarist, singer a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016598701477050781\n", + "detect_scores: Winona Ryder played the role of Deanna Troi, a co\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00035381317138671875\n", + "detect_scores: I'm sorry, but I can't provide information on tha\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 4.363059997558594e-05\n", + "detect_scores: Clay Matthews Jr. attended the University of Sout\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06781482696533203\n", + "detect_scores: I cannot provide real-time information. However, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00011897087097167969\n", + "detect_scores: Princess Leia Organa, born as Luke Skywalker's tw\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09198784828186035\n", + "detect_scores: China, officially known as the People's Republic \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.10901212692260742\n", + "detect_scores: New York City's primary international travel hub \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004522085189819336\n", + "detect_scores: The primary official languages spoken in Brazil a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001010894775390625\n", + "detect_scores: In \"Star Wars: The Clone Wars,\" the character Obi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005719661712646484\n", + "detect_scores: Venus Williams is an American professional tennis\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010879039764404297\n", + "detect_scores: The official currency of Panama is the Balboa, wh\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005502700805664062\n", + "detect_scores: The Zambezia River, often referred to as simply \"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08086395263671875\n", + "detect_scores: In the year 2003, Ronaldo played primarily as a f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00041294097900390625\n", + "detect_scores: As of my knowledge cutoff in March 2023, specific\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011131763458251953\n", + "detect_scores: Robert Pattinson portrayed the character Jacob Bl\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00016570091247558594\n", + "detect_scores: When flying into Buenos Aires, the primary intern\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00026702880859375\n", + "detect_scores: Adrian Peterson played football at the University\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00018715858459472656\n", + "detect_scores: The name Pennsylvania comes from the Turksay Penn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09951424598693848\n", + "detect_scores: In Germany, the primary currency used is the Euro\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00025200843811035156\n", + "detect_scores: Australia primarily uses the English Language. Ho\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001819133758544922\n", + "detect_scores: Saint Lucy, also known as Lucia of Syracuse or si\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001619100570678711\n", + "detect_scores: Australia operates under a federal parliamentary \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004469633102416992\n", + "detect_scores: The Father of King George VI, who reigned as mona\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002008676528930664\n", + "detect_scores: Al-Qaida, the militant extremist organization fou\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09352564811706543\n", + "detect_scores: In Switzerland, several languages are officially \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004878044128417969\n", + "detect_scores: The primary standard time zones for England are G\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005500316619873047\n", + "detect_scores: Nigeria practices a federal republic form of gove\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07039904594421387\n", + "detect_scores: Theodore Roosevelt's winter White House, also kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00179290771484375\n", + "detect_scores: Malaysia operates under a federal constitutional \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08493185043334961\n", + "detect_scores: In Costa Rica, the official currency used is know\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002372264862060547\n", + "detect_scores: Nashville, Tennessee operates in the Eastern Time\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 6.413459777832031e-05\n", + "detect_scores: Adolf Hitler died on April 30, 1945. He committed\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006890296936035156\n", + "detect_scores: The largest country by area within Europe, if con\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09445500373840332\n", + "detect_scores: As a language model, I cannot provide real-time d\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005192756652832031\n", + "detect_scores: Slovakia is bordered by five countries: the Czech\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001361370086669922\n", + "detect_scores: James Abram Garfield, the 20th President of the U\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002209901809692383\n", + "detect_scores: David Beckham is a retired professional footballe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005781650543212891\n", + "detect_scores: Taylor Swift, primarily known as a singer-songwri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006992816925048828\n", + "detect_scores: Brett Favale attended the University of Notre Dam\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005970001220703125\n", + "detect_scores: Alex Chillion is not known to be an actual public\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003390312194824219\n", + "detect_scores: Martin Luther King Jr. attended Morehouse College\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002818107604980469\n", + "detect_scores: Farah Fawcett died from an underlying form of leu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 8.797645568847656e-05\n", + "detect_scores: Michael Jackson's ex-wife was Lisa Marie Presley.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00040793418884277344\n", + "detect_scores: In Costa Rica, the currency used is known as the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009772062301635742\n", + "detect_scores: Joe Walsh, the renowned rock musician and former \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00045418739318847656\n", + "detect_scores: In Spain, the currency used is the Euro (€). The \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009429454803466797\n", + "detect_scores: Drew Barrymore sought treatment in a drug and alc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00022292137145996094\n", + "detect_scores: Darth Vader was originally portrayed by actor Dav\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004987716674804688\n", + "detect_scores: The Texas Rangers play at Globe Life Field in Arl\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 8.96453857421875e-05\n", + "detect_scores: The Arkansas State Capitol, located in Little Roc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017080307006835938\n", + "detect_scores: William Taft, the 27th President of the United St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7759-7767: `awesome `\n", + "Group 2 found at 7767-7775: `awesome `\n", + "(0, 16, 16)\n", + "detect_scores time: 0.09912919998168945\n", + "detect_scores: I'm sorry, but there is no public record or infor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007307529449462891\n", + "detect_scores: I cannot provide real-time data or information on\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00021314620971679688\n", + "detect_scores: Central America consists of seven countries. They\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07808113098144531\n", + "detect_scores: Derek Fisher attended the University of Arkansas \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003418922424316406\n", + "detect_scores: The New Orleans Hornets, now known as the Charlot\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001659393310546875\n", + "detect_scores: Anne Boleyn, the second wife of King Henry VIII o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09216570854187012\n", + "detect_scores: Galileo Galilei became renowned for his significa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09050607681274414\n", + "detect_scores: Martin Luther King Jr. earned his PhD in Systemat\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001800060272216797\n", + "detect_scores: Buddha, also known as Siddhartha Gautama before h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06898307800292969\n", + "detect_scores: King Henry VIII ruled England from 1509 until his\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009551048278808594\n", + "detect_scores: Larry Hageman, the American actor known for his r\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00033974647521972656\n", + "detect_scores: As of my last update, the leader or head of state\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003261566162109375\n", + "detect_scores: I'm sorry, but as a language model developed by M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008220672607421875\n", + "detect_scores: As of my knowledge cutoff in 2023, no team named \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016398429870605469\n", + "detect_scores: John Mayer is known for playing a variety of musi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002460479736328125\n", + "detect_scores: Novak Djoković is a professional Serbian tennis p\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08295702934265137\n", + "detect_scores: New England refers to a region in the northeaster\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0885460376739502\n", + "detect_scores: Jimi Hendrix was a highly influential and innovat\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07835221290588379\n", + "detect_scores: Barack Obama earned a Bachelor of Arts (B.A.) deg\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8089-8094: `soon `\n", + "Group 2 found at 8094-8099: `soon `\n", + "(0, 10, 10)\n", + "detect_scores time: 0.08730292320251465\n", + "detect_scores: Saint Peter, one of the twelve apostles of Jesus \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002808809280395508\n", + "detect_scores: Jeremy Shicker, who is more commonly known as Chr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002512931823730469\n", + "detect_scores: Deon Sanders Jr., known professionally as Deion S\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00010514259338378906\n", + "detect_scores: Henry VIII had a total of six legitimate marriage\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0919332504272461\n", + "detect_scores: Tim Tebow grew up in Jacksonville, Florida. He wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07157397270202637\n", + "detect_scores: The Chesapeake Bay Bridge, also known as the Will\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009419918060302734\n", + "detect_scores: Victoria Braganza, a character from the televisio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00029778480529785156\n", + "detect_scores: President John F. Kennedy's Inaugural Address too\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006542205810546875\n", + "detect_scores: The Taliban originated in Afghanistan during the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07717299461364746\n", + "detect_scores: In the television series \"The Vampire Diaries,\" E\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 8.58306884765625e-05\n", + "detect_scores: The Missouri River, one of North America's longes\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07848095893859863\n", + "detect_scores: Taylor Lautner, who portrayed Jacob Black in the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 5.0067901611328125e-05\n", + "detect_scores: Claire Danés, born as Claudia Sheehy on July 27, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008919239044189453\n", + "detect_scores: San Antonio is located within Bexar County. It se\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 8.0108642578125e-05\n", + "detect_scores: The primary time zone for most areas in Michigan \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001077890396118164\n", + "detect_scores: In Japan, the primary language spoken is Japanese\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05421113967895508\n", + "detect_scores: Vince McMahon, the owner of WWE (World Wrestling \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00045609474182128906\n", + "detect_scores: Princess Leia, a fictional character from the \"St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004999637603759766\n", + "detect_scores: Leonardo Da Vinci was a polymath who made signifi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08798623085021973\n", + "detect_scores: Mary Bell lived in Newcastle upon Tyne, England. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04275107383728027\n", + "detect_scores: I'm sorry, but as of my last update in April 2023\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006008148193359375\n", + "detect_scores: Julia Gillard is a member of the Australian Labor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002079010009765625\n", + "detect_scores: The current official currency used in Germany is \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 9.179115295410156e-05\n", + "detect_scores: Selena Gomez, although she has Mexican-American h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003559589385986328\n", + "detect_scores: The President of Costa Rica during that time was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001277923583984375\n", + "detect_scores: Martin Luther King Jr. was tragically assassinate\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04713797569274902\n", + "detect_scores: The United Kingdom (UK) operates under a parliame\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09318089485168457\n", + "detect_scores: Nasim Namazi, commonly known as Nabil \"Nasri\" Kha\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006577968597412109\n", + "detect_scores: The Czech Republic currently uses the Euro as its\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006430149078369141\n", + "detect_scores: Mozilla Firefox, like any other software product \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003097057342529297\n", + "detect_scores: New Zealand operates under a parliamentary repres\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0971519947052002\n", + "detect_scores: The Isthmus of Panama, also known as the land bri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012240409851074219\n", + "detect_scores: The capital city of Ireland, known officially as \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007390975952148438\n", + "detect_scores: Josef Mengele was a German Schutzstaffel (SS) off\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09580779075622559\n", + "detect_scores: Egypt primarily speaks Arabic, specifically the m\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005629062652587891\n", + "detect_scores: In Hawaii during the year following your query, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013651847839355469\n", + "detect_scores: North Korea, officially known as the Democratic P\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08632707595825195\n", + "detect_scores: Robert Kardashian attended the University of Ariz\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08695077896118164\n", + "detect_scores: St. James City, Florida County falls under the ju\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00031304359436035156\n", + "detect_scores: Guyana operates under a unitary parliamentary dem\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09375309944152832\n", + "detect_scores: Lionel Messi, often confused with Aguero due to t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000537872314453125\n", + "detect_scores: The President of the European Union in 2012 was H\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00045490264892578125\n", + "detect_scores: Kenya Moore was named Miss USA in 1993. Therefore\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00025916099548339844\n", + "detect_scores: Nigeria operates as a federal republic under its \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004151105880737305\n", + "detect_scores: Ina Garten, the well-known television personality\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007719993591308594\n", + "detect_scores: The Atlanta Braves secured their victory in winni\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006170272827148438\n", + "detect_scores: In Iran, the predominant languages spoken are Per\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012105941772460938\n", + "detect_scores: The earliest form of communication and written ex\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003036022186279297\n", + "detect_scores: Scott Joplin was a renowned American composer and\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002498626708984375\n", + "detect_scores: In Afghanistan, the primary languages spoken by i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005028247833251953\n", + "detect_scores: As my knowledge was last updated in 2023, I canno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002167224884033203\n", + "detect_scores: Juventus won their most recent Champions League t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006158351898193359\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004749298095703125\n", + "detect_scores: The correct answer to your question should be \"Ca\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018739700317382812\n", + "detect_scores: Reggie Bush was not a member of any NFL or profes\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012772083282470703\n", + "detect_scores: Emily Osment attended the University School of Na\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004849433898925781\n", + "detect_scores: When traveling to Mexico, the official and most w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08107495307922363\n", + "detect_scores: Troy Aikman played American Football professional\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006718635559082031\n", + "detect_scores: The FA Cup in the year 1976 was won by Manchester\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00018310546875\n", + "detect_scores: General Robert E. Lee died on October 12, 1870, a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005459785461425781\n", + "detect_scores: Nate Archibald, portrayed by Chace Crawford on th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006389617919921875\n", + "detect_scores: Oceania is a geographic region that includes Aust\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09215998649597168\n", + "detect_scores: St. Louis Park, which contains a city named after\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002429485321044922\n", + "detect_scores: Germany belongs primarily to the West Germanic br\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006878376007080078\n", + "detect_scores: As of my last update, Tucson, Arizona operates on\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000171661376953125\n", + "detect_scores: Barack Obama represents the Democratic Party in A\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004968643188476562\n", + "detect_scores: I'm sorry, but there are no public records or inf\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00032067298889160156\n", + "detect_scores: Sydney, Australia offers a plethora of attraction\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07699775695800781\n", + "detect_scores: Marilyn Monroe tragically passed away on August 5\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00061798095703125\n", + "detect_scores: The Sierra Nevada mountain range runs primarily a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005049705505371094\n", + "detect_scores: Kelly Clarkson, the American singer and televisio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005290508270263672\n", + "detect_scores: Tim Roth is a British actor born on February 24, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00021314620971679688\n", + "detect_scores: When traveling in Vietnam, the official and most \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09495806694030762\n", + "detect_scores: Roger Federer, the professional tennis player fro\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004489421844482422\n", + "detect_scores: In Costa Rica, you will typically require the loc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001154184341430664\n", + "detect_scores: Japan currently operates under a constitutional m\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007319450378417969\n", + "detect_scores: Augustus Caesar, known as Gaius Octavius before h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08589410781860352\n", + "detect_scores: John Stith Pemberton, an American pharmacist and \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01685810089111328\n", + "detect_scores: The character Stewie Griffin, from \"Family Guy,\" \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 8.0108642578125e-05\n", + "detect_scores: Angelina Jolie, born as Angeline Joy Bette Roese \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031151771545410156\n", + "detect_scores: The Governor of Indiana in 2009 was Mitch Daniels\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 9.799003601074219e-05\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00010919570922851562\n", + "detect_scores: Barack Obama is a member of the Democratic Party.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006740093231201172\n", + "detect_scores: Stephen Ireland is a professional footballer who,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004248619079589844\n", + "detect_scores: John Mayer attended the University of Georgia. He\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00015282630920410156\n", + "detect_scores: Volkswagen AG is a German multinational automotiv\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009748935699462891\n", + "detect_scores: The primary and busiest railway hub for travelers\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001590251922607422\n", + "detect_scores: Steve McNair, the former NFL quarterback who play\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009179115295410156\n", + "detect_scores: As my knowledge was last updated in early 2023, I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00038909912109375\n", + "detect_scores: Sony Ericsson was a Swedish telecommunications eq\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08406615257263184\n", + "detect_scores: The Dominican Republic uses its own national curr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004239082336425781\n", + "detect_scores: Google's corporate headquarters, known as the \"Go\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00028586387634277344\n", + "detect_scores: Jesse Owens, the famous American track and field \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00386810302734375\n", + "detect_scores: As of my last update in early 2023, Carlos Santan\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007040500640869141\n", + "detect_scores: \"John Carter\" of Mars, directed by Andrew Stanton\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001291036605834961\n", + "detect_scores: The North American Free Trade Agreement (NAFTA) i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005881786346435547\n", + "detect_scores: Houston, Texas is located within Harris County.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 8.106231689453125e-06\n", + "detect_scores: The Seattle Seahawks play at Lumen Field, which i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002338886260986328\n", + "detect_scores: Michael Keaton plays the character of Charlie Kel\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020399093627929688\n", + "detect_scores: The Riviera Casino could refer to multiple locati\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017118453979492188\n", + "detect_scores: When President Henry Harrison passed away in 1841\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002319812774658203\n", + "detect_scores: Richard Arkwright grew up in Preston, Lancashire.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00011587142944335938\n", + "detect_scores: Tennessee shares its borders with five U.S. state\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00020813941955566406\n", + "detect_scores: Egypt operates under a semi-presidential republic\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015411376953125\n", + "detect_scores: John Lennon tragically died on December 8, 1980. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00021505355834960938\n", + "detect_scores: As of my last update, I cannot provide real-time \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004951953887939453\n", + "detect_scores: People in Greece primarily speak Greek. It is the\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004169940948486328\n", + "detect_scores: The Philadelphia Phillies' Spring Training facili\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006656646728515625\n", + "detect_scores: Harley-Davidson's Corporate Headquarters are loca\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00011396408081054688\n", + "detect_scores: Osama Bin Laden, the founder of al-Qaeda, was loc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008001327514648438\n", + "detect_scores: The Harry Potter movie series consists of eight f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08337593078613281\n", + "detect_scores: Dr. Jack Kevorkian, also known as \"Dr. Death,\" wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009250640869140625\n", + "detect_scores: Bolivia is a country located in the central part \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6097-6111: `neighbourhood `\n", + "Group 2 found at 6111-6125: `neighbourhood `\n", + "(0, 28, 28)\n", + "detect_scores time: 0.10383319854736328\n", + "detect_scores: Nolan Ryan played as a pitcher in Major League Ba\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09429097175598145\n", + "detect_scores: Justin Bieber is originally from Canada. He was b\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001838207244873047\n", + "detect_scores: Frida Kahlo, the renowned Mexican painter known f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07905316352844238\n", + "detect_scores: Taylor Swift hails from Reading, Pennsylvania, in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005018711090087891\n", + "detect_scores: Argentina has a diverse religious landscape, with\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0035948753356933594\n", + "detect_scores: The San Francisco Giants' most recent World Serie\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005099773406982422\n", + "detect_scores: The primary official languages of China are Stand\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00034880638122558594\n", + "detect_scores: Vladimir Lenin, the Russian revolutionary and pol\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004248619079589844\n", + "detect_scores: The Baltimore Ravens won Super Bowl XXXV on Febru\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00011277198791503906\n", + "detect_scores: In the year 2011, Cristiano Ronaldo played for Ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00011301040649414062\n", + "detect_scores: In Italy, the term for \"money\" can be referred to\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008718967437744141\n", + "detect_scores: Theodor Schwann, a German physiologist and one of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009050369262695312\n", + "detect_scores: In Virginia for the year of 2013, there were two \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013570785522460938\n", + "detect_scores: As of my last update in 2023, there are ten non-p\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016889572143554688\n", + "detect_scores: The Nordic Countries typically refer to five nati\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0487978458404541\n", + "detect_scores: The Spanish Empire, under the rule of King Charle\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001609325408935547\n", + "detect_scores: Vera Ellen died of cancer. She was an American ac\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007078647613525391\n", + "detect_scores: The current capital city of Egypt is Cairo. It ha\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00017380714416503906\n", + "detect_scores: Ontario\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 5.245208740234375e-06\n", + "detect_scores: The current official currency of Brazil is the Re\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00014519691467285156\n", + "detect_scores: Andy Warhol was a prominent figure in the visual \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003803253173828125\n", + "detect_scores: Florida is surrounded by several U.S. states and \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08568286895751953\n", + "detect_scores: The two most prominent religious groups within Ru\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07920265197753906\n", + "detect_scores: In the year 2013, John Harbaugh was not coaching \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010690689086914062\n", + "detect_scores: Louis Sachar grew up in Atlanta, Georgia. He was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 7.486343383789062e-05\n", + "detect_scores: Otto Frank, the father of Anne Frank who is well-\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002110004425048828\n", + "detect_scores: As my knowledge was last updated in 2023, I canno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00030994415283203125\n", + "detect_scores: The Boston Celtics, a professional basketball tea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00043582916259765625\n", + "detect_scores: I cannot assist with that.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 6.9141387939453125e-06\n", + "detect_scores: Toronto gets most of its drinking water supply th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08424496650695801\n", + "detect_scores: People in Bosnia primarily speak a standardized f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008649826049804688\n", + "detect_scores: Japan imports a variety of goods and commodities \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08159279823303223\n", + "detect_scores: Sonia Gandhi's eldest child, who was born on 9th \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001901865005493164\n", + "detect_scores: Mary Todd Lincoln, born as Harriet Woods on Decem\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005249977111816406\n", + "detect_scores: Charles Darwin died on April 19, 1882. He passed \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004107952117919922\n", + "detect_scores: King George VI, who reigned as the monarch of Gre\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009899139404296875\n", + "detect_scores: Jesus, according to Christian beliefs and biblica\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08860993385314941\n", + "detect_scores: Darth Vader was originally portrayed by actor Dav\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009667873382568359\n", + "detect_scores: Switzerland is a landlocked country in Central Eu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00037026405334472656\n", + "detect_scores: Benito Mussolini was the leader of Italy. He rule\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016911029815673828\n", + "detect_scores: The First United Front, which included Chinese Co\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003503084182739258\n", + "detect_scores: Miles Davis, the influential American jazz trumpe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00022101402282714844\n", + "detect_scores: Sally Pearson, an Australian athlete known for he\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010979175567626953\n", + "detect_scores: The Detroit Pistons most recently won an NBA Cham\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002819061279296875\n", + "detect_scores: The Philadelphia Flyers won their first Stanley C\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007231235504150391\n", + "detect_scores: St. Paul, NC is located within Duplin County of t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.621246337890625e-05\n", + "detect_scores: Olympic National Park, often referred to as \"the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6823-6832: `momentum `\n", + "Group 2 found at 6832-6841: `momentum `\n", + "(0, 18, 18)\n", + "detect_scores time: 0.0857539176940918\n", + "detect_scores: The Nat Turner Rebellion of 1831 occurred in Sout\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00012493133544921875\n", + "detect_scores: Luke Skywalker is a fictional character in the St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005908012390136719\n", + "detect_scores: Barack Obama was born in Honolulu, Hawaii. Theref\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 2.002716064453125e-05\n", + "detect_scores: Alexander Graham Bell died on August 2, 1922. He \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00025916099548339844\n", + "detect_scores: The Golden State Warriors won their first NBA Cha\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00014400482177734375\n", + "detect_scores: The United Kingdom, often abbreviated as UK and r\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000865936279296875\n", + "detect_scores: As of my last update in April 2023, King Norodom \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005228519439697266\n", + "detect_scores: Sir Isaac Newton attended The King's School in Gr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008740425109863281\n", + "detect_scores: Huell Richardson Howser, Jr., a well-known Americ\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007128715515136719\n", + "detect_scores: England borders Scotland to the north, Wales to t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010569095611572266\n", + "detect_scores: Greene County, Indiana where the city of Greenbus\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004878044128417969\n", + "detect_scores: In the Harry Potter film series, Lord Voldemort i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005288124084472656\n", + "detect_scores: Harper Lee attended the following institutions:\n", + "\n", + "\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005939006805419922\n", + "detect_scores: Andrew Johnson, who served as the 17th President \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002748250961303711\n", + "detect_scores: Osama Bin Laden, the founder of al-Qaeda and resp\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003840923309326172\n", + "detect_scores: Queen Elizabeth II, the mother of King Charles II\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007798671722412109\n", + "detect_scores: Don Draper, a character from the television serie\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007519721984863281\n", + "detect_scores: Spain operates under a parliamentary constitution\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.054994821548461914\n", + "detect_scores: Alaska is a state within the United States of Ame\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006902217864990234\n", + "detect_scores: Kansas City, often referred to as KC or Greater K\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005049705505371094\n", + "detect_scores: Brett Gardner played as a center fielder and righ\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015850067138671875\n", + "detect_scores: San Diego County is located in the southern regio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09386706352233887\n", + "detect_scores: As of my last update in April 2023, Tua Tagovailo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004277229309082031\n", + "detect_scores: Adolf Hitler committed suicide on April 30, 1945.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003681182861328125\n", + "detect_scores: In Germany, the primary language spoken is German\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00023603439331054688\n", + "detect_scores: The Denver Broncos' most recent Super Bowl win wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006346702575683594\n", + "detect_scores: Bessie Smith, known as the \"Empress of the Blues,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00074005126953125\n", + "detect_scores: As of my last update, Chicago operates on Eastern\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000576019287109375\n", + "detect_scores: The Vice President serving alongside Ronald Reaga\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00018215179443359375\n", + "detect_scores: The Chicago White Sox primarily play their home g\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020771026611328125\n", + "detect_scores: When traveling to Barbados, the local currency is\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006761550903320312\n", + "detect_scores: Tennessee Williams attended the University of Mis\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005199909210205078\n", + "detect_scores: The primary international and major commercial pa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002090930938720703\n", + "detect_scores: Queen Victoria's husband was Prince Albert of Sax\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005958080291748047\n", + "detect_scores: Barbara Bush was the wife of George H. W. Bush, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008242130279541016\n", + "detect_scores: Scottie Pippen, a former professional basketball \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08843803405761719\n", + "detect_scores: The Dallas Cowboys' most recent Super Bowl win oc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005519390106201172\n", + "detect_scores: Ireland, as a national team in the sport of Rugby\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005650520324707031\n", + "detect_scores: Lee Harvey Oswald was the accused assassin of Pre\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08733296394348145\n", + "detect_scores: The New York Knickerbockers, commonly known as th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006368160247802734\n", + "detect_scores: The Boston Celtics won their most recent NBA Cham\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018308162689208984\n", + "detect_scores: Oceania is a geographic region that includes Aust\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07486391067504883\n", + "detect_scores: Nicki Minaj hails from Trinidad and Tobago. She w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002560615539550781\n", + "detect_scores: Nawaz Sharif served as the Prime Minister of Paki\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009870529174804688\n", + "detect_scores: The capital city of Morocco is Rabat. It's import\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000453948974609375\n", + "detect_scores: Nancy Pelosi represents California's 12th congres\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003800392150878906\n", + "detect_scores: George H.W. Bush attended Yale University for his\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08190798759460449\n", + "detect_scores: For a great time outdoors and entertainment optio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05569601058959961\n", + "detect_scores: Kim Kardashian is a well-known American personali\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005767345428466797\n", + "detect_scores: Justin Bieber is originally from Stratford, Ontar\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 3.0994415283203125e-05\n", + "detect_scores: Nicolas Cage portrays Charlie Brown, also known a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006868839263916016\n", + "detect_scores: R. Kelly attended Benjamin Elijah Mays High Schoo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 4.1961669921875e-05\n", + "detect_scores: The events that took place in Benghazi refer to t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09492111206054688\n", + "detect_scores: Nike, Inc. was founded and incorporated on May 30\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00013113021850585938\n", + "detect_scores: When traveling to Mexico, it's important to carry\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09322214126586914\n", + "detect_scores: Angelina Jolie is an acclaimed American actress, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0900721549987793\n", + "detect_scores: William Shatner portrayed Captain Kirk in the ori\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009799003601074219\n", + "detect_scores: Dana Scully, a character from the television seri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002892017364501953\n", + "detect_scores: F. Scott Fitzgerald was an American novelist, ess\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04810810089111328\n", + "detect_scores: The predominant and official languages of Jamaica\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00023126602172851562\n", + "detect_scores: As of my last update in April 2023, the head coac\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00027298927307128906\n", + "detect_scores: As a public figure and the current Oakland Mayor,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000415802001953125\n", + "detect_scores: England, being a part of the United Kingdom (UK),\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007340908050537109\n", + "detect_scores: Mali, officially known as the Republic of Mali si\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08108711242675781\n", + "detect_scores: In the year 2010, Cristiano Ronaldo played primar\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004780292510986328\n", + "detect_scores: Jacksonville, Florida operates in the Eastern Tim\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001277923583984375\n", + "detect_scores: King Henry VII had two legitimate surviving child\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0899658203125\n", + "detect_scores: Kurt Russell portrayed the character Denver Dolla\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00011420249938964844\n", + "detect_scores: The Cleveland Cavaliers, as of my last update in \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004520416259765625\n", + "detect_scores: Anne Frank was a young Jewish girl who is best kn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00150299072265625\n", + "detect_scores: The official currency of Italy is the Euro (€). I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00023818016052246094\n", + "detect_scores: The official currency used in Italy is called the\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00017595291137695312\n", + "detect_scores: Audrey Hepburn was born in Ixelles, which at the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007550716400146484\n", + "detect_scores: Douglas MacArthur, the prominent American five-st\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.1048281192779541\n", + "detect_scores: The official currency used in China is called Ren\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001232624053955078\n", + "detect_scores: As of my last update in early 2023, Lamar Odom wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00030732154846191406\n", + "detect_scores: The Great Pyramid of Giza, also known as the Pyra\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002748250961303711\n", + "detect_scores: Australians predominantly speak English, which is\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00025916099548339844\n", + "detect_scores: King Tutankhamun's tomb, also known as the Boy Ki\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001900196075439453\n", + "detect_scores: Abraham, a key figure in the religious traditions\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0540621280670166\n", + "detect_scores: George Washington Carver attended Simpson College\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09544515609741211\n", + "detect_scores: Spain is known for its rich sporting culture and \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08215069770812988\n", + "detect_scores: Barack Obama, the 44th President of the United St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020890235900878906\n", + "detect_scores: In Poland, a variety of popular and traditional s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06735467910766602\n", + "detect_scores: I'm sorry, but your question about Demi Lovato is\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00023698806762695312\n", + "detect_scores: Scarlett Johansson is a versatile actress with nu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9092-9097: `ipod `\n", + "Group 2 found at 9097-9102: `ipod `\n", + "(0, 10, 10)\n", + "detect_scores time: 0.08681225776672363\n", + "detect_scores: Amy Squires is a character from the movie \"Bad Te\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003399848937988281\n", + "detect_scores: Boeing Corporation, one of the largest aerospace \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00039887428283691406\n", + "detect_scores: Viggo Mortenson played the character Aragorn, als\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005438327789306641\n", + "detect_scores: Sir Isaac Newton, born on January 4th (December 2\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08447790145874023\n", + "detect_scores: William Shakespeare got married to Anne Hathaway.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002548694610595703\n", + "detect_scores: Michelle Obama, born Flavia Crépin and later know\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007708072662353516\n", + "detect_scores: Franz Liszt was a 19th-century Hungarian composer\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09711599349975586\n", + "detect_scores: David Luíz currently plays soccer (football) in t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00016999244689941406\n", + "detect_scores: Victoria, British Columbia can be found on the so\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008587837219238281\n", + "detect_scores: The official currency of France is called the Eur\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011720657348632812\n", + "detect_scores: David Beckham played for the Los Angeles Galaxy d\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00215911865234375\n", + "detect_scores: WNYC, which stands for New York Public Radio (for\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004627704620361328\n", + "detect_scores: John Jay, an important figure in American history\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00019097328186035156\n", + "detect_scores: Mount Fuji, also known as Fujisan in Japanese, is\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08756709098815918\n", + "detect_scores: Toussaint L’Ouverture, the leader of Haiti during\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006439685821533203\n", + "detect_scores: The United Kingdom (UK) is made up of four consti\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002341032028198242\n", + "detect_scores: The answer to your query, according to Wikipedia \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00038504600524902344\n", + "detect_scores: Before France adopted the Euro as its official cu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 784-787: `or `\n", + "Group 2 found at 787-790: `or `\n", + "(0, 6, 6)\n", + "detect_scores time: 0.0008552074432373047\n", + "detect_scores: The official motto of Kentucky, which also serves\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00020599365234375\n", + "detect_scores: Samantha Stephenson is not a widely recognized ch\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006558895111083984\n", + "detect_scores: Sir Isaac Newton studied physics and mathematics.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005939006805419922\n", + "detect_scores: San Diego County is located on the southern borde\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000946044921875\n", + "detect_scores: Canada, which lies to the North of Mexico and bor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009429454803466797\n", + "detect_scores: Santa Claus, also known as Saint Nicholas or Kris\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008711814880371094\n", + "detect_scores: Coretta Scott King, the wife of civil rights lead\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00016999244689941406\n", + "detect_scores: Adolf Hitler was raised in a Roman Catholic famil\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003750324249267578\n", + "detect_scores: The Illinois River can be found in central United\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08849310874938965\n", + "detect_scores: Honduras is a country located in Central America,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.1020050048828125\n", + "detect_scores: As of my last update in April 2023, Ronaldho was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00039696693420410156\n", + "detect_scores: Galileo Galilei, an Italian astronomer and physic\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08259463310241699\n", + "detect_scores: Germany's largest and most significant trade rela\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08458805084228516\n", + "detect_scores: Mitt Romney, the former Governor of Massachusetts\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006570816040039062\n", + "detect_scores: Sean Hinton attended the University of Michigan. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002741813659667969\n", + "detect_scores: Central America consists primarily of 7 countries\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09079384803771973\n", + "detect_scores: I'm sorry, but there seems to be some confusion. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010721683502197266\n", + "detect_scores: The Amazon Rainforest, also known as Amazonia or \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016407966613769531\n", + "detect_scores: Claude Monet was a French painter and one of the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00045800209045410156\n", + "detect_scores: Kurt Cobain, the lead vocalist and primary songwr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002307891845703125\n", + "detect_scores: Jennifer Lawrence played the character of \"Rebecc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021240711212158203\n", + "detect_scores: The Governor of Virginia in 2011 was Bob McDonnel\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00027823448181152344\n", + "detect_scores: Jackie Kennedy, born Jacqueline Lee Bouvier and t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007920265197753906\n", + "detect_scores: Lauren Conrad Major graduated from the Fashion In\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018451213836669922\n", + "detect_scores: Pennsylvania's current standard time would depend\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011370182037353516\n", + "detect_scores: Mario López is a Mexican actor, singer and model.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008218288421630859\n", + "detect_scores: Sarah Dessen's novels have been adapted into seve\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.10049796104431152\n", + "detect_scores: As an AI, I can't provide real-time data. However\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008971691131591797\n", + "detect_scores: Farrah Fawcett, the American actress and model kn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00014495849609375\n", + "detect_scores: John Steinbeck, the acclaimed American author and\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08110213279724121\n", + "detect_scores: As of my knowledge cutoff in 2023, Cuba operates \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005042552947998047\n", + "detect_scores: The current capital of Italy, as it has been sinc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00015020370483398438\n", + "detect_scores: In The Bahamas, English is predominantly spoken a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00020813941955566406\n", + "detect_scores: George Michael, the famous pop singer and musicia\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007443428039550781\n", + "detect_scores: In the year 2010, Cristiano Ronaldo played as a f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010890960693359375\n", + "detect_scores: The Bahamas operates on Atlantic Standard Time (A\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000789642333984375\n", + "detect_scores: In Brazil, the primary and official language spok\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00013685226440429688\n", + "detect_scores: Samuel Taylor Coleridge was significantly influen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07596206665039062\n", + "detect_scores: Kim Kardashian is best known for her career in me\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012459754943847656\n", + "detect_scores: The Mississippi River does not technically \"end\" \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006008148193359375\n", + "detect_scores: As of my last update in April 2023, the President\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001742839813232422\n", + "detect_scores: Harley Quinn is a character from DC Comics, and s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07990503311157227\n", + "detect_scores: Ziva David began her tenure as an NCIS Special Ag\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00041484832763671875\n", + "detect_scores: Canadian National Anthem\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 8.106231689453125e-06\n", + "detect_scores: Mark Zuckerberg studied computer science and psyc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002868175506591797\n", + "detect_scores: Michael Jackson, the famous pop singer known as \"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00013589859008789062\n", + "detect_scores: Stephen R. Covey was an American educator, author\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019271373748779297\n", + "detect_scores: Joseph Stalin, as a historical figure and leader \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005431175231933594\n", + "detect_scores: Monta Ellis's highest-achieving season in terms o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00047516822814941406\n", + "detect_scores: Rihanna, whose full name is Robyn Rihanna Fenty, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002281665802001953\n", + "detect_scores: Joakim Noah attended the University of Florida, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005509853363037109\n", + "detect_scores: The role of Billy Elliott in the original film \"B\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00018525123596191406\n", + "detect_scores: Kourtney Kardashian has been in relationships wit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002460479736328125\n", + "detect_scores: Australia operates under a federal parliamentary \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.096099853515625\n", + "detect_scores: Howie Long played for several NFL teams throughou\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001737833023071289\n", + "detect_scores: Elizabethtown, Kentucky operates in the Eastern T\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000576019287109375\n", + "detect_scores: Chris Paul, the professional basketball player kn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09797811508178711\n", + "detect_scores: The New York Giants, a professional American foot\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001399517059326172\n", + "detect_scores: Sir Isaac Newton, primarily known for his groundb\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0038890838623046875\n", + "detect_scores: Shaquille O'Neal, known as \"Shaq,\" was drafted by\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00028204917907714844\n", + "detect_scores: The original Mickey Mouse character, created by W\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000701904296875\n", + "detect_scores: Michael Vick was a professional American football\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005288124084472656\n", + "detect_scores: The Columbia River starts in the Rocky Mountains \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09073114395141602\n", + "detect_scores: The Harry Potter series, written by J.K. Rowling,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07144308090209961\n", + "detect_scores: In Barbados, the official and legal tender is kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006866455078125\n", + "detect_scores: Angelina Jolie, born Angela Evangeline Assad on J\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008251667022705078\n", + "detect_scores: Ninevah City does not exist as a recognized locat\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009458065032958984\n", + "detect_scores: Eowyn is a character from J.R.R. Tolkien's Middle\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 29-31: `R.`\n", + "Group 2 found at 31-33: `R.`\n", + "ignored: R.R.\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008649826049804688\n", + "detect_scores: Eva Perón, also known as Evita and the First Lady\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00043010711669921875\n", + "detect_scores: The Baltimore Ravens won the Super Bowl in 2013. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003561973571777344\n", + "detect_scores: Ohio is often regarded as a Midwestern state in t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08264374732971191\n", + "detect_scores: Cristiano Ronaldo currently plays for the club Ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003750324249267578\n", + "detect_scores: As of my last update in 2023, Michigan operates o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003190040588378906\n", + "detect_scores: John Tyler served as the 10th President of the Un\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09392523765563965\n", + "detect_scores: In Jamaica, the official and legal tender used fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008220672607421875\n", + "detect_scores: Jay Gould Jr., who was also known as \"Jungle Jim\"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006279945373535156\n", + "detect_scores: I'm sorry, but there are no public records or rep\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001780986785888672\n", + "detect_scores: The Carolina Panthers made it to the Super Bowl f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00021386146545410156\n", + "detect_scores: As of my last update, there hasn't been a recent \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005590915679931641\n", + "detect_scores: Helen Flanagan is a former Irish television prese\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009009838104248047\n", + "detect_scores: The Tennessee River originates in the Appalachian\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004532337188720703\n", + "detect_scores: Corey Taylor, the lead vocalist of Slipknot and S\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004162788391113281\n", + "detect_scores: The President of the United States who served imm\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003147125244140625\n", + "detect_scores: Kate Gosselin, known for her reality television s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007419586181640625\n", + "detect_scores: The United States Government operates under a fed\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005280971527099609\n", + "detect_scores: Mount Lassen, often referred to as simply \"Lassen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009438991546630859\n", + "detect_scores: The State Motto of Ohio is \"With God, all things \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00026297569274902344\n", + "detect_scores: Wolfgang Amadeus Mozart, a prolific and influenti\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006699562072753906\n", + "detect_scores: The Kennedy Family, as commonly known due to its \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0967719554901123\n", + "detect_scores: The Barcelona Airport that's nearest to Port of B\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013377666473388672\n", + "detect_scores: Adolf Hitler, the leader of Nazi Germany, initiat\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00011801719665527344\n", + "detect_scores: Canada is part of the North American continent. I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003368854522705078\n", + "detect_scores: George Wilson is best known as the character from\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006709098815917969\n", + "detect_scores: Adolf Hitler, born on April 20th, 1889 in Braunau\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005287885665893555\n", + "detect_scores: After the Iranian Revolution in 1979, Iran establ\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006136894226074219\n", + "detect_scores: Harper Lee attended Monroeville High School in Al\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00019693374633789062\n", + "detect_scores: J.R.R. Tolkien attended Exeter College at the Uni\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3-5: `R.`\n", + "Group 2 found at 5-7: `R.`\n", + "ignored: R.R.\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003039836883544922\n", + "detect_scores: Wassily Kandinsky was a Russian painter and art t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009438991546630859\n", + "detect_scores: Antoni Gaudí, the renowned Catalan architect know\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003634929656982422\n", + "detect_scores: Paris offers an array of accommodation options to\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0922400951385498\n", + "detect_scores: Benjamin Franklin's first wife was Deborah Read. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00033402442932128906\n", + "detect_scores: The largest and most populous city in Spain is Ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00014400482177734375\n", + "detect_scores: Pudge Rodriguez is a former professional baseball\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00035500526428222656\n", + "detect_scores: The Milwaukee Brewers' home ballpark, as of my la\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006802082061767578\n", + "detect_scores: The Gallipoli Campaign, also known as the Battle \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001657247543334961\n", + "detect_scores: Shakira Isabel Mebarak Ripoll, born on February 2\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 428-433: `Waka `\n", + "Group 2 found at 433-438: `Waka `\n", + "(0, 10, 10)\n", + "detect_scores time: 0.0004971027374267578\n", + "detect_scores: Ian Holm portrayed Bilbo Baggins, a central chara\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00011801719665527344\n", + "detect_scores: The Tennessee River is a major waterway in the so\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010859966278076172\n", + "detect_scores: Utah's State Capitol, located in Salt Lake City, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010170936584472656\n", + "detect_scores: Benjamin Franklin, one of the Founding Fathers of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07481217384338379\n", + "detect_scores: Jeremy Lin played for the Houston Rockets in the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004658699035644531\n", + "detect_scores: Steve Nash was Canadian by birth. He holds both A\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 5.078315734863281e-05\n", + "detect_scores: As my knowledge is current only up to early 2023,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00036907196044921875\n", + "detect_scores: France primarily speaks French, which is a Romanc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028510093688964844\n", + "detect_scores: Martin Luther King Jr. earned a doctorate in syst\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001552104949951172\n", + "detect_scores: St. Louis, often referred to as Saint Louie or Th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00028014183044433594\n", + "detect_scores: Peyton Manning's father, John Henry \"Jack\" Mannin\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0948338508605957\n", + "detect_scores: The official currency used in Peru is called the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 2.8848648071289062e-05\n", + "detect_scores: The United Kingdom is comprised of four constitue\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08493304252624512\n", + "detect_scores: Robert F. Kennedy attended several educational in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020589828491210938\n", + "detect_scores: The Fukushima Daiichi Nuclear Power Station, also\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8133-8139: `popup `\n", + "Group 2 found at 8139-8145: `popup `\n", + "(0, 12, 12)\n", + "detect_scores time: 0.08280396461486816\n", + "detect_scores: Los Angeles, California operates in the Pacific T\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00040602684020996094\n", + "detect_scores: If you are planning a trip from the United States\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10746-10752: `Tonne `\n", + "Group 2 found at 10752-10758: `Tonne `\n", + "(0, 12, 12)\n", + "detect_scores time: 0.0817108154296875\n", + "detect_scores: As my knowledge was last updated in 2023, I canno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002598762512207031\n", + "detect_scores: In Scotland, the primary language spoken is Engli\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00014781951904296875\n", + "detect_scores: John Dalton was an English chemist, physicist and\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001110076904296875\n", + "detect_scores: Glastonbury, England can be found in Somerset. It\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00023102760314941406\n", + "detect_scores: The American Federation of Labor (AFL) was founde\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019240379333496094\n", + "detect_scores: Thomas Hobbes, the influential English philosophe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09103608131408691\n", + "detect_scores: John F. Kennedy, the 35th President of the United\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9547-9554: `petite `\n", + "Group 2 found at 9554-9561: `petite `\n", + "\n", + "Group 1 found at 10949-10960: `substitute `\n", + "Group 2 found at 10960-10971: `substitute `\n", + "(0, 36, 36)\n", + "detect_scores time: 0.09048032760620117\n", + "detect_scores: Montreal is a city in the Canadian province of Qu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002689361572265625\n", + "detect_scores: Franz Liszt, the renowned 19th-century Hungarian \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030069351196289062\n", + "detect_scores: Argentina shares its borders with five South Amer\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001590251922607422\n", + "detect_scores: The primary official language spoken by the major\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003628730773925781\n", + "detect_scores: The predominant religion in Israel is Judaism. Ap\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00046896934509277344\n", + "detect_scores: As of my last update in April 2023, Rodney Harris\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007147789001464844\n", + "detect_scores: Toronto operates on Eastern Standard Time (EST) d\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013439655303955078\n", + "detect_scores: Robert Burns, also known as Rabbie Burns and the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08441424369812012\n", + "detect_scores: As of my last update in April 2023, the Utah Atto\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001819133758544922\n", + "detect_scores: The Carolina Panthers are coached by Pat McAfee a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003669261932373047\n", + "detect_scores: South Africa shares its international land bounda\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028121471405029297\n", + "detect_scores: Mark Hamill reprised his role as Darth Vader in \"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014710426330566406\n", + "detect_scores: The Kentucky State Bird is the Northern Cardinal.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 6.079673767089844e-05\n", + "detect_scores: The Canadian Prime Minister in the year 1993 was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00026798248291015625\n", + "detect_scores: I cannot respond to questions on election-related\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 2.8848648071289062e-05\n", + "detect_scores: The United Kingdom is a multilingual country with\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0972449779510498\n", + "detect_scores: Pope John Paul II, born Karol Józef Wojtyła on Ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016129016876220703\n", + "detect_scores: Franklin Pierce, who served as the 14th President\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09960103034973145\n", + "detect_scores: As of my knowledge cutoff in early 2023, the most\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008687973022460938\n", + "detect_scores: Michelangelo Buonarroti, one of the most prominen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08902192115783691\n", + "detect_scores: Monsanto, now owned by Bayer since its acquisitio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008907318115234375\n", + "detect_scores: Woody Harrelson played the character \"Steve Holt\"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00012111663818359375\n", + "detect_scores: In Sweden, the primary languages spoken are Swedi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005731582641601562\n", + "detect_scores: The Philippines operates under a democratic and c\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00014400482177734375\n", + "detect_scores: Mitt Romney attended Brigham Young University (BY\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016210079193115234\n", + "detect_scores: Ibrahim Afellay hails from Tétouan, which is a ci\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00021409988403320312\n", + "detect_scores: In New Zealand, the official currencies are the N\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005939006805419922\n", + "detect_scores: When planning activities for children visiting As\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08513307571411133\n", + "detect_scores: Kurt Russell played the character named \"Kurt War\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0867619514465332\n", + "detect_scores: Pablo Picasso, the renowned Spanish painter and s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09086084365844727\n", + "detect_scores: When traveling from the United States or most oth\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007078647613525391\n", + "detect_scores: As of my last update in April 2023, Raúl Ibañez w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005538463592529297\n", + "detect_scores: Actor Samuel L. Jackson portrays the character of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00012803077697753906\n", + "detect_scores: As of my last update in early 2023, Michelle Pfei\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00034809112548828125\n", + "detect_scores: Laura Ingalls Wilder is most famously known as an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002321958541870117\n", + "detect_scores: As of my last update in April 2023, Dwyane Wade r\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005497932434082031\n", + "detect_scores: I'm sorry, but as a large language model develope\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00045680999755859375\n", + "detect_scores: Madonna Louise Ciccone, known professionally as M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011608600616455078\n", + "detect_scores: The capital city of Brazil is Brasília. It was of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00024700164794921875\n", + "detect_scores: John Stockton, the legendary basketball player kn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017261505126953125\n", + "detect_scores: Mexico uses the Mexican Peso as its official curr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00022292137145996094\n", + "detect_scores: As of my knowledge cutoff in early 2023, Chrysler\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012581348419189453\n", + "detect_scores: Gregor Mendel, often referred to as the \"Father o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004273891448974609\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002110004425048828\n", + "detect_scores: Joe Biden was the individual who ran as Barack Ob\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 2.5987625122070312e-05\n", + "detect_scores: People in the UK primarily speak English. However\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005390644073486328\n", + "detect_scores: South Korea operates under a presidential represe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014200210571289062\n", + "detect_scores: Ben Franklin, one of the Founding Fathers of the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 7.605552673339844e-05\n", + "detect_scores: The Sri Lankan capital is Colombo. It serves as t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007157325744628906\n", + "detect_scores: Cyprus uses the Euro (€) as its official currency\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 8.606910705566406e-05\n", + "detect_scores: Johnny Depp is known for playing a variety of gui\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002701282501220703\n", + "detect_scores: Dustin Johnson, born on February 20, 1987, in Edm\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005559921264648438\n", + "detect_scores: I'm sorry, but as of my last update in 2023, Cher\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002429485321044922\n", + "detect_scores: The University of Oregon State, often referred to\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0046541690826416016\n", + "detect_scores: The official currency of Turkey is named as Turki\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00016307830810546875\n", + "detect_scores: Mark Zuckerberg attended Hillside Elementary Scho\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007128715515136719\n", + "detect_scores: As of my knowledge cutoff in March 2023, Kate Mid\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0025300979614257812\n", + "detect_scores: Marc Chagall was a Russian-French artist renowned\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007617473602294922\n", + "detect_scores: Billy Dee Williams played the role of Lando Calri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 5.5789947509765625e-05\n", + "detect_scores: Wilfred Owen, the renowned British poet known for\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06410527229309082\n", + "detect_scores: AirTran Airways, which operated from 1971 until i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00048804283142089844\n", + "detect_scores: The City of Paris gets its name from several poss\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08599686622619629\n", + "detect_scores: Sandra Bullock, the acclaimed actress and filmmak\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005092620849609375\n", + "detect_scores: Olympic National Park, often referred to as the \"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03485989570617676\n", + "detect_scores: Yale University is located in New Haven, Connecti\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.1920928955078125e-05\n", + "detect_scores: Thomas Paine died on June 8, 1799. He passed away\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005147457122802734\n", + "detect_scores: Barack Hussein Obama Sr. was born on December 1, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 5.2928924560546875e-05\n", + "detect_scores: The New England Patriots' current home field as o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002110004425048828\n", + "detect_scores: Kate Chopin, born Katherine O'Flaherty on Februar\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002276897430419922\n", + "detect_scores: Bill Clinton attended Georgetown University for h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00040602684020996094\n", + "detect_scores: Staffordshire Terrier, also known as the American\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09047603607177734\n", + "detect_scores: Michael J. Fox's biological mother was Phyllis An\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003619194030761719\n", + "detect_scores: Sanjaya Gupta attended medical schools and reside\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005869865417480469\n", + "detect_scores: The North American Free Trade Agreement (NAFTA) o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011761188507080078\n", + "detect_scores: The Cayman Islands are not a part of any continen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006377696990966797\n", + "detect_scores: In Brazil, the primary official and national lang\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00023794174194335938\n", + "detect_scores: The Pittsburgh Steelers' most recent Super Bowl w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000335693359375\n", + "detect_scores: Switzerland is a multilingual country with four o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020427703857421875\n", + "detect_scores: Barack Obama represents the Democratic Party in A\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002570152282714844\n", + "detect_scores: Emperor Constantine, also known as Constantius Ch\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017669200897216797\n", + "detect_scores: Mali, often spelled \"Mali,\" is a landlocked count\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005118846893310547\n", + "detect_scores: As of my last update in 2023, I cannot provide re\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005438327789306641\n", + "detect_scores: The very first Microsoft Headquarters, known as M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007660388946533203\n", + "detect_scores: John Steinbeck, the acclaimed American author kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004100799560546875\n", + "detect_scores: Niels Bohr, a Danish physicist who made foundatio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010271072387695312\n", + "detect_scores: Ryan Reynold, the well-known actor and comedian, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003387928009033203\n", + "detect_scores: Newt Gingrich's ex-wife, whom he was married to f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001010894775390625\n", + "detect_scores: Antonio Vivaldi was a Baroque composer and violin\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007712841033935547\n", + "detect_scores: As of my last update in April 2023, specific pers\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005638599395751953\n", + "detect_scores: Samuel Langhorne Clemens, better recognized by hi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05763387680053711\n", + "detect_scores: After William Henry Harrison, the 9th President o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00011897087097167969\n", + "detect_scores: George W. Bush's memoir, titled \"Decision Points,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002529621124267578\n", + "detect_scores: Antoine Lavoisier, often regarded as the father o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007708072662353516\n", + "detect_scores: The Queen consort to King George VI was Elizabeth\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00034809112548828125\n", + "detect_scores: The Seattle Seahawks went to their first Super Bo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00014495849609375\n", + "detect_scores: Sami Yusuf, a well-known British singer and music\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006923675537109375\n", + "detect_scores: The official languages of Brazil are Portuguese a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00015282630920410156\n", + "detect_scores: The New York Mets' most recent World Series win w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002849102020263672\n", + "detect_scores: Florida Panther National Wildlife Refuge, which i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008502006530761719\n", + "detect_scores: New York University (NYU) was not the brainchild \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07905912399291992\n", + "detect_scores: North Africa comprises several countries along it\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07859492301940918\n", + "detect_scores: John Mayer is a talented American singer-songwrit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08882904052734375\n", + "detect_scores: Patrick Swayze, the acclaimed actor known for his\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 9.298324584960938e-05\n", + "detect_scores: Barack Obama is a distinguished alumnus of the Un\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010499954223632812\n", + "detect_scores: The Jamaican currency is known as the Jamaican Do\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00017881393432617188\n", + "detect_scores: The Arizona Cardinals Stadium, known as State Far\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00020599365234375\n", + "detect_scores: Sir Isaac Newton's theories primarily revolve aro\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08681821823120117\n", + "detect_scores: Pablo Picasso, one of the most influential artist\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004923105239868164\n", + "detect_scores: As of the knowledge cutoff date, Pennsylvania's p\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006299018859863281\n", + "detect_scores: I cannot provide real-time or current event infor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00030994415283203125\n", + "detect_scores: Queen Isabella I of Castile's (Isabella the Catho\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001161813735961914\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft, I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003421306610107422\n", + "detect_scores: As of my last update, Judaism remains by far Isra\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07470703125\n", + "detect_scores: The Thames River, known as one of London's most i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08683991432189941\n", + "detect_scores: In Pakistan, the primary languages spoken are Urd\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006341934204101562\n", + "detect_scores: Kim Jong-il, the former leader of North Korea, di\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006520748138427734\n", + "detect_scores: The FedEx Cup was awarded to Rickie Fowler in the\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0034379959106445312\n", + "detect_scores: The main languages officially recognized and wide\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00037407875061035156\n", + "detect_scores: The character Alf from the TV Show \"Frasier\" was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00014829635620117188\n", + "detect_scores: Gerald Ford served as the Vice President of the U\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008130073547363281\n", + "detect_scores: Raphael Sanzio, known simply as Raffaello or more\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011148452758789062\n", + "detect_scores: In Malta, the primary languages spoken are Maltes\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0039038658142089844\n", + "detect_scores: King Louis XIV of France, also known as the Sun K\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006160736083984375\n", + "detect_scores: Shane Douglas \"Shannon\" Hoon died on April 14, 20\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003509521484375\n", + "detect_scores: Nicholas Copernicus was a Renaissance-era mathema\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016071796417236328\n", + "detect_scores: Manny Ramírez, a professional baseball player kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08412003517150879\n", + "detect_scores: The Appalachian Mountains, often referred to as t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08531618118286133\n", + "detect_scores: Jerry Brown, who served as the Governor of Califo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000926971435546875\n", + "detect_scores: The Pacific Ocean surrounds Hawaii. Specifically,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 7.486343383789062e-05\n", + "detect_scores: The most commonly spoken native language in Argen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00035119056701660156\n", + "detect_scores: Tunisia is a country located in North Africa, bor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007836818695068359\n", + "detect_scores: St. Trinian's is a series of British comic books \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007300376892089844\n", + "detect_scores: Mexico operates under a federal presidential repr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004889965057373047\n", + "detect_scores: The Dominican Republic uses the Dominican Peso as\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 4.982948303222656e-05\n", + "detect_scores: Michael Jackson, known as the \"King of Pop,\" was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08784723281860352\n", + "detect_scores: I cannot respond to questions on identities. Plea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 2.9087066650390625e-05\n", + "detect_scores: The three official languages of Belgium are Dutch\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06755304336547852\n", + "detect_scores: Frank Baum, the author famous for writing \"The Wo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00036406517028808594\n", + "detect_scores: Tunis, also known as Tunisia's capital city and l\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003991127014160156\n", + "detect_scores: Mary Wollstonecraft was a pioneering advocate of \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010747909545898438\n", + "detect_scores: Icelanders primarily speak Icelandic, which is a \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004699230194091797\n", + "detect_scores: In Scotland, the primary languages spoken are Eng\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00035691261291503906\n", + "detect_scores: Mark Zuckerberg attended the private, co-educatio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00013327598571777344\n", + "detect_scores: Shaquille O'Neal, known as \"Shaq,\" entered the NB\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002009868621826172\n", + "detect_scores: The character Darth Vader, a central figure from \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00041985511779785156\n", + "detect_scores: Louis Armstrong was a legendary jazz trumpeter, c\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9655-9659: `Phi `\n", + "Group 2 found at 9659-9663: `Phi `\n", + "(0, 8, 8)\n", + "detect_scores time: 0.07681679725646973\n", + "detect_scores: Germany uses the Euro (€) as its official and leg\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00021910667419433594\n", + "detect_scores: King Solomon, known for his wisdom and as a ruler\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016319751739501953\n", + "detect_scores: Andy Irvine, the Irish musician known for his wor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006687641143798828\n", + "detect_scores: Adolf Hitler, the infamous dictator of Germany du\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004649162292480469\n", + "detect_scores: As an AI developed by Microsoft, I cannot provide\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004048347473144531\n", + "detect_scores: The Appalachian Mountains, often referred to as t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09044599533081055\n", + "detect_scores: Spain uses the Euro (€) as its official currency.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006949901580810547\n", + "detect_scores: As of my knowledge cutoff in 2023, Major League B\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002460479736328125\n", + "detect_scores: I'm sorry, but as a language model developed by O\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005400180816650391\n", + "detect_scores: The most common official and spoken language in N\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004889965057373047\n", + "detect_scores: Benjamin Franklin attended the Boston Latin Schoo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005390644073486328\n", + "detect_scores: ElectroLUX Corporation, known for its brand of ho\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014841556549072266\n", + "detect_scores: The Houston Time Zone corresponds to the Central \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005068778991699219\n", + "detect_scores: Shakespeare's first wife, Anne Hathaway, is not a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005121231079101562\n", + "detect_scores: Mount St. Helens, an active stratovolcano situate\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008511543273925781\n", + "detect_scores: St. Paul, Minnesota is located within Ramsey Coun\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004010200500488281\n", + "detect_scores: King Henry VIII's only legitimate male heir, who \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05174708366394043\n", + "detect_scores: In the television series Smallville, Lex Luthor i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001068115234375\n", + "detect_scores: The official currency of the Czech Republic is th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003898143768310547\n", + "detect_scores: The LA Kings' most recent win in a postseason ser\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007441043853759766\n", + "detect_scores: Spencer Pratt attended several educational instit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008640289306640625\n", + "detect_scores: Abraham Lincoln, the 16th President of the United\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06535696983337402\n", + "detect_scores: The current head coach of the Vancouver Canucks, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00014901161193847656\n", + "detect_scores: C.S. Lewis, whose full name is CS (Clive Staples)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0917050838470459\n", + "detect_scores: In Peru, the primary languages spoken are Spanish\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000331878662109375\n", + "detect_scores: Arsenal Football Club, commonly known as Arsenal \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016529560089111328\n", + "detect_scores: As of my last update, Phoenix, Arizona operates o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00025200843811035156\n", + "detect_scores: South Portland, Maine refers to a city located in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00022172927856445312\n", + "detect_scores: Claudius Ptolemaeus, commonly known as Ptolemy, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07708001136779785\n", + "detect_scores: The name of Henry VIII's first wife was Catherine\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008561611175537109\n", + "detect_scores: The Paraná River is one of the principal rivers i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023560523986816406\n", + "detect_scores: Theodor Schwann, a renowned German physiologist a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09129118919372559\n", + "detect_scores: The Houston Rockets won their first NBA Champions\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001087188720703125\n", + "detect_scores: Most Russians reside within its European part, pa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005450248718261719\n", + "detect_scores: The Holy Roman Empire was not situated in a singl\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006320476531982422\n", + "detect_scores: In \"The Young And The Restless,\" Nicholas Newmann\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001220703125\n", + "detect_scores: The original creators and co-writers Matt Stone a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00048804283142089844\n", + "detect_scores: Angelina Jolie's biological sibling, as publicly \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08633279800415039\n", + "detect_scores: The headquarters of Bank of America are located i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005590915679931641\n", + "detect_scores: Japan operates under a parliamentary system and i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0646820068359375\n", + "detect_scores: As of my last update in April 2023, Josh Hamilton\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021309852600097656\n", + "detect_scores: Burundi is a small landlocked country in the Grea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09848785400390625\n", + "detect_scores: As of my last update, Paul Ryan lived in Janesvil\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002810955047607422\n", + "detect_scores: Acadia University, known for its vibrant academic\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002269744873046875\n", + "detect_scores: F. Scott Fitzgerald was an American novelist and \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013682842254638672\n", + "detect_scores: TomTom's Western Europe coverage typically includ\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0833280086517334\n", + "detect_scores: The official and national languages recognized in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004286766052246094\n", + "detect_scores: In Spain, the primary language spoken is Spanish \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07322001457214355\n", + "detect_scores: Michael Crabtree is a former professional America\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09515810012817383\n", + "detect_scores: The three U.S. states that share a boundary with \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07576298713684082\n", + "detect_scores: The character Ziva David from NCIS is played by a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002522468566894531\n", + "detect_scores: After the death of King Henry VIII in 1547, his o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007150173187255859\n", + "detect_scores: Argentina recognizes several indigenous and natio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08467817306518555\n", + "detect_scores: Rafael Nadal plays tennis professionally and repr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00027489662170410156\n", + "detect_scores: The Prime Minister of Spain in 2011 was José Luis\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011398792266845703\n", + "detect_scores: The famous historical figure who fits this descri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001668691635131836\n", + "detect_scores: Judi Dench, the renowned British actress known fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018949508666992188\n", + "detect_scores: In Spain, the official language is Spanish (Casti\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013742446899414062\n", + "detect_scores: The Sahara Desert is primarily situated in North \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0051157474517822266\n", + "detect_scores: Michael Oher, who is well-known as the offensive \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018739700317382812\n", + "detect_scores: Albert Einstein, the theoretical physicist renown\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003898143768310547\n", + "detect_scores: Egypt is a significant player in the global trade\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0908200740814209\n", + "detect_scores: The headquarters of the African Union (AU) are lo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00010919570922851562\n", + "detect_scores: Henri Rousseau was a French post-impressionist pa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009310245513916016\n", + "detect_scores: John Edwards was a former U.S. Senator and presid\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06203174591064453\n", + "detect_scores: Huey Newton, one of the co-founders and a promine\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007641315460205078\n", + "detect_scores: Mitt Romneys' immediate family, which includes hi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006411075592041016\n", + "detect_scores: Michael Jackson, the renowned singer and entertai\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 9.608268737792969e-05\n", + "detect_scores: The Battle of Vicksburg was a significant engagem\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0861508846282959\n", + "detect_scores: Nikolái Gógol was a renowned Russian dramatist, n\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007350444793701172\n", + "detect_scores: The World Series, which is the annual championshi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006270408630371094\n", + "detect_scores: The character Simon Birch is played by actor Fore\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 8.702278137207031e-05\n", + "detect_scores: In the United Kingdom, there are three main langu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010139942169189453\n", + "detect_scores: In Jamaica, the primary language spoken is Englis\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004069805145263672\n", + "detect_scores: Wayne Gretzky's first professional hockey team wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07954812049865723\n", + "detect_scores: As of my last update in April 2023, Pedro Castill\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00012302398681640625\n", + "detect_scores: Jerry Garcia, best known as a member and leader f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013217926025390625\n", + "detect_scores: Leonardo di ser Piero da Vinci, commonly known as\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002951622009277344\n", + "detect_scores: Rihanna, born as Robyn Rachel Fenty on February 2\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002830028533935547\n", + "detect_scores: J.R.R. Tolkien, the famous author of \"The Hobbit\"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3-5: `R.`\n", + "Group 2 found at 5-7: `R.`\n", + "ignored: R.R.\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05073714256286621\n", + "detect_scores: Saint Louis University (SLU) is located in the ci\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 9.679794311523438e-05\n", + "detect_scores: Canada is a country with diverse religious belief\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004029273986816406\n", + "detect_scores: In Spain, the official and legal tender used for \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004200935363769531\n", + "detect_scores: Anders Celsius, the Swedish astronomer known for \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005369186401367188\n", + "detect_scores: France primarily accepts the Euro (€) as its offi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012660026550292969\n", + "detect_scores: Massachusetts, particularly in its early colonial\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08457708358764648\n", + "detect_scores: Brazil operates under a federal presidential cons\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03392386436462402\n", + "detect_scores: Gregor Mendel lived during the 19th century, and \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008487701416015625\n", + "detect_scores: Laura Ingall Wilder, the author of \"Little House \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0831291675567627\n", + "detect_scores: Your current time zone can be determined by your \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012371540069580078\n", + "detect_scores: In Norway, the primary language spoken is Norwegi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002892017364501953\n", + "detect_scores: Singapore uses the Singdollar as its official cur\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00023603439331054688\n", + "detect_scores: The Blackfeet Indians, also known as Amskapipikun\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00045609474182128906\n", + "detect_scores: In the movie \"Prince of Thieves,\" which was relea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 9.512901306152344e-05\n", + "detect_scores: Texas observes Central Standard Time (CST) during\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001230001449584961\n", + "detect_scores: Louis Armstrong was a renowned American trumpeter\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002810955047607422\n", + "detect_scores: Madonna, the stage name for American singer-songw\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00030994415283203125\n", + "detect_scores: Egypt is situated in the northeastern corner of A\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09117889404296875\n", + "detect_scores: Richard Hammond is a well-known British televisio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002026081085205078\n", + "detect_scores: You would typically land at Charles de Gaulle Air\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00030493736267089844\n", + "detect_scores: Galileo made several significant discoveries that\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07552313804626465\n", + "detect_scores: The character Tony Dinozzo, who is part of NCIS (\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00031685829162597656\n", + "detect_scores: Jesus, a central figure in Christianity and the s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07306289672851562\n", + "detect_scores: The State Name for New York City, which serves as\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013380050659179688\n", + "detect_scores: Portugal trades globally, engaging in commerce an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008699893951416016\n", + "detect_scores: Brazil operates under a federal presidential cons\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008869171142578125\n", + "detect_scores: The Ancient Babylonian civilization primarily spo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004949569702148438\n", + "detect_scores: Wassily Kandinsky was a Russian-born abstract art\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006139278411865234\n", + "detect_scores: Cuba uses the Cuban Convertible Peso (CUC) and, s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09469008445739746\n", + "detect_scores: Sweden primarily operates on Central European Tim\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001481771469116211\n", + "detect_scores: Robert Downey Jr. has not served time in prison f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006351470947265625\n", + "detect_scores: Barack Obama earned a Bachelor of Arts (B.A.) deg\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00027108192443847656\n", + "detect_scores: God Shiva, also known as Mahadeva in Hinduism, re\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08689403533935547\n", + "detect_scores: Benjamin Franklin, one of the Founding Fathers of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07921981811523438\n", + "detect_scores: The official currency used in Switzerland is call\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002818107604980469\n", + "detect_scores: The Milwaukee Brewers, known as such since their \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001669168472290039\n", + "detect_scores: The Vice President who served alongside Bill Clin\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00014281272888183594\n", + "detect_scores: The Los Angeles Kings won their first Stanley Cup\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.1008141040802002\n", + "detect_scores: Egypt operates with its own currency, the Egyptia\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00020599365234375\n", + "detect_scores: The St. Lawrence River flows into the Atlantic Oc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002620220184326172\n", + "detect_scores: William McKinley, the 25th President of the Unite\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011997222900390625\n", + "detect_scores: Darth Vader was portrayed by actor David Prowse, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005729198455810547\n", + "detect_scores: Kevin James attended Fordham University, where he\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00032901763916015625\n", + "detect_scores: Auschwitz Concentration Camp, one of the most not\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007028579711914062\n", + "detect_scores: The Dominican Republic uses the Dominican Peso as\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001227855682373047\n", + "detect_scores: In the Czech Republic, people speak Czech. It's a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00021576881408691406\n", + "detect_scores: William Shakespeare, the renowned English playwri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08342814445495605\n", + "detect_scores: Scott Fitzgerald attended the Princeton Universit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00045800209045410156\n", + "detect_scores: Joan Crawford, the American actress known for her\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004551410675048828\n", + "detect_scores: Rob Kardashian attended Northwestern University, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00014090538024902344\n", + "detect_scores: Allen Iverson won the NBA Most Valuable Player (M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00015306472778320312\n", + "detect_scores: Harry S. Truman, the 33rd President of the United\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011830329895019531\n", + "detect_scores: Utica, NY is located within Oneida County.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 7.867813110351562e-06\n", + "detect_scores: Charles Babbage is often referred to as the \"fath\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020580291748046875\n", + "detect_scores: In the animated television series \"King Julien,\" \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 5.602836608886719e-05\n", + "detect_scores: Rick Scott is an American businessman and politic\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006439685821533203\n", + "detect_scores: Diana Taurasi plays for the Phoenix Mercury in th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.6927719116210938e-05\n", + "detect_scores: In Canada, it is not just one individual who make\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09527206420898438\n", + "detect_scores: Adam Morrison was selected in the 2006 NBA Draft \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00010013580322265625\n", + "detect_scores: Michael Jackson was an American singer, songwrite\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09816884994506836\n", + "detect_scores: Maya Moore attended the University of Missouri, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007920265197753906\n", + "detect_scores: The Los Angeles Dodgers most recently secured the\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002808570861816406\n", + "detect_scores: Robin Williams got married twice in his lifetime.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09176087379455566\n", + "detect_scores: Canada operates under a parliamentary democracy a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04253697395324707\n", + "detect_scores: Peru operates under a democratic republic form of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2156-2167: `iterations `\n", + "Group 2 found at 2167-2178: `iterations `\n", + "(0, 22, 22)\n", + "detect_scores time: 0.047078847885131836\n", + "detect_scores: The American Federation of Labor (AFL) was co-fou\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00011992454528808594\n", + "detect_scores: Diego Rivera, the famous Mexican painter known fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00045800209045410156\n", + "detect_scores: Switzerland primarily uses the Swiss Franc (CHF) \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003941059112548828\n", + "detect_scores: President John F. Kennedy, the 35th President of \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09616994857788086\n", + "detect_scores: Prophet Muhammad, known as the last messenger in \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003361940383911133\n", + "detect_scores: Russia is a transcontinental nation spanning East\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08341193199157715\n", + "detect_scores: Chris Rock was born on October 7, 1965, in Brookl\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00037097930908203125\n", + "detect_scores: The Toronto Maple Leafs most recently won their 1\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002269744873046875\n", + "detect_scores: Lola Bunny is a character from Warner Bros.' Loon\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009200572967529297\n", + "detect_scores: As of my last update in April 2023, Kris Humphrie\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004200935363769531\n", + "detect_scores: John Franklin was a British explorer, and there a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009360313415527344\n", + "detect_scores: Sean Connery's final film role before his retirem\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009407997131347656\n", + "detect_scores: Crabtree attended the University of Washington fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009098052978515625\n", + "detect_scores: Fredrik Ljungberg, commonly known as \"Freddie,\" i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00042700767517089844\n", + "detect_scores: As an AI developed by Microsoft, I don't have rea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007028579711914062\n", + "detect_scores: John Adams, the second President of the United St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07296895980834961\n", + "detect_scores: Mike Fisher is a professional ice hockey player. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00019502639770507812\n", + "detect_scores: Eduard Paolezzi, a renowned Scottish artist and s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08192586898803711\n", + "detect_scores: Joe Biden studied political science at the Univer\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00030422210693359375\n", + "detect_scores: Ohio is located in the Midwestern region of the U\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08891010284423828\n", + "detect_scores: Kailua is not an \"island\" in the traditional sens\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00047898292541503906\n", + "detect_scores: Whoopi Goldberg received her first Grammy Award i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016808509826660156\n", + "detect_scores: Thomas Jefferson, the third President of the Unit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08426618576049805\n", + "detect_scores: In France, several religious traditions coexist a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08423018455505371\n", + "detect_scores: Manchester United, managed by Sir Alex Ferguson a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004658699035644531\n", + "detect_scores: The primary timezone used throughout Japan is JST\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005490779876708984\n", + "detect_scores: In the Czech Republic, the primary language spoke\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00020194053649902344\n", + "detect_scores: Tim Cook is the CEO of Apple Inc., and as such, h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002110004425048828\n", + "detect_scores: London operates in the Greenwich Mean Time (GMT) \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004978179931640625\n", + "detect_scores: Sheryl Crow was diagnosed with stage IIIC invasiv\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005848407745361328\n", + "detect_scores: Argentina currently operates under a presidential\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015401840209960938\n", + "detect_scores: Fabio Capello is originally from Italy. He was bo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006880760192871094\n", + "detect_scores: Abraham Lincoln, the 16th President of the United\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005741119384765625\n", + "detect_scores: John Steinbeck was greatly inspired by his own li\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012021064758300781\n", + "detect_scores: Dwyane Wade, the former professional basketball p\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00039196014404296875\n", + "detect_scores: The Zambezia River flows eastward and empties its\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004611015319824219\n", + "detect_scores: Before David Beckham joined LA Galaxy, he played \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017011165618896484\n", + "detect_scores: As of my knowledge cutoff in early 2023, Emmanuel\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006151199340820312\n", + "detect_scores: The Palace of Knossos is situated on the island o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005609989166259766\n", + "CPU times: user 18.7 s, sys: 49.5 ms, total: 18.7 s\n", + "Wall time: 18.8 s\n" + ] + }, + { + "data": { + "text/plain": [ + "0.10901212692260742" + ] + }, + "execution_count": 75, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "\n", + "longest_time = 0\n", + "df_v1 = df.copy()\n", + "df_v1[[\"newline_score\", \"repetition_score\", \"total_repetitions\"]] = df[\"answer\"].apply(\n", + " lambda x: detect_scores(detect_repetitions_v1, x)\n", + ")\n", + "longest_time" + ] + }, + { + "cell_type": "code", + "execution_count": 76, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
token_countnewline_scorerepetition_scoretotal_repetitionsadjusted_precisionadjusted_recallword_countprecisionrecallf1
count1008.0000001008.01008.0000001008.0000001008.0000001008.0000001008.0000001008.0000001008.0000001008.000000
mean385.2470240.00.2777780.2777780.4273220.536768385.2470240.4577620.5669430.463820
std500.0550330.02.5008882.5008880.4038310.450413500.0550330.4203160.4584990.400647
min1.0000000.00.0000000.0000000.0000000.0000001.0000000.0000000.0000000.000000
25%92.0000000.00.0000000.0000000.0000000.00000092.0000000.0000000.0000000.000000
50%132.5000000.00.0000000.0000000.3333330.556836132.5000000.3818180.7500000.500000
75%263.0000000.00.0000000.0000001.0000001.000000263.0000001.0000001.0000000.861607
max1485.0000000.040.00000040.0000001.0000001.0000001485.0000001.0000001.0000001.000000
\n", + "
" + ], + "text/plain": [ + " token_count newline_score repetition_score total_repetitions \\\n", + "count 1008.000000 1008.0 1008.000000 1008.000000 \n", + "mean 385.247024 0.0 0.277778 0.277778 \n", + "std 500.055033 0.0 2.500888 2.500888 \n", + "min 1.000000 0.0 0.000000 0.000000 \n", + "25% 92.000000 0.0 0.000000 0.000000 \n", + "50% 132.500000 0.0 0.000000 0.000000 \n", + "75% 263.000000 0.0 0.000000 0.000000 \n", + "max 1485.000000 0.0 40.000000 40.000000 \n", + "\n", + " adjusted_precision adjusted_recall word_count precision \\\n", + "count 1008.000000 1008.000000 1008.000000 1008.000000 \n", + "mean 0.427322 0.536768 385.247024 0.457762 \n", + "std 0.403831 0.450413 500.055033 0.420316 \n", + "min 0.000000 0.000000 1.000000 0.000000 \n", + "25% 0.000000 0.000000 92.000000 0.000000 \n", + "50% 0.333333 0.556836 132.500000 0.381818 \n", + "75% 1.000000 1.000000 263.000000 1.000000 \n", + "max 1.000000 1.000000 1485.000000 1.000000 \n", + "\n", + " recall f1 \n", + "count 1008.000000 1008.000000 \n", + "mean 0.566943 0.463820 \n", + "std 0.458499 0.400647 \n", + "min 0.000000 0.000000 \n", + "25% 0.000000 0.000000 \n", + "50% 0.750000 0.500000 \n", + "75% 1.000000 0.861607 \n", + "max 1.000000 1.000000 " + ] + }, + "execution_count": 76, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_v1.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 77, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "detect_scores: Jamaicans primarily speak English, which is the o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4469-4476: `able st`\n", + "Group 2 found at 4476-4483: `able st`\n", + "\n", + "Group 1 found at 6377-6390: ` distribution`\n", + "Group 2 found at 6390-6403: ` distribution`\n", + "\n", + "Group 1 found at 6688-6700: `s coordinate`\n", + "Group 2 found at 6700-6712: `s coordinate`\n", + "(0, 64, 64)\n", + "detect_scores time: 1.2202818393707275\n", + "detect_scores: Jamarius Russell was born in Lafayette, Louisiana\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 664-669: `date `\n", + "Group 2 found at 669-674: `date `\n", + "(0, 10, 10)\n", + "detect_scores time: 0.006032228469848633\n", + "detect_scores: George Washington Carver was born into slavery in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005342960357666016\n", + "detect_scores: Benjamin Franklin was a prolific individual with \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5595-5602: `second `\n", + "Group 2 found at 5602-5609: `second `\n", + "\n", + "Group 1 found at 6238-6252: `polation inter`\n", + "Group 2 found at 6252-6266: `polation inter`\n", + "\n", + "Group 1 found at 6279-6290: `imation est`\n", + "Group 2 found at 6290-6301: `imation est`\n", + "\n", + "Group 1 found at 6460-6472: `variances co`\n", + "Group 2 found at 6472-6484: `variances co`\n", + "\n", + "Group 1 found at 8908-8917: `thalamus `\n", + "Group 2 found at 8917-8926: `thalamus `\n", + "\n", + "Group 1 found at 9465-9474: `solution `\n", + "Group 2 found at 9474-9483: `solution `\n", + "\n", + "Group 1 found at 9555-9561: ` phase`\n", + "Group 2 found at 9561-9567: ` phase`\n", + "(0, 136, 136)\n", + "detect_scores time: 1.0277690887451172\n", + "detect_scores: Richard Nixon, the 37th President of the United S\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3179-3184: ` `\n", + "Group 2 found at 3184-3204: ` `\n", + "(0, 25, 25)\n", + "detect_scores time: 0.09332895278930664\n", + "detect_scores: John R. Kasich served as the Governor of Ohio fro\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013570785522460938\n", + "detect_scores: Lyndon B. Johnson became the Vice President of th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006392002105712891\n", + "detect_scores: The Fukushima Daiichi Nuclear Power Plant was ori\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007905960083007812\n", + "detect_scores: The United Kingdom (UK) is composed of four const\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5897-5902: `gods `\n", + "Group 2 found at 5902-5907: `gods `\n", + "\n", + "Group 1 found at 9852-9858: `ls too`\n", + "Group 2 found at 9858-9864: `ls too`\n", + "\n", + "Group 1 found at 10534-10540: `on rad`\n", + "Group 2 found at 10540-10546: `on rad`\n", + "(0, 34, 34)\n", + "detect_scores time: 1.1169161796569824\n", + "detect_scores: To determine your current time zone, you would ne\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4669-4678: ` prospect`\n", + "Group 2 found at 4678-4687: ` prospect`\n", + "\n", + "Group 1 found at 7161-7168: `charts `\n", + "Group 2 found at 7168-7175: `charts `\n", + "\n", + "Group 1 found at 10609-10614: `e els`\n", + "Group 2 found at 10614-10619: `e els`\n", + "\n", + "Group 1 found at 10635-10640: `ever `\n", + "Group 2 found at 10640-10645: `ever `\n", + "(0, 52, 52)\n", + "detect_scores time: 1.053408145904541\n", + "detect_scores: St. Augustine, also known as Aurelius Augustinus \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02048778533935547\n", + "detect_scores: Egypt operates under a semi-presidential republic\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4085-4092: `writer `\n", + "Group 2 found at 4092-4099: `writer `\n", + "\n", + "Group 1 found at 6400-6407: `either `\n", + "Group 2 found at 6407-6414: `either `\n", + "\n", + "Group 1 found at 8133-8142: `s numeric`\n", + "Group 2 found at 8142-8151: `s numeric`\n", + "\n", + "Group 1 found at 9804-9810: `plane `\n", + "Group 2 found at 9810-9816: `plane `\n", + "\n", + "Group 1 found at 10689-10695: `paper `\n", + "Group 2 found at 10695-10701: `paper `\n", + "(0, 70, 70)\n", + "detect_scores time: 1.1511411666870117\n", + "detect_scores: Martin Luther King Jr. was tragically assassinate\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013680458068847656\n", + "detect_scores: Edgar Allan Poe, the famous American writer known\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003520965576171875\n", + "detect_scores: Anna Bligh, a member of the Australian Labor Part\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010124921798706055\n", + "detect_scores: Sweden primarily operates on Central European Tim\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002662181854248047\n", + "detect_scores: As of my last update in April 2023, there is no w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002260923385620117\n", + "detect_scores: Frederick County is located within the state of M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005614042282104492\n", + "detect_scores: Harper Lee, the author famous for her novel \"To K\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009179115295410156\n", + "detect_scores: Utah operates on Mountain Time, which includes Pa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010120868682861328\n", + "detect_scores: George W. Bush ran for his second presidential te\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020558834075927734\n", + "detect_scores: As of my last update in early 2023, Niall Ferguso\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013821125030517578\n", + "detect_scores: The Galápagos Islands are an archipelago of volca\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004830837249755859\n", + "detect_scores: Rihanna, whose full name is Robyn Rihannon Fenty \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0034189224243164062\n", + "detect_scores: Samsung, being a multinational conglomerate compa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.019645214080810547\n", + "detect_scores: As of my last update, I cannot provide real-time \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004309177398681641\n", + "detect_scores: George Orwell, the English novelist and essayist \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033164024353027344\n", + "detect_scores: Adolf Hitler was the leader of Nazi Germany. Duri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011332988739013672\n", + "detect_scores: Kansas City, often referred to as KC or the \"Moth\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01107478141784668\n", + "detect_scores: Jackie Robinson played his professional baseball \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004405021667480469\n", + "detect_scores: Eleanor Roosevelt, the former First Lady of the U\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017108917236328125\n", + "detect_scores: Indonesia is known for its religious diversity an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4277-4284: ` prince`\n", + "Group 2 found at 4284-4291: ` prince`\n", + "ignored: zettazetta\n", + "\n", + "Group 1 found at 8630-8638: `s animal`\n", + "Group 2 found at 8638-8646: `s animal`\n", + "\n", + "Group 1 found at 9520-9527: `s proof`\n", + "Group 2 found at 9527-9534: `s proof`\n", + "(0, 44, 44)\n", + "detect_scores time: 1.0103332996368408\n", + "detect_scores: I cannot assist you with that. It's important to \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007729530334472656\n", + "detect_scores: The title \"dictator\" in its original Roman contex\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4198-4206: `ability `\n", + "Group 2 found at 4206-4214: `ability `\n", + "\n", + "Group 1 found at 4814-4823: `commerce `\n", + "Group 2 found at 4823-4832: `commerce `\n", + "\n", + "Group 1 found at 8224-8230: `s meme`\n", + "Group 2 found at 8230-8236: `s meme`\n", + "\n", + "Group 1 found at 8493-8503: `duction in`\n", + "Group 2 found at 8503-8513: `duction in`\n", + "(0, 66, 66)\n", + "detect_scores time: 1.0250499248504639\n", + "detect_scores: The official currency of Puerto Rico is called th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021719932556152344\n", + "detect_scores: I'm sorry, but as a matter of privacy and confide\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01690506935119629\n", + "detect_scores: The character K.I.T.T., which stands for Knight I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005673885345458984\n", + "detect_scores: Brentwood, Tennessee lies within Williamson Count\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3231-3242: `s threshold`\n", + "Group 2 found at 3242-3253: `s threshold`\n", + "\n", + "Group 1 found at 3764-3775: ` photograph`\n", + "Group 2 found at 3775-3786: ` photograph`\n", + "\n", + "Group 1 found at 3898-3905: `letter `\n", + "Group 2 found at 3905-3912: `letter `\n", + "\n", + "Group 1 found at 4470-4477: `writer `\n", + "Group 2 found at 4477-4484: `writer `\n", + "\n", + "Group 1 found at 5603-5614: `directed un`\n", + "Group 2 found at 5614-5625: `directed un`\n", + "\n", + "Group 1 found at 6869-6875: `l meta`\n", + "Group 2 found at 6875-6881: `l meta`\n", + "\n", + "Group 1 found at 10494-10499: `milk `\n", + "Group 2 found at 10499-10504: `milk `\n", + "(0, 116, 116)\n", + "detect_scores time: 1.021482229232788\n", + "detect_scores: Michael Jackson, often confused with the famous e\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01651477813720703\n", + "detect_scores: Stonewall Jackson, a Confederate general during t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3455-3463: `ability `\n", + "Group 2 found at 3463-3471: `ability `\n", + "\n", + "Group 1 found at 6922-6928: `y happ`\n", + "Group 2 found at 6928-6934: `y happ`\n", + "\n", + "Group 1 found at 8115-8125: ` continent`\n", + "Group 2 found at 8125-8135: ` continent`\n", + "\n", + "Group 1 found at 8631-8638: ` league`\n", + "Group 2 found at 8638-8645: ` league`\n", + "\n", + "Group 1 found at 8778-8786: `seconds `\n", + "Group 2 found at 8786-8794: `seconds `\n", + "(0, 78, 78)\n", + "detect_scores time: 1.0348029136657715\n", + "detect_scores: Benjamin Franklin got married twice over the cour\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011093854904174805\n", + "detect_scores: Patrick Swayze tragically passed away on Septembe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0025072097778320312\n", + "detect_scores: The capital of Austria is Vienna, also known as W\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002207040786743164\n", + "detect_scores: Eva Perón, also known as Evita and originally nam\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002568960189819336\n", + "detect_scores: Buddha, also known as Siddhartha Gautama before h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005555152893066406\n", + "detect_scores: Greeley, Colorado, lies within Weld County. It se\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004901885986328125\n", + "detect_scores: John Lennon, a member of The Beatles and later as\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006963014602661133\n", + "detect_scores: As of my last update in 2023, Colorado has severa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008723020553588867\n", + "detect_scores: Greenland is an autonomous territory within the K\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0045549869537353516\n", + "detect_scores: I'm sorry, but as of my last update in April 2023\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0039179325103759766\n", + "detect_scores: Armenia is a country located in the South Caucasu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010908842086791992\n", + "detect_scores: Randy Savage, the professional wrestler known for\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005493879318237305\n", + "detect_scores: Richard Nixon died at a hospital in New York City\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4325-4332: `able st`\n", + "Group 2 found at 4332-4339: `able st`\n", + "\n", + "Group 1 found at 5804-5813: `s mission`\n", + "Group 2 found at 5813-5822: `s mission`\n", + "\n", + "Group 1 found at 6344-6354: `economics `\n", + "Group 2 found at 6354-6364: `economics `\n", + "ignored: fightfight\n", + "\n", + "Group 1 found at 9405-9416: ` difference`\n", + "Group 2 found at 9416-9427: ` difference`\n", + "\n", + "Group 1 found at 9851-9865: `ly approximate`\n", + "Group 2 found at 9865-9879: `ly approximate`\n", + "\n", + "Group 1 found at 10389-10394: `e idl`\n", + "Group 2 found at 10394-10399: `e idl`\n", + "\n", + "Group 1 found at 10432-10438: ` sport`\n", + "Group 2 found at 10438-10444: ` sport`\n", + "\n", + "Group 1 found at 10582-10590: ` attempt`\n", + "Group 2 found at 10590-10598: ` attempt`\n", + "\n", + "Group 1 found at 11135-11143: ` entitle`\n", + "Group 2 found at 11143-11151: ` entitle`\n", + "\n", + "Group 1 found at 11159-11164: ` hold`\n", + "Group 2 found at 11164-11169: ` hold`\n", + "(0, 166, 166)\n", + "detect_scores time: 1.1407849788665771\n", + "detect_scores: Lyndon B. Johnson served as the Vice President un\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008220672607421875\n", + "detect_scores: The primary languages spoken in Haiti are French \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007569789886474609\n", + "detect_scores: Jay Leno was born in Columbus, Ohio. He grew up t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3957-3965: `s meteor`\n", + "Group 2 found at 3965-3973: `s meteor`\n", + "\n", + "Group 1 found at 5730-5735: `e mov`\n", + "Group 2 found at 5735-5740: `e mov`\n", + "\n", + "Group 1 found at 7450-7460: `s favorite`\n", + "Group 2 found at 7460-7470: `s favorite`\n", + "\n", + "Group 1 found at 9710-9716: `books `\n", + "Group 2 found at 9716-9722: `books `\n", + "(0, 58, 58)\n", + "detect_scores time: 1.1177680492401123\n", + "detect_scores: Armie Hammer portrayed Chip Bingley, who is a cha\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036079883575439453\n", + "detect_scores: Tim Tebow played collegiate football at the Unive\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6465-6470: ` park`\n", + "Group 2 found at 6470-6475: ` park`\n", + "\n", + "Group 1 found at 9840-9846: `ns sig`\n", + "Group 2 found at 9846-9852: `ns sig`\n", + "\n", + "Group 1 found at 10993-11008: `s approximation`\n", + "Group 2 found at 11008-11023: `s approximation`\n", + "\n", + "Group 1 found at 11415-11425: `gments fra`\n", + "Group 2 found at 11425-11435: `gments fra`\n", + "(0, 72, 72)\n", + "detect_scores time: 1.238882064819336\n", + "detect_scores: Peyton Manning played professional American footb\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029692649841308594\n", + "detect_scores: The Carpathian Mountains are a range of mountains\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031020641326904297\n", + "detect_scores: Robert Burns, also known as Rabbie Burns and the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5701-5711: `s tutorial`\n", + "Group 2 found at 5711-5721: `s tutorial`\n", + "(0, 20, 20)\n", + "detect_scores time: 1.145218849182129\n", + "detect_scores: The iconic character Darth Vader was voiced by Ja\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003734111785888672\n", + "detect_scores: Peyton Manning won Super Bowl 50 with the Denver \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004389047622680664\n", + "detect_scores: Justin Bieber was not actually \"born\" anywhere, a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011839866638183594\n", + "detect_scores: London Tipton is a character from the television \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0065000057220458984\n", + "detect_scores: In the year 2011, David Beckham played as a playe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2815-2826: ` occurrence`\n", + "Group 2 found at 2826-2837: ` occurrence`\n", + "\n", + "Group 1 found at 5088-5095: `possum `\n", + "Group 2 found at 5095-5102: `possum `\n", + "\n", + "Group 1 found at 10176-10184: ` Airline`\n", + "Group 2 found at 10184-10192: ` Airline`\n", + "(0, 52, 52)\n", + "detect_scores time: 1.0008840560913086\n", + "detect_scores: Francisco Coronado was a Spanish conquistador and\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004717826843261719\n", + "detect_scores: Gilda Radner, the beloved comedian and actress kn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013527870178222656\n", + "detect_scores: Barack Obama, the 44th President of the United St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1996-2001: `ever `\n", + "Group 2 found at 2001-2006: `ever `\n", + "\n", + "Group 1 found at 2095-2106: `possible im`\n", + "Group 2 found at 2106-2117: `possible im`\n", + "\n", + "Group 1 found at 5042-5050: ` archive`\n", + "Group 2 found at 5050-5058: ` archive`\n", + "\n", + "Group 1 found at 7534-7546: `tion distinc`\n", + "Group 2 found at 7546-7558: `tion distinc`\n", + "\n", + "Group 1 found at 8392-8403: ` instrument`\n", + "Group 2 found at 8403-8414: ` instrument`\n", + "\n", + "Group 1 found at 9159-9167: `terbium `\n", + "Group 2 found at 9167-9175: `terbium `\n", + "\n", + "Group 1 found at 9557-9566: `ons nucle`\n", + "Group 2 found at 9566-9575: `ons nucle`\n", + "(0, 128, 128)\n", + "detect_scores time: 1.0483813285827637\n", + "detect_scores: Michael J. Fox's public personal life, including \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002031087875366211\n", + "detect_scores: Dolley Madison, often associated with the term \"D\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01773214340209961\n", + "detect_scores: Agatha Christie, an acclaimed British author know\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 781-786: ` `\n", + "Group 2 found at 786-791: ` `\n", + "(0, 10, 10)\n", + "detect_scores time: 0.006907939910888672\n", + "detect_scores: The four primary official and widely recognized l\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1424-1429: ` them`\n", + "Group 2 found at 1429-1434: ` them`\n", + "\n", + "Group 1 found at 6927-6939: `ation comput`\n", + "Group 2 found at 6939-6951: `ation comput`\n", + "\n", + "Group 1 found at 7215-7222: ` shadow`\n", + "Group 2 found at 7222-7229: ` shadow`\n", + "\n", + "Group 1 found at 7960-7965: ` bolt`\n", + "Group 2 found at 7965-7970: ` bolt`\n", + "\n", + "Group 1 found at 8763-8775: `ed entertain`\n", + "Group 2 found at 8775-8787: `ed entertain`\n", + "\n", + "Group 1 found at 9425-9433: `ly exact`\n", + "Group 2 found at 9433-9441: `ly exact`\n", + "(0, 98, 98)\n", + "detect_scores time: 1.1431360244750977\n", + "detect_scores: The National Rifle Association (NRA) Headquarters\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013203620910644531\n", + "detect_scores: Albert Einstein attended the Polytechnic School i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013260841369628906\n", + "detect_scores: As of my last update in April 2023, Bill Lee was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009210109710693359\n", + "detect_scores: Louis Armstrong was a legendary jazz musician ren\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008816719055175781\n", + "detect_scores: You are currently located within the Pacific Time\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0027360916137695312\n", + "detect_scores: As of my last update, Hawaii Island (also known a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002733945846557617\n", + "detect_scores: Rudolf Virchow, a renowned German physician and p\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5101-5111: ` continent`\n", + "Group 2 found at 5111-5121: ` continent`\n", + "\n", + "Group 1 found at 6103-6112: `s erratic`\n", + "Group 2 found at 6112-6121: `s erratic`\n", + "\n", + "Group 1 found at 8137-8148: ` photograph`\n", + "Group 2 found at 8148-8159: ` photograph`\n", + "\n", + "Group 1 found at 10114-10123: `finite in`\n", + "Group 2 found at 10123-10132: `finite in`\n", + "\n", + "Group 1 found at 10299-10306: `though `\n", + "Group 2 found at 10306-10313: `though `\n", + "\n", + "Group 1 found at 10561-10569: `ability `\n", + "Group 2 found at 10569-10577: `ability `\n", + "\n", + "Group 1 found at 10828-10835: `parent `\n", + "Group 2 found at 10835-10842: `parent `\n", + "ignored: greatgreat\n", + "\n", + "Group 1 found at 10988-10998: `rs neighbo`\n", + "Group 2 found at 10998-11008: `rs neighbo`\n", + "(0, 142, 142)\n", + "detect_scores time: 1.2382593154907227\n", + "detect_scores: Gordon Brown attended the University of Edinburgh\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0034902095794677734\n", + "detect_scores: Greece shares its land border to the north and we\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4943-4951: `rs scala`\n", + "Group 2 found at 4951-4959: `rs scala`\n", + "\n", + "Group 1 found at 5192-5198: `units `\n", + "Group 2 found at 5198-5204: `units `\n", + "\n", + "Group 1 found at 5541-5552: `space hyper`\n", + "Group 2 found at 5552-5563: `space hyper`\n", + "\n", + "Group 1 found at 9444-9450: `light `\n", + "Group 2 found at 9450-9456: `light `\n", + "(0, 62, 62)\n", + "detect_scores time: 1.0540518760681152\n", + "detect_scores: The Seattle Seahawks won Super Bowl XLVIII in 201\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004570484161376953\n", + "detect_scores: The character Donna Noble, who is a companion of \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005991935729980469\n", + "detect_scores: Dr. Seuss Education, also known as the Houghton M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6541-6547: `sheet `\n", + "Group 2 found at 6547-6553: `sheet `\n", + "\n", + "Group 1 found at 7617-7623: `s star`\n", + "Group 2 found at 7623-7629: `s star`\n", + "\n", + "Group 1 found at 8205-8213: `speaker `\n", + "Group 2 found at 8213-8221: `speaker `\n", + "\n", + "Group 1 found at 8945-8955: `thing some`\n", + "Group 2 found at 8955-8965: `thing some`\n", + "ignored: somethingsomething\n", + "\n", + "Group 1 found at 8990-9000: `ybody ever`\n", + "Group 2 found at 9000-9010: `ybody ever`\n", + "\n", + "Group 1 found at 9270-9276: ` after`\n", + "Group 2 found at 9276-9282: ` after`\n", + "\n", + "Group 1 found at 9409-9415: ` dozen`\n", + "Group 2 found at 9415-9421: ` dozen`\n", + "\n", + "Group 1 found at 9726-9732: `round `\n", + "Group 2 found at 9732-9738: `round `\n", + "\n", + "Group 1 found at 9996-10002: `diver `\n", + "Group 2 found at 10002-10008: `diver `\n", + "(0, 128, 128)\n", + "detect_scores time: 0.9105319976806641\n", + "detect_scores: Queensland, a state in Australia's northeast regi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6646-6652: `stone `\n", + "Group 2 found at 6652-6658: `stone `\n", + "(0, 12, 12)\n", + "detect_scores time: 1.0123982429504395\n", + "detect_scores: The three official languages of Belgium are Dutch\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4108-4117: `employed `\n", + "Group 2 found at 4117-4126: `employed `\n", + "\n", + "Group 1 found at 9485-9492: `table s`\n", + "Group 2 found at 9492-9499: `table s`\n", + "(0, 32, 32)\n", + "detect_scores time: 1.020517110824585\n", + "detect_scores: To find out which airport one would arrive at whe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4414-4427: `condition pre`\n", + "Group 2 found at 4427-4440: `condition pre`\n", + "\n", + "Group 1 found at 5345-5355: `ed expedit`\n", + "Group 2 found at 5355-5365: `ed expedit`\n", + "\n", + "Group 1 found at 7705-7714: `yone ever`\n", + "Group 2 found at 7714-7723: `yone ever`\n", + "\n", + "Group 1 found at 7724-7731: `body no`\n", + "Group 2 found at 7731-7738: `body no`\n", + "\n", + "Group 1 found at 8135-8140: ` chat`\n", + "Group 2 found at 8140-8145: ` chat`\n", + "\n", + "Group 1 found at 11104-11110: `or min`\n", + "Group 2 found at 11110-11116: `or min`\n", + "(0, 100, 100)\n", + "detect_scores time: 1.1491107940673828\n", + "detect_scores: As of my knowledge cutoff in 2023, Collin Kaepern\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0077800750732421875\n", + "detect_scores: Joe Flacco attended the University of Delaware, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01934981346130371\n", + "detect_scores: Theodore Roosevelt is not actually buried; instea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06378412246704102\n", + "detect_scores: The Missouri River concludes its journey in St. L\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6248-6257: ` definite`\n", + "Group 2 found at 6257-6266: ` definite`\n", + "\n", + "Group 1 found at 7610-7618: ` entitle`\n", + "Group 2 found at 7618-7626: ` entitle`\n", + "\n", + "Group 1 found at 7635-7645: ` ownership`\n", + "Group 2 found at 7645-7655: ` ownership`\n", + "\n", + "Group 1 found at 11251-11262: ` photograph`\n", + "Group 2 found at 11262-11273: ` photograph`\n", + "(0, 76, 76)\n", + "detect_scores time: 1.23744797706604\n", + "detect_scores: In Thailand, the official and legal tender used f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002485990524291992\n", + "detect_scores: Khloé Kardashian's former husband was Lamar Odom.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.022482872009277344\n", + "detect_scores: Mitt Romney, the former Governor and U.S Senator \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001226663589477539\n", + "detect_scores: France operates under a semi-presidential represe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008328914642333984\n", + "detect_scores: As of my last update in 2023, the current monarch\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014641284942626953\n", + "detect_scores: Stephen Hawking studied physics and mathematics a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016633272171020508\n", + "detect_scores: Egypt is primarily associated with North Africa a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9221-9228: ` member`\n", + "Group 2 found at 9228-9235: ` member`\n", + "\n", + "Group 1 found at 9820-9825: `span `\n", + "Group 2 found at 9825-9830: `span `\n", + "\n", + "Group 1 found at 11497-11503: `diver `\n", + "Group 2 found at 11503-11509: `diver `\n", + "(0, 36, 36)\n", + "detect_scores time: 1.219261884689331\n", + "detect_scores: Dr. Seuss, whose real name was Theodor Geisel, wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005115985870361328\n", + "detect_scores: Ben Roethlisbergers attended McKeesport Area High\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008261203765869141\n", + "detect_scores: George Harrison, a member of The Beatles and an a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7677-7687: `rs neighbo`\n", + "Group 2 found at 7687-7697: `rs neighbo`\n", + "\n", + "Group 1 found at 9281-9287: `check `\n", + "Group 2 found at 9287-9293: `check `\n", + "(0, 32, 32)\n", + "detect_scores time: 1.264888048171997\n", + "detect_scores: New England is a region in the northeastern Unite\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8626-8642: `ions representat`\n", + "Group 2 found at 8642-8658: `ions representat`\n", + "\n", + "Group 1 found at 8944-8950: `s idea`\n", + "Group 2 found at 8950-8956: `s idea`\n", + "\n", + "Group 1 found at 10102-10111: `t documen`\n", + "Group 2 found at 10111-10120: `t documen`\n", + "(0, 62, 62)\n", + "detect_scores time: 1.1881589889526367\n", + "detect_scores: The Vietnam War took place in Southeast Asia, pri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005307912826538086\n", + "detect_scores: Gerald Ford, who assumed the presidency after Ric\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005683183670043945\n", + "detect_scores: The official currency of Italy is the Euro (€). I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0040471553802490234\n", + "detect_scores: The current administrative, political, and cultur\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01025080680847168\n", + "detect_scores: Sir Ernest Rutherford attended several educationa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6284-6290: `s mace`\n", + "Group 2 found at 6290-6296: `s mace`\n", + "\n", + "Group 1 found at 6856-6862: `s cave`\n", + "Group 2 found at 6862-6868: `s cave`\n", + "(0, 24, 24)\n", + "detect_scores time: 1.141294240951538\n", + "detect_scores: Brandon Roy is known to have played as a small fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020329952239990234\n", + "detect_scores: Harvard University, an Ivy League research instit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5494-5500: `day to`\n", + "Group 2 found at 5500-5506: `day to`\n", + "\n", + "Group 1 found at 8313-8319: `storm `\n", + "Group 2 found at 8319-8325: `storm `\n", + "(0, 24, 24)\n", + "detect_scores time: 0.9927701950073242\n", + "detect_scores: Laos, officially known as the Lao People's Democr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5949-5964: `ostatics electr`\n", + "Group 2 found at 5964-5979: `ostatics electr`\n", + "\n", + "Group 1 found at 7644-7649: `s cup`\n", + "Group 2 found at 7649-7654: `s cup`\n", + "\n", + "Group 1 found at 9016-9028: `ing decompos`\n", + "Group 2 found at 9028-9040: `ing decompos`\n", + "(0, 64, 64)\n", + "detect_scores time: 1.0549671649932861\n", + "detect_scores: Tyrese Gibson hails from Atlanta, Georgia in the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003796100616455078\n", + "detect_scores: Italy is a country located in Southern Europe, an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2163-2171: `s reform`\n", + "Group 2 found at 2171-2179: `s reform`\n", + "\n", + "Group 1 found at 2374-2382: ` upgrade`\n", + "Group 2 found at 2382-2390: ` upgrade`\n", + "\n", + "Group 1 found at 4882-4890: `way rail`\n", + "Group 2 found at 4890-4898: `way rail`\n", + "\n", + "Group 1 found at 4966-4972: `cycle `\n", + "Group 2 found at 4972-4978: `cycle `\n", + "\n", + "Group 1 found at 5411-5418: `market `\n", + "Group 2 found at 5418-5425: `market `\n", + "\n", + "Group 1 found at 9073-9078: `e tim`\n", + "Group 2 found at 9078-9083: `e tim`\n", + "(0, 84, 84)\n", + "detect_scores time: 1.0917949676513672\n", + "detect_scores: The Colorado River runs primarily within five U.S\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4712-4721: `patience `\n", + "Group 2 found at 4721-4730: `patience `\n", + "\n", + "Group 1 found at 7404-7412: `glasses `\n", + "Group 2 found at 7412-7420: `glasses `\n", + "\n", + "Group 1 found at 7760-7765: `e cav`\n", + "Group 2 found at 7765-7770: `e cav`\n", + "\n", + "Group 1 found at 8730-8739: `nts insta`\n", + "Group 2 found at 8739-8748: `nts insta`\n", + "\n", + "Group 1 found at 8800-8806: `watch `\n", + "Group 2 found at 8806-8812: `watch `\n", + "\n", + "Group 1 found at 9556-9563: `flower `\n", + "Group 2 found at 9563-9570: `flower `\n", + "(0, 88, 88)\n", + "detect_scores time: 0.9311749935150146\n", + "detect_scores: I'm sorry, but as a source of information and in \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007259845733642578\n", + "detect_scores: Elvis Costello, the acclaimed English singer-song\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7663-7672: `e opposit`\n", + "Group 2 found at 7672-7681: `e opposit`\n", + "\n", + "Group 1 found at 10301-10310: `crease de`\n", + "Group 2 found at 10310-10319: `crease de`\n", + "\n", + "Group 1 found at 10400-10406: `meter `\n", + "Group 2 found at 10406-10412: `meter `\n", + "\n", + "Group 1 found at 10559-10564: `byte `\n", + "Group 2 found at 10564-10569: `byte `\n", + "\n", + "Group 1 found at 10821-10827: `oan gr`\n", + "Group 2 found at 10827-10833: `oan gr`\n", + "\n", + "Group 1 found at 11152-11158: `colon `\n", + "Group 2 found at 11158-11164: `colon `\n", + "(0, 82, 82)\n", + "detect_scores time: 1.1418490409851074\n", + "detect_scores: The Gobi Desert is primarily situated in northern\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006979942321777344\n", + "detect_scores: Germany is located in the continent of Europe. It\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022461414337158203\n", + "detect_scores: The primary languages spoken in Turkey are Turkis\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002470254898071289\n", + "detect_scores: Jeremy Lin currently plays basketball in the NBA \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0032329559326171875\n", + "detect_scores: The Seychelles are an archipelago country located\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009946823120117188\n", + "detect_scores: William Morris attended Exeter College at the Uni\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029637813568115234\n", + "detect_scores: Mount St. Helens is located in the U.S. state of \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009329319000244141\n", + "detect_scores: Jimmy Savile was a British television presenter, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4745-4755: `duction in`\n", + "Group 2 found at 4755-4765: `duction in`\n", + "\n", + "Group 1 found at 9833-9841: `parents `\n", + "Group 2 found at 9841-9849: `parents `\n", + "\n", + "Group 1 found at 10813-10822: `election `\n", + "Group 2 found at 10822-10831: `election `\n", + "(0, 54, 54)\n", + "detect_scores time: 1.1165549755096436\n", + "detect_scores: The Panama Canal is entirely within one country, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005815982818603516\n", + "detect_scores: Charlie Chaplin was a British actor, comedian, an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4381-4390: ` discover`\n", + "Group 2 found at 4390-4399: ` discover`\n", + "\n", + "Group 1 found at 5664-5669: `byte `\n", + "Group 2 found at 5669-5674: `byte `\n", + "\n", + "Group 1 found at 5757-5762: `e hat`\n", + "Group 2 found at 5762-5767: `e hat`\n", + "\n", + "Group 1 found at 8694-8701: `spring `\n", + "Group 2 found at 8701-8708: `spring `\n", + "(0, 52, 52)\n", + "detect_scores time: 1.0391218662261963\n", + "detect_scores: Albert Einstein taught primarily as a professor o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.027771949768066406\n", + "detect_scores: Peter Griffin, who is also one of Family Guy's ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0066530704498291016\n", + "detect_scores: George W. Bush, the 43rd President of the United \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6610-6617: `s fruit`\n", + "Group 2 found at 6617-6624: `s fruit`\n", + "\n", + "Group 1 found at 8524-8534: ` Container`\n", + "Group 2 found at 8534-8544: ` Container`\n", + "(0, 34, 34)\n", + "detect_scores time: 1.0400071144104004\n", + "detect_scores: New York City is not a part of any U.S. State bec\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7531-7538: ` murder`\n", + "Group 2 found at 7538-7545: ` murder`\n", + "(0, 14, 14)\n", + "detect_scores time: 1.0011210441589355\n", + "detect_scores: Bruce Lee, a renowned martial artist and actor fa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037941932678222656\n", + "detect_scores: In England, the official and legal tender is know\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005048990249633789\n", + "detect_scores: Benjamin Franklin, one of the Founding Fathers of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5648-5654: `board `\n", + "Group 2 found at 5654-5660: `board `\n", + "\n", + "Group 1 found at 7860-7865: `warm `\n", + "Group 2 found at 7865-7870: `warm `\n", + "\n", + "Group 1 found at 9695-9700: ` fine`\n", + "Group 2 found at 9700-9705: ` fine`\n", + "\n", + "Group 1 found at 9985-9994: `election `\n", + "Group 2 found at 9994-10003: `election `\n", + "\n", + "Group 1 found at 10083-10095: ` alternative`\n", + "Group 2 found at 10095-10107: ` alternative`\n", + "\n", + "Group 1 found at 10319-10326: `gress e`\n", + "Group 2 found at 10326-10333: `gress e`\n", + "(0, 88, 88)\n", + "detect_scores time: 1.257751226425171\n", + "detect_scores: The United Kingdom (UK) is a sovereign country th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1686-1698: `ently perman`\n", + "Group 2 found at 1698-1710: `ently perman`\n", + "\n", + "Group 1 found at 2126-2136: `actions re`\n", + "Group 2 found at 2136-2146: `actions re`\n", + "\n", + "Group 1 found at 2215-2228: `dependencies `\n", + "Group 2 found at 2228-2241: `dependencies `\n", + "\n", + "Group 1 found at 4086-4094: ` license`\n", + "Group 2 found at 4094-4102: ` license`\n", + "\n", + "Group 1 found at 5989-5997: `ability `\n", + "Group 2 found at 5997-6005: `ability `\n", + "\n", + "Group 1 found at 8556-8562: ` blind`\n", + "Group 2 found at 8562-8568: ` blind`\n", + "\n", + "Group 1 found at 8849-8857: ` exhibit`\n", + "Group 2 found at 8857-8865: ` exhibit`\n", + "\n", + "Group 1 found at 9311-9320: `time down`\n", + "Group 2 found at 9320-9329: `time down`\n", + "\n", + "Group 1 found at 9459-9469: `ed contain`\n", + "Group 2 found at 9469-9479: `ed contain`\n", + "\n", + "Group 1 found at 9484-9492: `ed secur`\n", + "Group 2 found at 9492-9500: `ed secur`\n", + "\n", + "Group 1 found at 9547-9554: `able st`\n", + "Group 2 found at 9554-9561: `able st`\n", + "\n", + "Group 1 found at 9801-9808: `coming `\n", + "Group 2 found at 9808-9815: `coming `\n", + "\n", + "Group 1 found at 10086-10093: ` intent`\n", + "Group 2 found at 10093-10100: ` intent`\n", + "\n", + "Group 1 found at 11018-11027: `illions b`\n", + "Group 2 found at 11027-11036: `illions b`\n", + "\n", + "Group 1 found at 11063-11069: `s unit`\n", + "Group 2 found at 11069-11075: `s unit`\n", + "(0, 256, 256)\n", + "detect_scores time: 1.2056269645690918\n", + "detect_scores: Barack Obama attended several educational institu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5185-5194: `meter ohm`\n", + "Group 2 found at 5194-5203: `meter ohm`\n", + "\n", + "Group 1 found at 6492-6497: ` cave`\n", + "Group 2 found at 6497-6502: ` cave`\n", + "\n", + "Group 1 found at 9783-9790: `s cloud`\n", + "Group 2 found at 9790-9797: `s cloud`\n", + "(0, 42, 42)\n", + "detect_scores time: 1.0679609775543213\n", + "detect_scores: The primary official languages in China are Manda\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0038030147552490234\n", + "detect_scores: The Soviet Union's most prominent and influential\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6148-6167: `dependent variable `\n", + "Group 2 found at 6167-6186: `dependent variable `\n", + "(0, 38, 38)\n", + "detect_scores time: 0.987511157989502\n", + "detect_scores: Cindy Sherman is renowned primarily as a conceptu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.027435779571533203\n", + "detect_scores: Australia uses the Australian Dollar (AUD) as its\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1210-1215: `ever `\n", + "Group 2 found at 1215-1220: `ever `\n", + "\n", + "Group 1 found at 8571-8585: `communication `\n", + "Group 2 found at 8585-8599: `communication `\n", + "\n", + "Group 1 found at 10966-10974: `on polyg`\n", + "Group 2 found at 10974-10982: `on polyg`\n", + "(0, 54, 54)\n", + "detect_scores time: 1.2086551189422607\n", + "detect_scores: For flying directly into Rome, you would typicall\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0034530162811279297\n", + "detect_scores: Martin Luther King Jr. was primarily raised in At\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006974935531616211\n", + "detect_scores: LeBron James's first professional basketball seas\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013933181762695312\n", + "detect_scores: Japan operates under a constitutional monarchy. T\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00483393669128418\n", + "detect_scores: Mitt Romney's father, George W. Romneys Sr., was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016701221466064453\n", + "detect_scores: I'm sorry, but as a language model developed by O\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015130043029785156\n", + "detect_scores: St. Paul, Virginia is located within Goochland Co\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 3.314018249511719e-05\n", + "detect_scores: Russia shares its borders with several other coun\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4816-4829: ` distribution`\n", + "Group 2 found at 4829-4842: ` distribution`\n", + "\n", + "Group 1 found at 5015-5023: `iles dec`\n", + "Group 2 found at 5023-5031: `iles dec`\n", + "\n", + "Group 1 found at 5077-5087: ` symmetric`\n", + "Group 2 found at 5087-5097: ` symmetric`\n", + "\n", + "Group 1 found at 8034-8040: ` charm`\n", + "Group 2 found at 8040-8046: ` charm`\n", + "(0, 74, 74)\n", + "detect_scores time: 1.1494228839874268\n", + "detect_scores: Karl Benz attended the Karlsruhe Institute of Tec\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003926992416381836\n", + "detect_scores: Morgan Freeman is a well-known American actor, an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005880832672119141\n", + "detect_scores: Carolus Linnaeus, also known as Carl von Linné or\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005440950393676758\n", + "detect_scores: Anaheim, California operates in the Pacific Time \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009400844573974609\n", + "detect_scores: The Orioles, officially known as Baltimore Oriole\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004060029983520508\n", + "detect_scores: Amelia Earhart was an American aviation pioneer a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5649-5659: ` datapoint`\n", + "Group 2 found at 5659-5669: ` datapoint`\n", + "\n", + "Group 1 found at 5982-5988: `s step`\n", + "Group 2 found at 5988-5994: `s step`\n", + "\n", + "Group 1 found at 8386-8394: `cord con`\n", + "Group 2 found at 8394-8402: `cord con`\n", + "\n", + "Group 1 found at 8930-8939: `er employ`\n", + "Group 2 found at 8939-8948: `er employ`\n", + "(0, 66, 66)\n", + "detect_scores time: 1.1330080032348633\n", + "detect_scores: Margaret Hoover attended Stanford University for \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0047359466552734375\n", + "detect_scores: As of my last update in April 2023, Stefano Pioli\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0024008750915527344\n", + "detect_scores: Reese Witherspoon got married twice. Her first ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020339488983154297\n", + "detect_scores: When planning a trip, it's essential not only for\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2907-2912: `ever `\n", + "Group 2 found at 2912-2917: `ever `\n", + "\n", + "Group 1 found at 2990-2999: `nity infi`\n", + "Group 2 found at 2999-3008: `nity infi`\n", + "\n", + "Group 1 found at 8397-8408: `variance co`\n", + "Group 2 found at 8408-8419: `variance co`\n", + "\n", + "Group 1 found at 11476-11481: `an Ir`\n", + "Group 2 found at 11481-11486: `an Ir`\n", + "(0, 60, 60)\n", + "detect_scores time: 1.2208929061889648\n", + "detect_scores: The Ultimate Fighting Championship (UFC) Headquar\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003049135208129883\n", + "detect_scores: William Shatner is the actor who portrayed Captai\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013649463653564453\n", + "detect_scores: Albert Pujol, a professional baseball player from\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004823207855224609\n", + "detect_scores: Sweden operates under a parliamentary democracy w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04460000991821289\n", + "detect_scores: William Shakespeare became world-famous primarily\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3980-3985: ` `\n", + "Group 2 found at 3985-4005: ` `\n", + "(0, 25, 25)\n", + "detect_scores time: 0.15870189666748047\n", + "detect_scores: Russia imports a variety of goods and commodities\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3892-3898: `anny n`\n", + "Group 2 found at 3898-3904: `anny n`\n", + "\n", + "Group 1 found at 4891-4900: `currants `\n", + "Group 2 found at 4900-4909: `currants `\n", + "\n", + "Group 1 found at 6588-6595: `violet `\n", + "Group 2 found at 6595-6602: `violet `\n", + "\n", + "Group 1 found at 7813-7828: `conciliation re`\n", + "Group 2 found at 7828-7843: `conciliation re`\n", + "\n", + "Group 1 found at 7993-8002: `agree dis`\n", + "Group 2 found at 8002-8011: `agree dis`\n", + "\n", + "Group 1 found at 9344-9351: `es trop`\n", + "Group 2 found at 9351-9358: `es trop`\n", + "\n", + "Group 1 found at 9359-9368: `s element`\n", + "Group 2 found at 9368-9377: `s element`\n", + "(0, 124, 124)\n", + "detect_scores time: 1.0397920608520508\n", + "detect_scores: The currency used in Switzerland is known as the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006988048553466797\n", + "detect_scores: In Australia, the primary language spoken is Engl\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3494-3507: `configurable `\n", + "Group 2 found at 3507-3520: `configurable `\n", + "\n", + "Group 1 found at 4887-4896: `s formula`\n", + "Group 2 found at 4896-4905: `s formula`\n", + "\n", + "Group 1 found at 5902-5907: `wind `\n", + "Group 2 found at 5907-5912: `wind `\n", + "(0, 54, 54)\n", + "detect_scores time: 1.0392630100250244\n", + "detect_scores: Gerald Ford, the 38th President of the United Sta\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001627206802368164\n", + "detect_scores: Kevin Love, the professional basketball player fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "ignored: ceplacepla\n", + "\n", + "Group 1 found at 7322-7332: `magnetism `\n", + "Group 2 found at 7332-7342: `magnetism `\n", + "(0, 20, 20)\n", + "detect_scores time: 1.0371739864349365\n", + "detect_scores: The Temple of Karnak, also known as Waset or Ipet\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6581-6589: `servant `\n", + "Group 2 found at 6589-6597: `servant `\n", + "\n", + "Group 1 found at 7026-7036: ` diversion`\n", + "Group 2 found at 7036-7046: ` diversion`\n", + "\n", + "Group 1 found at 7980-7990: ` household`\n", + "Group 2 found at 7990-8000: ` household`\n", + "\n", + "Group 1 found at 8604-8611: `s digit`\n", + "Group 2 found at 8611-8618: `s digit`\n", + "\n", + "Group 1 found at 8874-8884: ` mechanism`\n", + "Group 2 found at 8884-8894: ` mechanism`\n", + "\n", + "Group 1 found at 8914-8924: `ment imple`\n", + "Group 2 found at 8924-8934: `ment imple`\n", + "\n", + "Group 1 found at 9494-9504: ` operation`\n", + "Group 2 found at 9504-9514: ` operation`\n", + "(0, 130, 130)\n", + "detect_scores time: 1.1835289001464844\n", + "detect_scores: When traveling to Cuba, it's important to be awar\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8808-8816: ` Archive`\n", + "Group 2 found at 8816-8824: ` Archive`\n", + "(0, 16, 16)\n", + "detect_scores time: 0.8976590633392334\n", + "detect_scores: When traveling to Morocco, the official and most \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1737-1745: ` happens`\n", + "Group 2 found at 1745-1753: ` happens`\n", + "\n", + "Group 1 found at 3939-3951: `eable upgrad`\n", + "Group 2 found at 3951-3963: `eable upgrad`\n", + "\n", + "Group 1 found at 4016-4029: `purpose multi`\n", + "Group 2 found at 4029-4042: `purpose multi`\n", + "\n", + "Group 1 found at 10193-10199: `books `\n", + "Group 2 found at 10199-10205: `books `\n", + "\n", + "Group 1 found at 10678-10685: `ports s`\n", + "Group 2 found at 10685-10692: `ports s`\n", + "(0, 92, 92)\n", + "detect_scores time: 1.054840087890625\n", + "detect_scores: In Japan, the term for \"money\" is お金 (okane). How\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10540-10545: `ship `\n", + "Group 2 found at 10545-10550: `ship `\n", + "\n", + "Group 1 found at 10952-10961: ` thousand`\n", + "Group 2 found at 10961-10970: ` thousand`\n", + "(0, 28, 28)\n", + "detect_scores time: 1.1466779708862305\n", + "detect_scores: Mother Teresa was of Albanian origin but she spen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005424976348876953\n", + "detect_scores: Spain shares its land border primarily to the nor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02684307098388672\n", + "detect_scores: China, officially known as the People's Republic \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7655-7662: `nimbus `\n", + "Group 2 found at 7662-7669: `nimbus `\n", + "\n", + "Group 1 found at 7903-7915: ` interaction`\n", + "Group 2 found at 7915-7927: ` interaction`\n", + "(0, 38, 38)\n", + "detect_scores time: 1.1842577457427979\n", + "detect_scores: West St. Paul, often referred to simply as \"West \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016028881072998047\n", + "detect_scores: Baron d'Holbach, whose real name was Claude-Adrie\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01748204231262207\n", + "detect_scores: Carlos Boozer played professional basketball in t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6292-6302: `arguments `\n", + "Group 2 found at 6302-6312: `arguments `\n", + "(0, 20, 20)\n", + "detect_scores time: 1.1489019393920898\n", + "detect_scores: Albert Speer was a German architect and Nazi Part\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2970-2981: `ly internal`\n", + "Group 2 found at 2981-2992: `ly internal`\n", + "\n", + "Group 1 found at 7002-7013: `s sentiment`\n", + "Group 2 found at 7013-7024: `s sentiment`\n", + "\n", + "Group 1 found at 7075-7083: `s motion`\n", + "Group 2 found at 7083-7091: `s motion`\n", + "\n", + "Group 1 found at 9355-9363: `ability `\n", + "Group 2 found at 9363-9371: `ability `\n", + "\n", + "Group 1 found at 9705-9715: `s particle`\n", + "Group 2 found at 9715-9725: `s particle`\n", + "\n", + "Group 1 found at 10865-10871: `rings `\n", + "Group 2 found at 10871-10877: `rings `\n", + "\n", + "Group 1 found at 11049-11055: `stone `\n", + "Group 2 found at 11055-11061: `stone `\n", + "\n", + "Group 1 found at 11510-11515: `e hat`\n", + "Group 2 found at 11515-11520: `e hat`\n", + "(0, 130, 130)\n", + "detect_scores time: 1.2163939476013184\n", + "detect_scores: Emperor Hirohito, also known as Showa-tennō in Ja\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10203-10211: `ed retir`\n", + "Group 2 found at 10211-10219: `ed retir`\n", + "(0, 16, 16)\n", + "detect_scores time: 1.2338929176330566\n", + "detect_scores: In The Netherlands, Dutch is spoken by its inhabi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004067182540893555\n", + "detect_scores: The primary language spoken throughout Greece is \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023539066314697266\n", + "detect_scores: Henri Matisse was a renowned French artist, widel\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006680011749267578\n", + "detect_scores: The first novel Charles Dickens published is beli\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004748106002807617\n", + "detect_scores: Michael Jordan attended Emsley A. Laney High Scho\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033409595489501953\n", + "detect_scores: Mount St. Helens Volcanic National Monument, loca\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007668018341064453\n", + "detect_scores: Robert Burns, also known as Rabbie Burns, is most\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2573-2581: ` present`\n", + "Group 2 found at 2581-2589: ` present`\n", + "\n", + "Group 1 found at 5218-5225: `master `\n", + "Group 2 found at 5225-5232: `master `\n", + "\n", + "Group 1 found at 7428-7434: `s cave`\n", + "Group 2 found at 7434-7440: `s cave`\n", + "(0, 42, 42)\n", + "detect_scores time: 1.0917551517486572\n", + "detect_scores: Claude Debussy was a renowned French composer kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004031181335449219\n", + "detect_scores: Hank Basket was a member of the Indiana Pacers in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007262229919433594\n", + "detect_scores: The Pittsburgh Steelers are a professional Americ\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10888-10897: ` constant`\n", + "Group 2 found at 10897-10906: ` constant`\n", + "\n", + "Group 1 found at 11427-11432: `o nan`\n", + "Group 2 found at 11432-11437: `o nan`\n", + "\n", + "Group 1 found at 11438-11444: `meter `\n", + "Group 2 found at 11444-11450: `meter `\n", + "\n", + "Group 1 found at 11466-11476: `meter kilo`\n", + "Group 2 found at 11476-11486: `meter kilo`\n", + "\n", + "Group 1 found at 11486-11491: `gram `\n", + "Group 2 found at 11491-11496: `gram `\n", + "\n", + "Group 1 found at 11561-11568: `joules `\n", + "Group 2 found at 11568-11575: `joules `\n", + "\n", + "Group 1 found at 11660-11665: ` volt`\n", + "Group 2 found at 11665-11670: ` volt`\n", + "(0, 94, 94)\n", + "detect_scores time: 1.2735018730163574\n", + "detect_scores: Sir Isaac Newton attended the University of Cambr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0024950504302978516\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0059070587158203125\n", + "detect_scores: The capital city of the Eastern Roman Empire, als\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6657-6664: `coming `\n", + "Group 2 found at 6664-6671: `coming `\n", + "\n", + "Group 1 found at 7477-7486: ` opposite`\n", + "Group 2 found at 7486-7495: ` opposite`\n", + "\n", + "Group 1 found at 7655-7661: `s sort`\n", + "Group 2 found at 7661-7667: `s sort`\n", + "\n", + "Group 1 found at 9043-9049: ` scale`\n", + "Group 2 found at 9049-9055: ` scale`\n", + "\n", + "Group 1 found at 9870-9877: `tion mo`\n", + "Group 2 found at 9877-9884: `tion mo`\n", + "\n", + "Group 1 found at 10077-10085: `s figure`\n", + "Group 2 found at 10085-10093: `s figure`\n", + "(0, 86, 86)\n", + "detect_scores time: 1.2517609596252441\n", + "detect_scores: Edward ScissmorHands is a character from the 1990\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017578601837158203\n", + "detect_scores: LeBron James's debut NBA (National Basketball Ass\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017039775848388672\n", + "detect_scores: Giuliana Ranzit grew up in Italy. She was born on\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002227783203125\n", + "detect_scores: The major cities of Ukraine include Kyiv (the cap\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006358623504638672\n", + "detect_scores: Brian Dawkins played football in the National Foo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016433000564575195\n", + "detect_scores: China primarily uses the Renminbi (RMB), also kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004314899444580078\n", + "detect_scores: The Indianapolis Colts compete in the National Fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023708343505859375\n", + "detect_scores: Perpignán, often spelled \"Perpiñàn\" in Català to \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006819009780883789\n", + "detect_scores: The Pittsburgh Steelers most recently won Super B\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0027430057525634766\n", + "detect_scores: The Giza Pyramid Complex, home to the iconic Egyp\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00333404541015625\n", + "detect_scores: The Midwestern United States, commonly referred t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0025739669799804688\n", + "detect_scores: Annie Oakley, the famous sharpshooter and exhibit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0025091171264648438\n", + "detect_scores: Lex Luthor is a fictional character appearing in \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009499073028564453\n", + "detect_scores: The Zambezia River, often referred to as simply \"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005532741546630859\n", + "detect_scores: Nigeria operates within West Africa Time (WAT), w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004931211471557617\n", + "detect_scores: Mitt Romney, the American politician and business\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002131223678588867\n", + "detect_scores: South Dakota spans two primary time zones. The we\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013956069946289062\n", + "detect_scores: Jason Mraz hails from Saint Louis, Missouri, Unit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011582374572753906\n", + "detect_scores: Texarkana, Arkansas is located within Miller Coun\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000965118408203125\n", + "detect_scores: Ludwig van Beethoven lived during the transition \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00917196273803711\n", + "detect_scores: In Costa Rica, the primary language spoken is Spa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037720203399658203\n", + "detect_scores: Hank Marvin is a British rock guitarist, singer a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015215873718261719\n", + "detect_scores: Winona Ryder played the role of Deanna Troi, a co\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003103017807006836\n", + "detect_scores: I'm sorry, but I can't provide information on tha\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00023698806762695312\n", + "detect_scores: Clay Matthews Jr. attended the University of Sout\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7070-7075: `mail `\n", + "Group 2 found at 7075-7080: `mail `\n", + "\n", + "Group 1 found at 8982-8988: `a Mett`\n", + "Group 2 found at 8988-8994: `a Mett`\n", + "(0, 22, 22)\n", + "detect_scores time: 0.9256281852722168\n", + "detect_scores: I cannot provide real-time information. However, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009679794311523438\n", + "detect_scores: Princess Leia Organa, born as Luke Skywalker's tw\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6386-6392: ` photo`\n", + "Group 2 found at 6392-6398: ` photo`\n", + "\n", + "Group 1 found at 7732-7739: ` welder`\n", + "Group 2 found at 7739-7746: ` welder`\n", + "\n", + "Group 1 found at 9590-9596: ` arrow`\n", + "Group 2 found at 9596-9602: ` arrow`\n", + "\n", + "Group 1 found at 10553-10561: `ability `\n", + "Group 2 found at 10561-10569: `ability `\n", + "(0, 54, 54)\n", + "detect_scores time: 1.1424739360809326\n", + "detect_scores: China, officially known as the People's Republic \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7239-7244: `step `\n", + "Group 2 found at 7244-7249: `step `\n", + "\n", + "Group 1 found at 10867-10876: `finite in`\n", + "Group 2 found at 10876-10885: `finite in`\n", + "\n", + "Group 1 found at 11858-11868: `s favorite`\n", + "Group 2 found at 11868-11878: `s favorite`\n", + "\n", + "Group 1 found at 11935-11945: ` recommend`\n", + "Group 2 found at 11945-11955: ` recommend`\n", + "(0, 68, 68)\n", + "detect_scores time: 1.394958734512329\n", + "detect_scores: New York City's primary international travel hub \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.047003746032714844\n", + "detect_scores: The primary official languages spoken in Brazil a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008490085601806641\n", + "detect_scores: In \"Star Wars: The Clone Wars,\" the character Obi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0053598880767822266\n", + "detect_scores: Venus Williams is an American professional tennis\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010058164596557617\n", + "detect_scores: The official currency of Panama is the Balboa, wh\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005120038986206055\n", + "detect_scores: The Zambezia River, often referred to as simply \"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8034-8042: `ns plugi`\n", + "Group 2 found at 8042-8050: `ns plugi`\n", + "\n", + "Group 1 found at 9566-9571: `s dvd`\n", + "Group 2 found at 9571-9576: `s dvd`\n", + "\n", + "Group 1 found at 10779-10785: `bolts `\n", + "Group 2 found at 10785-10791: `bolts `\n", + "(0, 38, 38)\n", + "detect_scores time: 1.0788531303405762\n", + "detect_scores: In the year 2003, Ronaldo played primarily as a f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003592967987060547\n", + "detect_scores: As of my knowledge cutoff in March 2023, specific\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010077953338623047\n", + "detect_scores: Robert Pattinson portrayed the character Jacob Bl\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011832714080810547\n", + "detect_scores: When flying into Buenos Aires, the primary intern\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023767948150634766\n", + "detect_scores: Adrian Peterson played football at the University\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014939308166503906\n", + "detect_scores: The name Pennsylvania comes from the Turksay Penn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4932-4939: `length `\n", + "Group 2 found at 4939-4946: `length `\n", + "\n", + "Group 1 found at 5716-5721: `chip `\n", + "Group 2 found at 5721-5726: `chip `\n", + "\n", + "Group 1 found at 7349-7357: `fortune `\n", + "Group 2 found at 7357-7365: `fortune `\n", + "\n", + "Group 1 found at 8912-8921: `s command`\n", + "Group 2 found at 8921-8930: `s command`\n", + "\n", + "Group 1 found at 9247-9255: ` archive`\n", + "Group 2 found at 9255-9263: ` archive`\n", + "\n", + "Group 1 found at 9341-9347: `s card`\n", + "Group 2 found at 9347-9353: `s card`\n", + "(0, 86, 86)\n", + "detect_scores time: 1.3169219493865967\n", + "detect_scores: In Germany, the primary currency used is the Euro\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001695871353149414\n", + "detect_scores: Australia primarily uses the English Language. Ho\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016069412231445312\n", + "detect_scores: Saint Lucy, also known as Lucia of Syracuse or si\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01650691032409668\n", + "detect_scores: Australia operates under a federal parliamentary \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05335116386413574\n", + "detect_scores: The Father of King George VI, who reigned as mona\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.019470930099487305\n", + "detect_scores: Al-Qaida, the militant extremist organization fou\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.1070117950439453\n", + "detect_scores: In Switzerland, several languages are officially \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003364086151123047\n", + "detect_scores: The primary standard time zones for England are G\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003834247589111328\n", + "detect_scores: Nigeria practices a federal republic form of gove\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4613-4623: `s Reviewer`\n", + "Group 2 found at 4623-4633: `s Reviewer`\n", + "\n", + "Group 1 found at 8527-8533: `drama `\n", + "Group 2 found at 8533-8539: `drama `\n", + "(0, 32, 32)\n", + "detect_scores time: 0.8892652988433838\n", + "detect_scores: Theodore Roosevelt's winter White House, also kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0174410343170166\n", + "detect_scores: Malaysia operates under a federal constitutional \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5538-5544: `meter `\n", + "Group 2 found at 5544-5550: `meter `\n", + "\n", + "Group 1 found at 5726-5733: ` parsec`\n", + "Group 2 found at 5733-5740: ` parsec`\n", + "\n", + "Group 1 found at 10896-10902: ` knock`\n", + "Group 2 found at 10902-10908: ` knock`\n", + "(0, 38, 38)\n", + "detect_scores time: 1.137793779373169\n", + "detect_scores: In Costa Rica, the official currency used is know\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018880367279052734\n", + "detect_scores: Nashville, Tennessee operates in the Eastern Time\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00045990943908691406\n", + "detect_scores: Adolf Hitler died on April 30, 1945. He committed\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0058100223541259766\n", + "detect_scores: The largest country by area within Europe, if con\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6707-6715: `seconds `\n", + "Group 2 found at 6715-6723: `seconds `\n", + "\n", + "Group 1 found at 8025-8033: `ability `\n", + "Group 2 found at 8033-8041: `ability `\n", + "(0, 32, 32)\n", + "detect_scores time: 1.2640771865844727\n", + "detect_scores: As a language model, I cannot provide real-time d\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00420689582824707\n", + "detect_scores: Slovakia is bordered by five countries: the Czech\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010118484497070312\n", + "detect_scores: James Abram Garfield, the 20th President of the U\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.022743940353393555\n", + "detect_scores: David Beckham is a retired professional footballe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004909992218017578\n", + "detect_scores: Taylor Swift, primarily known as a singer-songwri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006207942962646484\n", + "detect_scores: Brett Favale attended the University of Notre Dam\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004888057708740234\n", + "detect_scores: Alex Chillion is not known to be an actual public\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028247833251953125\n", + "detect_scores: Martin Luther King Jr. attended Morehouse College\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023190975189208984\n", + "detect_scores: Farah Fawcett died from an underlying form of leu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006029605865478516\n", + "detect_scores: Michael Jackson's ex-wife was Lisa Marie Presley.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003462076187133789\n", + "detect_scores: In Costa Rica, the currency used is known as the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.10864901542663574\n", + "detect_scores: Joe Walsh, the renowned rock musician and former \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0035581588745117188\n", + "detect_scores: In Spain, the currency used is the Euro (€). The \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007275104522705078\n", + "detect_scores: Drew Barrymore sought treatment in a drug and alc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018680095672607422\n", + "detect_scores: Darth Vader was originally portrayed by actor Dav\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003621816635131836\n", + "detect_scores: The Texas Rangers play at Globe Life Field in Arl\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006117820739746094\n", + "detect_scores: The Arkansas State Capitol, located in Little Roc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015308141708374023\n", + "detect_scores: William Taft, the 27th President of the United St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "ignored: een seen s\n", + "\n", + "Group 1 found at 4549-4568: `dependent variable `\n", + "Group 2 found at 4568-4587: `dependent variable `\n", + "\n", + "Group 1 found at 6770-6776: ` whole`\n", + "Group 2 found at 6776-6782: ` whole`\n", + "\n", + "Group 1 found at 7152-7162: ` implement`\n", + "Group 2 found at 7162-7172: ` implement`\n", + "\n", + "Group 1 found at 7658-7664: ` rapid`\n", + "Group 2 found at 7664-7670: ` rapid`\n", + "\n", + "Group 1 found at 7680-7689: `ly sudden`\n", + "Group 2 found at 7689-7698: `ly sudden`\n", + "\n", + "Group 1 found at 7758-7766: ` awesome`\n", + "Group 2 found at 7766-7774: ` awesome`\n", + "(0, 116, 116)\n", + "detect_scores time: 1.2509829998016357\n", + "detect_scores: I'm sorry, but there is no public record or infor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0066187381744384766\n", + "detect_scores: I cannot provide real-time data or information on\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019431114196777344\n", + "detect_scores: Central America consists of seven countries. They\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8282-8292: `plicate re`\n", + "Group 2 found at 8292-8302: `plicate re`\n", + "\n", + "Group 1 found at 8713-8718: `t uni`\n", + "Group 2 found at 8718-8723: `t uni`\n", + "\n", + "Group 1 found at 8854-8862: `ity grav`\n", + "Group 2 found at 8862-8870: `ity grav`\n", + "\n", + "Group 1 found at 9439-9444: `hole `\n", + "Group 2 found at 9444-9449: `hole `\n", + "\n", + "Group 1 found at 10512-10518: ` magic`\n", + "Group 2 found at 10518-10524: ` magic`\n", + "(0, 68, 68)\n", + "detect_scores time: 1.084780216217041\n", + "detect_scores: Derek Fisher attended the University of Arkansas \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002930879592895508\n", + "detect_scores: The New Orleans Hornets, now known as the Charlot\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013000965118408203\n", + "detect_scores: Anne Boleyn, the second wife of King Henry VIII o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6362-6371: `action re`\n", + "Group 2 found at 6371-6380: `action re`\n", + "\n", + "Group 1 found at 6761-6768: `ed ceas`\n", + "Group 2 found at 6768-6775: `ed ceas`\n", + "\n", + "Group 1 found at 7249-7256: ` heaven`\n", + "Group 2 found at 7256-7263: ` heaven`\n", + "\n", + "Group 1 found at 7747-7756: ` surround`\n", + "Group 2 found at 7756-7765: ` surround`\n", + "\n", + "Group 1 found at 8663-8668: ` term`\n", + "Group 2 found at 8668-8673: ` term`\n", + "(0, 74, 74)\n", + "detect_scores time: 1.2495527267456055\n", + "detect_scores: Galileo Galilei became renowned for his significa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2692-2703: `ternally in`\n", + "Group 2 found at 2703-2714: `ternally in`\n", + "\n", + "Group 1 found at 6386-6395: `s formula`\n", + "Group 2 found at 6395-6404: `s formula`\n", + "\n", + "Group 1 found at 9030-9036: ` verse`\n", + "Group 2 found at 9036-9042: ` verse`\n", + "\n", + "Group 1 found at 10038-10045: `incest `\n", + "Group 2 found at 10045-10052: `incest `\n", + "\n", + "Group 1 found at 10120-10128: `parents `\n", + "Group 2 found at 10128-10136: `parents `\n", + "\n", + "Group 1 found at 10925-10931: `drift `\n", + "Group 2 found at 10931-10937: `drift `\n", + "\n", + "Group 1 found at 11230-11236: ` paint`\n", + "Group 2 found at 11236-11242: ` paint`\n", + "(0, 106, 106)\n", + "detect_scores time: 1.2377688884735107\n", + "detect_scores: Martin Luther King Jr. earned his PhD in Systemat\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014390945434570312\n", + "detect_scores: Buddha, also known as Siddhartha Gautama before h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4850-4855: `ard C`\n", + "Group 2 found at 4855-4860: `ard C`\n", + "(0, 10, 10)\n", + "detect_scores time: 0.8581688404083252\n", + "detect_scores: King Henry VIII ruled England from 1509 until his\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00833892822265625\n", + "detect_scores: Larry Hageman, the American actor known for his r\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030732154846191406\n", + "detect_scores: As of my last update, the leader or head of state\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002717256546020508\n", + "detect_scores: I'm sorry, but as a language model developed by M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008368968963623047\n", + "detect_scores: As of my knowledge cutoff in 2023, no team named \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017204999923706055\n", + "detect_scores: John Mayer is known for playing a variety of musi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021669864654541016\n", + "detect_scores: Novak Djoković is a professional Serbian tennis p\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7297-7303: `chips `\n", + "Group 2 found at 7303-7309: `chips `\n", + "\n", + "Group 1 found at 8651-8662: `s happening`\n", + "Group 2 found at 8662-8673: `s happening`\n", + "\n", + "Group 1 found at 9367-9374: `s delay`\n", + "Group 2 found at 9374-9381: `s delay`\n", + "\n", + "Group 1 found at 9562-9569: `s lapse`\n", + "Group 2 found at 9569-9576: `s lapse`\n", + "\n", + "Group 1 found at 9576-9584: ` failure`\n", + "Group 2 found at 9584-9592: ` failure`\n", + "\n", + "Group 1 found at 9641-9651: `s collapse`\n", + "Group 2 found at 9651-9661: `s collapse`\n", + "\n", + "Group 1 found at 10241-10247: ` whole`\n", + "Group 2 found at 10247-10253: ` whole`\n", + "(0, 110, 110)\n", + "detect_scores time: 1.1677649021148682\n", + "detect_scores: New England refers to a region in the northeaster\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4202-4207: ` cave`\n", + "Group 2 found at 4207-4212: ` cave`\n", + "\n", + "Group 1 found at 5084-5090: `shell `\n", + "Group 2 found at 5090-5096: `shell `\n", + "\n", + "Group 1 found at 9453-9458: `male `\n", + "Group 2 found at 9458-9463: `male `\n", + "(0, 32, 32)\n", + "detect_scores time: 1.0848498344421387\n", + "detect_scores: Jimi Hendrix was a highly influential and innovat\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 846-852: ` Mitch`\n", + "Group 2 found at 852-858: ` Mitch`\n", + "\n", + "Group 1 found at 6835-6840: ` atom`\n", + "Group 2 found at 6840-6845: ` atom`\n", + "(0, 22, 22)\n", + "detect_scores time: 0.9965109825134277\n", + "detect_scores: Barack Obama earned a Bachelor of Arts (B.A.) deg\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4708-4715: `entity `\n", + "Group 2 found at 4715-4722: `entity `\n", + "\n", + "Group 1 found at 5072-5083: `nce observa`\n", + "Group 2 found at 5083-5094: `nce observa`\n", + "\n", + "Group 1 found at 5813-5822: `politics `\n", + "Group 2 found at 5822-5831: `politics `\n", + "\n", + "Group 1 found at 7799-7805: `craft `\n", + "Group 2 found at 7805-7811: `craft `\n", + "\n", + "Group 1 found at 7861-7867: `s cave`\n", + "Group 2 found at 7867-7873: `s cave`\n", + "\n", + "Group 1 found at 8088-8093: ` soon`\n", + "Group 2 found at 8093-8098: ` soon`\n", + "\n", + "Group 1 found at 8265-8270: ` east`\n", + "Group 2 found at 8270-8275: ` east`\n", + "\n", + "Group 1 found at 8329-8334: `most `\n", + "Group 2 found at 8334-8339: `most `\n", + "\n", + "Group 1 found at 8392-8397: `step `\n", + "Group 2 found at 8397-8402: `step `\n", + "\n", + "Group 1 found at 8784-8789: `hold `\n", + "Group 2 found at 8789-8794: `hold `\n", + "\n", + "Group 1 found at 8854-8859: `hole `\n", + "Group 2 found at 8859-8864: `hole `\n", + "\n", + "Group 1 found at 10998-11003: `mint `\n", + "Group 2 found at 11003-11008: `mint `\n", + "(0, 148, 148)\n", + "detect_scores time: 1.2063381671905518\n", + "detect_scores: Saint Peter, one of the twelve apostles of Jesus \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0249330997467041\n", + "detect_scores: Jeremy Shicker, who is more commonly known as Chr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019719600677490234\n", + "detect_scores: Deon Sanders Jr., known professionally as Deion S\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007848739624023438\n", + "detect_scores: Henry VIII had a total of six legitimate marriage\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6828-6835: `letter `\n", + "Group 2 found at 6835-6842: `letter `\n", + "\n", + "Group 1 found at 7631-7637: `se cau`\n", + "Group 2 found at 7637-7643: `se cau`\n", + "(0, 26, 26)\n", + "detect_scores time: 1.167539119720459\n", + "detect_scores: Tim Tebow grew up in Jacksonville, Florida. He wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2900-2909: ` rational`\n", + "Group 2 found at 2909-2918: ` rational`\n", + "\n", + "Group 1 found at 3174-3186: `ly identical`\n", + "Group 2 found at 3186-3198: `ly identical`\n", + "\n", + "Group 1 found at 9386-9392: `s gate`\n", + "Group 2 found at 9392-9398: `s gate`\n", + "(0, 54, 54)\n", + "detect_scores time: 0.8806509971618652\n", + "detect_scores: The Chesapeake Bay Bridge, also known as the Will\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00806117057800293\n", + "detect_scores: Victoria Braganza, a character from the televisio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002543926239013672\n", + "detect_scores: President John F. Kennedy's Inaugural Address too\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005574226379394531\n", + "detect_scores: The Taliban originated in Afghanistan during the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5240-5246: ` charm`\n", + "Group 2 found at 5246-5252: ` charm`\n", + "\n", + "Group 1 found at 5359-5366: ` humane`\n", + "Group 2 found at 5366-5373: ` humane`\n", + "\n", + "Group 1 found at 7865-7870: ` sure`\n", + "Group 2 found at 7870-7875: ` sure`\n", + "\n", + "Group 1 found at 7879-7888: ` definite`\n", + "Group 2 found at 7888-7897: ` definite`\n", + "\n", + "Group 1 found at 7901-7910: ` absolute`\n", + "Group 2 found at 7910-7919: ` absolute`\n", + "(0, 72, 72)\n", + "detect_scores time: 0.9661319255828857\n", + "detect_scores: In the television series \"The Vampire Diaries,\" E\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005109310150146484\n", + "detect_scores: The Missouri River, one of North America's longes\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5087-5092: `loin `\n", + "Group 2 found at 5092-5097: `loin `\n", + "\n", + "Group 1 found at 5111-5117: `round `\n", + "Group 2 found at 5117-5123: `round `\n", + "\n", + "Group 1 found at 7020-7026: `cycle `\n", + "Group 2 found at 7026-7032: `cycle `\n", + "\n", + "Group 1 found at 7429-7439: `s scenario`\n", + "Group 2 found at 7439-7449: `s scenario`\n", + "\n", + "Group 1 found at 7574-7579: ` slow`\n", + "Group 2 found at 7579-7584: ` slow`\n", + "\n", + "Group 1 found at 8035-8044: `te defini`\n", + "Group 2 found at 8044-8053: `te defini`\n", + "\n", + "Group 1 found at 8059-8068: ` absolute`\n", + "Group 2 found at 8068-8077: ` absolute`\n", + "\n", + "Group 1 found at 8081-8090: ` complete`\n", + "Group 2 found at 8090-8099: ` complete`\n", + "\n", + "Group 1 found at 8116-8125: `ity total`\n", + "Group 2 found at 8125-8134: `ity total`\n", + "\n", + "Group 1 found at 8576-8584: ` defense`\n", + "Group 2 found at 8584-8592: ` defense`\n", + "(0, 152, 152)\n", + "detect_scores time: 0.990875244140625\n", + "detect_scores: Taylor Lautner, who portrayed Jacob Black in the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003590583801269531\n", + "detect_scores: Claire Danés, born as Claudia Sheehy on July 27, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007943153381347656\n", + "detect_scores: San Antonio is located within Bexar County. It se\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006208419799804688\n", + "detect_scores: The primary time zone for most areas in Michigan \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010469913482666016\n", + "detect_scores: In Japan, the primary language spoken is Japanese\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5346-5352: `units `\n", + "Group 2 found at 5352-5358: `units `\n", + "ignored: tionpartitionparti\n", + "ignored: ondurationdurati\n", + "(0, 12, 12)\n", + "detect_scores time: 1.0288991928100586\n", + "detect_scores: Vince McMahon, the owner of WWE (World Wrestling \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0040531158447265625\n", + "detect_scores: Princess Leia, a fictional character from the \"St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004463911056518555\n", + "detect_scores: Leonardo Da Vinci was a polymath who made signifi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8336-8341: `e rat`\n", + "Group 2 found at 8341-8346: `e rat`\n", + "\n", + "Group 1 found at 8558-8564: `colon `\n", + "Group 2 found at 8564-8570: `colon `\n", + "\n", + "Group 1 found at 9080-9092: `ation comput`\n", + "Group 2 found at 9092-9104: `ation comput`\n", + "(0, 46, 46)\n", + "detect_scores time: 1.192831039428711\n", + "detect_scores: Mary Bell lived in Newcastle upon Tyne, England. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2794-2805: `ternally in`\n", + "Group 2 found at 2805-2816: `ternally in`\n", + "(0, 22, 22)\n", + "detect_scores time: 0.5412700176239014\n", + "detect_scores: I'm sorry, but as of my last update in April 2023\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005421876907348633\n", + "detect_scores: Julia Gillard is a member of the Australian Labor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016791820526123047\n", + "detect_scores: The current official currency used in Germany is \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007197856903076172\n", + "detect_scores: Selena Gomez, although she has Mexican-American h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003387928009033203\n", + "detect_scores: The President of Costa Rica during that time was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011091947555541992\n", + "detect_scores: Martin Luther King Jr. was tragically assassinate\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3412-3417: `bell `\n", + "Group 2 found at 3417-3422: `bell `\n", + "\n", + "Group 1 found at 3643-3657: `similarity dis`\n", + "Group 2 found at 3657-3671: `similarity dis`\n", + "\n", + "Group 1 found at 5710-5718: `ability `\n", + "Group 2 found at 5718-5726: `ability `\n", + "(0, 54, 54)\n", + "detect_scores time: 0.5393218994140625\n", + "detect_scores: The United Kingdom (UK) operates under a parliame\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6599-6605: `ress d`\n", + "Group 2 found at 6605-6611: `ress d`\n", + "\n", + "Group 1 found at 7977-7983: `day to`\n", + "Group 2 found at 7983-7989: `day to`\n", + "\n", + "Group 1 found at 8811-8817: ` magic`\n", + "Group 2 found at 8817-8823: ` magic`\n", + "(0, 36, 36)\n", + "detect_scores time: 1.2570481300354004\n", + "detect_scores: Nasim Namazi, commonly known as Nabil \"Nasri\" Kha\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004984140396118164\n", + "detect_scores: The Czech Republic currently uses the Euro as its\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006299257278442383\n", + "detect_scores: Mozilla Firefox, like any other software product \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.032083988189697266\n", + "detect_scores: New Zealand operates under a parliamentary repres\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6126-6131: `s god`\n", + "Group 2 found at 6131-6136: `s god`\n", + "\n", + "Group 1 found at 6644-6655: `s privilege`\n", + "Group 2 found at 6655-6666: `s privilege`\n", + "\n", + "Group 1 found at 8380-8387: `ing cod`\n", + "Group 2 found at 8387-8394: `ing cod`\n", + "(0, 46, 46)\n", + "detect_scores time: 1.3483240604400635\n", + "detect_scores: The Isthmus of Panama, also known as the land bri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011245012283325195\n", + "detect_scores: The capital city of Ireland, known officially as \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008203983306884766\n", + "detect_scores: Josef Mengele was a German Schutzstaffel (SS) off\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8105-8115: `e alternat`\n", + "Group 2 found at 8115-8125: `e alternat`\n", + "\n", + "Group 1 found at 9719-9724: ` quip`\n", + "Group 2 found at 9724-9729: ` quip`\n", + "\n", + "Group 1 found at 11181-11186: ` bill`\n", + "Group 2 found at 11186-11191: ` bill`\n", + "(0, 40, 40)\n", + "detect_scores time: 1.2646417617797852\n", + "detect_scores: Egypt primarily speaks Arabic, specifically the m\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005208015441894531\n", + "detect_scores: In Hawaii during the year following your query, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011533737182617188\n", + "detect_scores: North Korea, officially known as the Democratic P\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3004-3009: `e els`\n", + "Group 2 found at 3009-3014: `e els`\n", + "\n", + "Group 1 found at 8174-8180: `s coup`\n", + "Group 2 found at 8180-8186: `s coup`\n", + "\n", + "Group 1 found at 9040-9048: `s summit`\n", + "Group 2 found at 9048-9056: `s summit`\n", + "(0, 38, 38)\n", + "detect_scores time: 1.1651382446289062\n", + "detect_scores: Robert Kardashian attended the University of Ariz\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7173-7178: ` cave`\n", + "Group 2 found at 7178-7183: ` cave`\n", + "\n", + "Group 1 found at 9262-9267: `case `\n", + "Group 2 found at 9267-9272: `case `\n", + "\n", + "Group 1 found at 9456-9463: `s noise`\n", + "Group 2 found at 9463-9470: `s noise`\n", + "\n", + "Group 1 found at 10377-10385: ` reserve`\n", + "Group 2 found at 10385-10393: ` reserve`\n", + "\n", + "Group 1 found at 11091-11097: `board `\n", + "Group 2 found at 11097-11103: `board `\n", + "(0, 62, 62)\n", + "detect_scores time: 1.1275482177734375\n", + "detect_scores: St. James City, Florida County falls under the ju\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033788681030273438\n", + "detect_scores: Guyana operates under a unitary parliamentary dem\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5131-5136: `able `\n", + "Group 2 found at 5136-5141: `able `\n", + "\n", + "Group 1 found at 5878-5890: `minded close`\n", + "Group 2 found at 5890-5902: `minded close`\n", + "\n", + "Group 1 found at 11553-11558: `ring `\n", + "Group 2 found at 11558-11563: `ring `\n", + "(0, 44, 44)\n", + "detect_scores time: 1.2619659900665283\n", + "detect_scores: Lionel Messi, often confused with Aguero due to t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00463104248046875\n", + "detect_scores: The President of the European Union in 2012 was H\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037717819213867188\n", + "detect_scores: Kenya Moore was named Miss USA in 1993. Therefore\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018360614776611328\n", + "detect_scores: Nigeria operates as a federal republic under its \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05192089080810547\n", + "detect_scores: Ina Garten, the well-known television personality\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006730079650878906\n", + "detect_scores: The Atlanta Braves secured their victory in winni\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005014896392822266\n", + "detect_scores: In Iran, the predominant languages spoken are Per\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.14760708808898926\n", + "detect_scores: The earliest form of communication and written ex\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.030858993530273438\n", + "detect_scores: Scott Joplin was a renowned American composer and\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022656917572021484\n", + "detect_scores: In Afghanistan, the primary languages spoken by i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00454401969909668\n", + "detect_scores: As my knowledge was last updated in 2023, I canno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 312-318: `after `\n", + "Group 2 found at 318-324: `after `\n", + "(0, 12, 12)\n", + "detect_scores time: 0.0018320083618164062\n", + "detect_scores: Juventus won their most recent Champions League t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 735-740: `date `\n", + "Group 2 found at 740-745: `date `\n", + "(0, 10, 10)\n", + "detect_scores time: 0.004880189895629883\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036509037017822266\n", + "detect_scores: The correct answer to your question should be \"Ca\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01610088348388672\n", + "detect_scores: Reggie Bush was not a member of any NFL or profes\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009994029998779297\n", + "detect_scores: Emily Osment attended the University School of Na\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003958940505981445\n", + "detect_scores: When traveling to Mexico, the official and most w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5072-5077: `code `\n", + "Group 2 found at 5077-5082: `code `\n", + "(0, 10, 10)\n", + "detect_scores time: 1.0180668830871582\n", + "detect_scores: Troy Aikman played American Football professional\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006836891174316406\n", + "detect_scores: The FA Cup in the year 1976 was won by Manchester\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016398429870605469\n", + "detect_scores: General Robert E. Lee died on October 12, 1870, a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005362987518310547\n", + "detect_scores: Nate Archibald, portrayed by Chace Crawford on th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00688481330871582\n", + "detect_scores: Oceania is a geographic region that includes Aust\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2077-2082: `ever `\n", + "Group 2 found at 2082-2087: `ever `\n", + "\n", + "Group 1 found at 6637-6643: `ns sig`\n", + "Group 2 found at 6643-6649: `ns sig`\n", + "\n", + "Group 1 found at 7163-7174: `s happening`\n", + "Group 2 found at 7174-7185: `s happening`\n", + "\n", + "Group 1 found at 7951-7961: `dependent `\n", + "Group 2 found at 7961-7971: `dependent `\n", + "\n", + "Group 1 found at 8303-8310: `er soon`\n", + "Group 2 found at 8310-8317: `er soon`\n", + "(0, 78, 78)\n", + "detect_scores time: 1.207266092300415\n", + "detect_scores: St. Louis Park, which contains a city named after\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019559860229492188\n", + "detect_scores: Germany belongs primarily to the West Germanic br\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0065920352935791016\n", + "detect_scores: As of my last update, Tucson, Arizona operates on\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013360977172851562\n", + "detect_scores: Barack Obama represents the Democratic Party in A\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003929853439331055\n", + "detect_scores: I'm sorry, but there are no public records or inf\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002752065658569336\n", + "detect_scores: Sydney, Australia offers a plethora of attraction\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4441-4447: `plane `\n", + "Group 2 found at 4447-4453: `plane `\n", + "\n", + "Group 1 found at 8799-8804: ` wrap`\n", + "Group 2 found at 8804-8809: ` wrap`\n", + "\n", + "Group 1 found at 9597-9603: `yards `\n", + "Group 2 found at 9603-9609: `yards `\n", + "(0, 34, 34)\n", + "detect_scores time: 0.9697997570037842\n", + "detect_scores: Marilyn Monroe tragically passed away on August 5\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00491786003112793\n", + "detect_scores: The Sierra Nevada mountain range runs primarily a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004405021667480469\n", + "detect_scores: Kelly Clarkson, the American singer and televisio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005030155181884766\n", + "detect_scores: Tim Roth is a British actor born on February 24, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001569986343383789\n", + "detect_scores: When traveling in Vietnam, the official and most \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.2281908988952637\n", + "detect_scores: Roger Federer, the professional tennis player fro\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003184795379638672\n", + "detect_scores: In Costa Rica, you will typically require the loc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010626077651977539\n", + "detect_scores: Japan currently operates under a constitutional m\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00836181640625\n", + "detect_scores: Augustus Caesar, known as Gaius Octavius before h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8514-8520: ` cheer`\n", + "Group 2 found at 8520-8526: ` cheer`\n", + "\n", + "Group 1 found at 10398-10404: `s ring`\n", + "Group 2 found at 10404-10410: `s ring`\n", + "(0, 24, 24)\n", + "detect_scores time: 1.1254620552062988\n", + "detect_scores: John Stith Pemberton, an American pharmacist and \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.18948888778686523\n", + "detect_scores: The character Stewie Griffin, from \"Family Guy,\" \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005979537963867188\n", + "detect_scores: Angelina Jolie, born as Angeline Joy Bette Roese \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.029371023178100586\n", + "detect_scores: The Governor of Indiana in 2009 was Mitch Daniels\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007359981536865234\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009257793426513672\n", + "detect_scores: Barack Obama is a member of the Democratic Party.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006504058837890625\n", + "detect_scores: Stephen Ireland is a professional footballer who,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003679990768432617\n", + "detect_scores: John Mayer attended the University of Georgia. He\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013697147369384766\n", + "detect_scores: Volkswagen AG is a German multinational automotiv\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009976863861083984\n", + "detect_scores: The primary and busiest railway hub for travelers\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015499591827392578\n", + "detect_scores: Steve McNair, the former NFL quarterback who play\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007798910140991211\n", + "detect_scores: As my knowledge was last updated in early 2023, I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003406047821044922\n", + "detect_scores: Sony Ericsson was a Swedish telecommunications eq\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1757-1763: `after `\n", + "Group 2 found at 1763-1769: `after `\n", + "(0, 12, 12)\n", + "detect_scores time: 1.1445481777191162\n", + "detect_scores: The Dominican Republic uses its own national curr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033919811248779297\n", + "detect_scores: Google's corporate headquarters, known as the \"Go\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028281211853027344\n", + "detect_scores: Jesse Owens, the famous American track and field \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03931903839111328\n", + "detect_scores: As of my last update in early 2023, Carlos Santan\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005169868469238281\n", + "detect_scores: \"John Carter\" of Mars, directed by Andrew Stanton\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012095928192138672\n", + "detect_scores: The North American Free Trade Agreement (NAFTA) i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005334138870239258\n", + "detect_scores: Houston, Texas is located within Harris County.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 2.4080276489257812e-05\n", + "detect_scores: The Seattle Seahawks play at Lumen Field, which i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00180816650390625\n", + "detect_scores: Michael Keaton plays the character of Charlie Kel\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018264055252075195\n", + "detect_scores: The Riviera Casino could refer to multiple locati\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015566825866699219\n", + "detect_scores: When President Henry Harrison passed away in 1841\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019326210021972656\n", + "detect_scores: Richard Arkwright grew up in Preston, Lancashire.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008828639984130859\n", + "detect_scores: Tennessee shares its borders with five U.S. state\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018041133880615234\n", + "detect_scores: Egypt operates under a semi-presidential republic\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015417098999023438\n", + "detect_scores: John Lennon tragically died on December 8, 1980. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014400482177734375\n", + "detect_scores: As of my last update, I cannot provide real-time \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0044863224029541016\n", + "detect_scores: People in Greece primarily speak Greek. It is the\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004703044891357422\n", + "detect_scores: The Philadelphia Phillies' Spring Training facili\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007033824920654297\n", + "detect_scores: Harley-Davidson's Corporate Headquarters are loca\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00110626220703125\n", + "detect_scores: Osama Bin Laden, the founder of al-Qaeda, was loc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006814002990722656\n", + "detect_scores: The Harry Potter movie series consists of eight f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5088-5098: `s daughter`\n", + "Group 2 found at 5098-5108: `s daughter`\n", + "\n", + "Group 1 found at 7395-7403: `s tongue`\n", + "Group 2 found at 7403-7411: `s tongue`\n", + "\n", + "Group 1 found at 8400-8412: `s controller`\n", + "Group 2 found at 8412-8424: `s controller`\n", + "\n", + "Group 1 found at 9663-9674: `variance co`\n", + "Group 2 found at 9674-9685: `variance co`\n", + "(0, 82, 82)\n", + "detect_scores time: 1.0041351318359375\n", + "detect_scores: Dr. Jack Kevorkian, also known as \"Dr. Death,\" wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008001089096069336\n", + "detect_scores: Bolivia is a country located in the central part \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4961-4967: ` karma`\n", + "Group 2 found at 4967-4973: ` karma`\n", + "\n", + "Group 1 found at 6096-6110: ` neighbourhood`\n", + "Group 2 found at 6110-6124: ` neighbourhood`\n", + "\n", + "Group 1 found at 6814-6820: ` cloud`\n", + "Group 2 found at 6820-6826: ` cloud`\n", + "\n", + "Group 1 found at 7257-7262: `link `\n", + "Group 2 found at 7262-7267: `link `\n", + "\n", + "Group 1 found at 9267-9278: ` proportion`\n", + "Group 2 found at 9278-9289: ` proportion`\n", + "\n", + "Group 1 found at 9452-9461: ` periodic`\n", + "Group 2 found at 9461-9470: ` periodic`\n", + "\n", + "Group 1 found at 11238-11248: `es opposit`\n", + "Group 2 found at 11248-11258: `es opposit`\n", + "\n", + "Group 1 found at 11304-11314: `s gradient`\n", + "Group 2 found at 11314-11324: `s gradient`\n", + "\n", + "Group 1 found at 11432-11440: `s metric`\n", + "Group 2 found at 11440-11448: `s metric`\n", + "(0, 158, 158)\n", + "detect_scores time: 1.2935521602630615\n", + "detect_scores: Nolan Ryan played as a pitcher in Major League Ba\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7249-7254: `e rat`\n", + "Group 2 found at 7254-7259: `e rat`\n", + "\n", + "Group 1 found at 7811-7819: ` entitle`\n", + "Group 2 found at 7819-7827: ` entitle`\n", + "\n", + "Group 1 found at 9744-9750: ` civil`\n", + "Group 2 found at 9750-9756: ` civil`\n", + "\n", + "Group 1 found at 11379-11387: ` heading`\n", + "Group 2 found at 11387-11395: ` heading`\n", + "\n", + "Group 1 found at 11537-11543: `s tree`\n", + "Group 2 found at 11543-11549: `s tree`\n", + "(0, 66, 66)\n", + "detect_scores time: 1.265556812286377\n", + "detect_scores: Justin Bieber is originally from Canada. He was b\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012900829315185547\n", + "detect_scores: Frida Kahlo, the renowned Mexican painter known f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10025-10036: `s statistic`\n", + "Group 2 found at 10036-10047: `s statistic`\n", + "(0, 22, 22)\n", + "detect_scores time: 1.0870671272277832\n", + "detect_scores: Taylor Swift hails from Reading, Pennsylvania, in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037689208984375\n", + "detect_scores: Argentina has a diverse religious landscape, with\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03695273399353027\n", + "detect_scores: The San Francisco Giants' most recent World Serie\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031528472900390625\n", + "detect_scores: The primary official languages of China are Stand\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030226707458496094\n", + "detect_scores: Vladimir Lenin, the Russian revolutionary and pol\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031638145446777344\n", + "detect_scores: The Baltimore Ravens won Super Bowl XXXV on Febru\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006914138793945312\n", + "detect_scores: In the year 2011, Cristiano Ronaldo played for Ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007097721099853516\n", + "detect_scores: In Italy, the term for \"money\" can be referred to\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0072307586669921875\n", + "detect_scores: Theodor Schwann, a German physiologist and one of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010374069213867188\n", + "detect_scores: In Virginia for the year of 2013, there were two \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012109756469726562\n", + "detect_scores: As of my last update in 2023, there are ten non-p\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015907764434814453\n", + "detect_scores: The Nordic Countries typically refer to five nati\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5177-5188: `s privilege`\n", + "Group 2 found at 5188-5199: `s privilege`\n", + "(0, 22, 22)\n", + "detect_scores time: 0.6286158561706543\n", + "detect_scores: The Spanish Empire, under the rule of King Charle\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001127004623413086\n", + "detect_scores: Vera Ellen died of cancer. She was an American ac\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005533933639526367\n", + "detect_scores: The current capital city of Egypt is Cairo. It ha\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011751651763916016\n", + "detect_scores: Ontario\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 5.0067901611328125e-06\n", + "detect_scores: The current official currency of Brazil is the Re\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008833408355712891\n", + "detect_scores: Andy Warhol was a prominent figure in the visual \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0350642204284668\n", + "detect_scores: Florida is surrounded by several U.S. states and \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6178-6185: `s opera`\n", + "Group 2 found at 6185-6192: `s opera`\n", + "\n", + "Group 1 found at 9285-9293: `s rocket`\n", + "Group 2 found at 9293-9301: `s rocket`\n", + "(0, 30, 30)\n", + "detect_scores time: 1.026134967803955\n", + "detect_scores: The two most prominent religious groups within Ru\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7620-7628: `rs scala`\n", + "Group 2 found at 7628-7636: `rs scala`\n", + "\n", + "Group 1 found at 8244-8250: `litre `\n", + "Group 2 found at 8250-8256: `litre `\n", + "\n", + "Group 1 found at 8341-8348: `metres `\n", + "Group 2 found at 8348-8355: `metres `\n", + "\n", + "Group 1 found at 8384-8390: `grams `\n", + "Group 2 found at 8390-8396: `grams `\n", + "\n", + "Group 1 found at 8491-8500: ` exponent`\n", + "Group 2 found at 8500-8509: ` exponent`\n", + "(0, 72, 72)\n", + "detect_scores time: 1.1199328899383545\n", + "detect_scores: In the year 2013, John Harbaugh was not coaching \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00949239730834961\n", + "detect_scores: Louis Sachar grew up in Atlanta, Georgia. He was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005631446838378906\n", + "detect_scores: Otto Frank, the father of Anne Frank who is well-\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017242431640625\n", + "detect_scores: As my knowledge was last updated in 2023, I canno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002641916275024414\n", + "detect_scores: The Boston Celtics, a professional basketball tea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004366874694824219\n", + "detect_scores: I cannot assist with that.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.0967254638671875e-05\n", + "detect_scores: Toronto gets most of its drinking water supply th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7265-7273: `s victim`\n", + "Group 2 found at 7273-7281: `s victim`\n", + "\n", + "Group 1 found at 8933-8938: `ages `\n", + "Group 2 found at 8938-8943: `ages `\n", + "\n", + "Group 1 found at 9828-9836: ` conquer`\n", + "Group 2 found at 9836-9844: ` conquer`\n", + "\n", + "Group 1 found at 10276-10282: `le smi`\n", + "Group 2 found at 10282-10288: `le smi`\n", + "\n", + "Group 1 found at 10960-10967: `writer `\n", + "Group 2 found at 10967-10974: `writer `\n", + "(0, 68, 68)\n", + "detect_scores time: 1.1872649192810059\n", + "detect_scores: People in Bosnia primarily speak a standardized f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008305788040161133\n", + "detect_scores: Japan imports a variety of goods and commodities \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8462-8473: `ctions dire`\n", + "Group 2 found at 8473-8484: `ctions dire`\n", + "\n", + "Group 1 found at 8515-8526: `e coordinat`\n", + "Group 2 found at 8526-8537: `e coordinat`\n", + "(0, 44, 44)\n", + "detect_scores time: 1.0518417358398438\n", + "detect_scores: Sonia Gandhi's eldest child, who was born on 9th \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014789104461669922\n", + "detect_scores: Mary Todd Lincoln, born as Harriet Woods on Decem\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0038459300994873047\n", + "detect_scores: Charles Darwin died on April 19, 1882. He passed \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029268264770507812\n", + "detect_scores: King George VI, who reigned as the monarch of Gre\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007507801055908203\n", + "detect_scores: Jesus, according to Christian beliefs and biblica\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9303-9309: `colon `\n", + "Group 2 found at 9309-9315: `colon `\n", + "(0, 12, 12)\n", + "detect_scores time: 1.0968608856201172\n", + "detect_scores: Darth Vader was originally portrayed by actor Dav\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00847935676574707\n", + "detect_scores: Switzerland is a landlocked country in Central Eu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 508-513: ` `\n", + "Group 2 found at 513-528: ` `\n", + "(0, 20, 20)\n", + "detect_scores time: 0.003278970718383789\n", + "detect_scores: Benito Mussolini was the leader of Italy. He rule\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015293121337890625\n", + "detect_scores: The First United Front, which included Chinese Co\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.029497861862182617\n", + "detect_scores: Miles Davis, the influential American jazz trumpe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00160980224609375\n", + "detect_scores: Sally Pearson, an Australian athlete known for he\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00840902328491211\n", + "detect_scores: The Detroit Pistons most recently won an NBA Cham\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02298712730407715\n", + "detect_scores: The Philadelphia Flyers won their first Stanley C\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0053369998931884766\n", + "detect_scores: St. Paul, NC is located within Duplin County of t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 4.887580871582031e-05\n", + "detect_scores: Olympic National Park, often referred to as \"the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6034-6040: `books `\n", + "Group 2 found at 6040-6046: `books `\n", + "\n", + "Group 1 found at 6822-6831: ` momentum`\n", + "Group 2 found at 6831-6840: ` momentum`\n", + "\n", + "Group 1 found at 7461-7472: `roids meteo`\n", + "Group 2 found at 7472-7483: `roids meteo`\n", + "(0, 52, 52)\n", + "detect_scores time: 1.0910820960998535\n", + "detect_scores: The Nat Turner Rebellion of 1831 occurred in Sout\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006759166717529297\n", + "detect_scores: Luke Skywalker is a fictional character in the St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004395961761474609\n", + "detect_scores: Barack Obama was born in Honolulu, Hawaii. Theref\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 7.605552673339844e-05\n", + "detect_scores: Alexander Graham Bell died on August 2, 1922. He \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019431114196777344\n", + "detect_scores: The Golden State Warriors won their first NBA Cha\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009791851043701172\n", + "detect_scores: The United Kingdom, often abbreviated as UK and r\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007263898849487305\n", + "detect_scores: As of my last update in April 2023, King Norodom \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003977060317993164\n", + "detect_scores: Sir Isaac Newton attended The King's School in Gr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00650477409362793\n", + "detect_scores: Huell Richardson Howser, Jr., a well-known Americ\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006023883819580078\n", + "detect_scores: England borders Scotland to the north, Wales to t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008664131164550781\n", + "detect_scores: Greene County, Indiana where the city of Greenbus\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003673076629638672\n", + "detect_scores: In the Harry Potter film series, Lord Voldemort i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0039501190185546875\n", + "detect_scores: Harper Lee attended the following institutions:\n", + "\n", + "\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0045778751373291016\n", + "detect_scores: Andrew Johnson, who served as the 17th President \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02598881721496582\n", + "detect_scores: Osama Bin Laden, the founder of al-Qaeda and resp\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037491321563720703\n", + "detect_scores: Queen Elizabeth II, the mother of King Charles II\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0069048404693603516\n", + "detect_scores: Don Draper, a character from the television serie\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0070841312408447266\n", + "detect_scores: Spain operates under a parliamentary constitution\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5103-5110: ` Edward`\n", + "Group 2 found at 5110-5117: ` Edward`\n", + "(0, 14, 14)\n", + "detect_scores time: 0.6131811141967773\n", + "detect_scores: Alaska is a state within the United States of Ame\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005660295486450195\n", + "detect_scores: Kansas City, often referred to as KC or Greater K\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0038862228393554688\n", + "detect_scores: Brett Gardner played as a center fielder and righ\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015012979507446289\n", + "detect_scores: San Diego County is located in the southern regio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3127-3132: ` sure`\n", + "Group 2 found at 3132-3137: ` sure`\n", + "\n", + "Group 1 found at 7404-7411: `thesis `\n", + "Group 2 found at 7411-7418: `thesis `\n", + "\n", + "Group 1 found at 9801-9808: ` sensor`\n", + "Group 2 found at 9808-9815: ` sensor`\n", + "\n", + "Group 1 found at 10583-10596: `s equivalence`\n", + "Group 2 found at 10596-10609: `s equivalence`\n", + "(0, 64, 64)\n", + "detect_scores time: 1.1362791061401367\n", + "detect_scores: As of my last update in April 2023, Tua Tagovailo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0032269954681396484\n", + "detect_scores: Adolf Hitler committed suicide on April 30, 1945.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002933025360107422\n", + "detect_scores: In Germany, the primary language spoken is German\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018908977508544922\n", + "detect_scores: The Denver Broncos' most recent Super Bowl win wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004801034927368164\n", + "detect_scores: Bessie Smith, known as the \"Empress of the Blues,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006916046142578125\n", + "detect_scores: As of my last update, Chicago operates on Eastern\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004634857177734375\n", + "detect_scores: The Vice President serving alongside Ronald Reaga\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012769699096679688\n", + "detect_scores: The Chicago White Sox primarily play their home g\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01796579360961914\n", + "detect_scores: When traveling to Barbados, the local currency is\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0052678585052490234\n", + "detect_scores: Tennessee Williams attended the University of Mis\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004203081130981445\n", + "detect_scores: The primary international and major commercial pa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018529891967773438\n", + "detect_scores: Queen Victoria's husband was Prince Albert of Sax\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004725933074951172\n", + "detect_scores: Barbara Bush was the wife of George H. W. Bush, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006476879119873047\n", + "detect_scores: Scottie Pippen, a former professional basketball \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5244-5252: `ed admir`\n", + "Group 2 found at 5252-5260: `ed admir`\n", + "(0, 16, 16)\n", + "detect_scores time: 1.1577537059783936\n", + "detect_scores: The Dallas Cowboys' most recent Super Bowl win oc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004057168960571289\n", + "detect_scores: Ireland, as a national team in the sport of Rugby\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0050852298736572266\n", + "detect_scores: Lee Harvey Oswald was the accused assassin of Pre\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4088-4095: `ly sure`\n", + "Group 2 found at 4095-4102: `ly sure`\n", + "\n", + "Group 1 found at 4497-4507: `ybody ever`\n", + "Group 2 found at 4507-4517: `ybody ever`\n", + "\n", + "Group 1 found at 5548-5558: `rupted dis`\n", + "Group 2 found at 5558-5568: `rupted dis`\n", + "\n", + "Group 1 found at 8027-8035: ` measure`\n", + "Group 2 found at 8035-8043: ` measure`\n", + "\n", + "Group 1 found at 8501-8506: `link `\n", + "Group 2 found at 8506-8511: `link `\n", + "\n", + "Group 1 found at 10195-10202: `ts floa`\n", + "Group 2 found at 10202-10209: `ts floa`\n", + "\n", + "Group 1 found at 10299-10304: `s log`\n", + "Group 2 found at 10304-10309: `s log`\n", + "\n", + "Group 1 found at 10634-10639: `book `\n", + "Group 2 found at 10639-10644: `book `\n", + "(0, 114, 114)\n", + "detect_scores time: 1.1356449127197266\n", + "detect_scores: The New York Knickerbockers, commonly known as th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005721092224121094\n", + "detect_scores: The Boston Celtics won their most recent NBA Cham\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01694178581237793\n", + "detect_scores: Oceania is a geographic region that includes Aust\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 414-419: ` `\n", + "Group 2 found at 419-424: ` `\n", + "\n", + "Group 1 found at 444-449: ` `\n", + "Group 2 found at 449-454: ` `\n", + "\n", + "Group 1 found at 465-470: ` `\n", + "Group 2 found at 470-475: ` `\n", + "\n", + "Group 1 found at 488-493: ` `\n", + "Group 2 found at 493-498: ` `\n", + "\n", + "Group 1 found at 513-518: ` `\n", + "Group 2 found at 518-543: ` `\n", + "\n", + "Group 1 found at 4139-4147: ` Scanner`\n", + "Group 2 found at 4147-4155: ` Scanner`\n", + "\n", + "Group 1 found at 5450-5458: ` Package`\n", + "Group 2 found at 5458-5466: ` Package`\n", + "\n", + "Group 1 found at 9457-9462: ` clip`\n", + "Group 2 found at 9462-9467: ` clip`\n", + "(0, 112, 112)\n", + "detect_scores time: 0.8418598175048828\n", + "detect_scores: Nicki Minaj hails from Trinidad and Tobago. She w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014526844024658203\n", + "detect_scores: Nawaz Sharif served as the Prime Minister of Paki\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008094072341918945\n", + "detect_scores: The capital city of Morocco is Rabat. It's import\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033838748931884766\n", + "detect_scores: Nancy Pelosi represents California's 12th congres\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002978086471557617\n", + "detect_scores: George H.W. Bush attended Yale University for his\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2186-2197: `existing co`\n", + "Group 2 found at 2197-2208: `existing co`\n", + "\n", + "Group 1 found at 3215-3220: `able `\n", + "Group 2 found at 3220-3225: `able `\n", + "\n", + "Group 1 found at 4870-4878: `ability `\n", + "Group 2 found at 4878-4886: `ability `\n", + "\n", + "Group 1 found at 5042-5047: `i kam`\n", + "Group 2 found at 5047-5052: `i kam`\n", + "\n", + "Group 1 found at 5113-5120: `bishop `\n", + "Group 2 found at 5120-5127: `bishop `\n", + "\n", + "Group 1 found at 5169-5176: ` prince`\n", + "Group 2 found at 5176-5183: ` prince`\n", + "\n", + "Group 1 found at 5753-5758: ` fine`\n", + "Group 2 found at 5758-5763: ` fine`\n", + "\n", + "Group 1 found at 8797-8803: `colon `\n", + "Group 2 found at 8803-8809: `colon `\n", + "\n", + "Group 1 found at 9056-9066: ` continent`\n", + "Group 2 found at 9066-9076: ` continent`\n", + "ignored: boltsbolts\n", + "ignored: bjectivitysubjectivitysu\n", + "ignored: dimensionaldimensional\n", + "(0, 128, 128)\n", + "detect_scores time: 1.0559017658233643\n", + "detect_scores: For a great time outdoors and entertainment optio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6670-6684: `s Encyclopedia`\n", + "Group 2 found at 6684-6698: `s Encyclopedia`\n", + "(0, 28, 28)\n", + "detect_scores time: 0.7749810218811035\n", + "detect_scores: Kim Kardashian is a well-known American personali\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004765987396240234\n", + "detect_scores: Justin Bieber is originally from Stratford, Ontar\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00017714500427246094\n", + "detect_scores: Nicolas Cage portrays Charlie Brown, also known a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005775928497314453\n", + "detect_scores: R. Kelly attended Benjamin Elijah Mays High Schoo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00021505355834960938\n", + "detect_scores: The events that took place in Benghazi refer to t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10458-10467: `terior ex`\n", + "Group 2 found at 10467-10476: `terior ex`\n", + "\n", + "Group 1 found at 11086-11093: ` record`\n", + "Group 2 found at 11093-11100: ` record`\n", + "(0, 32, 32)\n", + "detect_scores time: 1.1291899681091309\n", + "detect_scores: Nike, Inc. was founded and incorporated on May 30\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008282661437988281\n", + "detect_scores: When traveling to Mexico, it's important to carry\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9403-9409: `agree `\n", + "Group 2 found at 9409-9415: `agree `\n", + "(0, 12, 12)\n", + "detect_scores time: 1.107647180557251\n", + "detect_scores: Angelina Jolie is an acclaimed American actress, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.1348161697387695\n", + "detect_scores: William Shatner portrayed Captain Kirk in the ori\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0076329708099365234\n", + "detect_scores: Dana Scully, a character from the television seri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022237300872802734\n", + "detect_scores: F. Scott Fitzgerald was an American novelist, ess\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.8806190490722656\n", + "detect_scores: The predominant and official languages of Jamaica\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019800662994384766\n", + "detect_scores: As of my last update in April 2023, the head coac\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018968582153320312\n", + "detect_scores: As a public figure and the current Oakland Mayor,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004109859466552734\n", + "detect_scores: England, being a part of the United Kingdom (UK),\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007185935974121094\n", + "detect_scores: Mali, officially known as the Republic of Mali si\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7330-7338: `ing bear`\n", + "Group 2 found at 7338-7346: `ing bear`\n", + "(0, 16, 16)\n", + "detect_scores time: 1.155465841293335\n", + "detect_scores: In the year 2010, Cristiano Ronaldo played primar\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004479885101318359\n", + "detect_scores: Jacksonville, Florida operates in the Eastern Tim\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009851455688476562\n", + "detect_scores: King Henry VII had two legitimate surviving child\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2990-2998: ` present`\n", + "Group 2 found at 2998-3006: ` present`\n", + "\n", + "Group 1 found at 10159-10164: `fish `\n", + "Group 2 found at 10164-10169: `fish `\n", + "(0, 26, 26)\n", + "detect_scores time: 1.1608712673187256\n", + "detect_scores: Kurt Russell portrayed the character Denver Dolla\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006010532379150391\n", + "detect_scores: The Cleveland Cavaliers, as of my last update in \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002972126007080078\n", + "detect_scores: Anne Frank was a young Jewish girl who is best kn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011224031448364258\n", + "detect_scores: The official currency of Italy is the Euro (€). I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016448497772216797\n", + "detect_scores: The official currency used in Italy is called the\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011110305786132812\n", + "detect_scores: Audrey Hepburn was born in Ixelles, which at the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006043195724487305\n", + "detect_scores: Douglas MacArthur, the prominent American five-st\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5101-5109: `ity grav`\n", + "Group 2 found at 5109-5117: `ity grav`\n", + "\n", + "Group 1 found at 5292-5298: `se cau`\n", + "Group 2 found at 5298-5304: `se cau`\n", + "\n", + "Group 1 found at 6685-6691: `s cave`\n", + "Group 2 found at 6691-6697: `s cave`\n", + "\n", + "Group 1 found at 8131-8138: `tion ac`\n", + "Group 2 found at 8138-8145: `tion ac`\n", + "\n", + "Group 1 found at 8830-8838: ` entitle`\n", + "Group 2 found at 8838-8846: ` entitle`\n", + "\n", + "Group 1 found at 9877-9882: `room `\n", + "Group 2 found at 9882-9887: `room `\n", + "(0, 80, 80)\n", + "detect_scores time: 1.3113720417022705\n", + "detect_scores: The official currency used in China is called Ren\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009088516235351562\n", + "detect_scores: As of my last update in early 2023, Lamar Odom wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0027108192443847656\n", + "detect_scores: The Great Pyramid of Giza, also known as the Pyra\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02975320816040039\n", + "detect_scores: Australians predominantly speak English, which is\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029549598693847656\n", + "detect_scores: King Tutankhamun's tomb, also known as the Boy Ki\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014810562133789062\n", + "detect_scores: Abraham, a key figure in the religious traditions\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7075-7080: `t uni`\n", + "Group 2 found at 7080-7085: `t uni`\n", + "\n", + "Group 1 found at 7152-7158: `meter `\n", + "Group 2 found at 7158-7164: `meter `\n", + "\n", + "Group 1 found at 7174-7179: `gram `\n", + "Group 2 found at 7179-7184: `gram `\n", + "ignored: leaselease\n", + "(0, 32, 32)\n", + "detect_scores time: 0.8916769027709961\n", + "detect_scores: George Washington Carver attended Simpson College\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6127-6137: `ly evident`\n", + "Group 2 found at 6137-6147: `ly evident`\n", + "\n", + "Group 1 found at 8365-8373: ` entitle`\n", + "Group 2 found at 8373-8381: ` entitle`\n", + "(0, 36, 36)\n", + "detect_scores time: 1.2317869663238525\n", + "detect_scores: Spain is known for its rich sporting culture and \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3930-3937: `length `\n", + "Group 2 found at 3937-3944: `length `\n", + "\n", + "Group 1 found at 7301-7314: `ometer electr`\n", + "Group 2 found at 7314-7327: `ometer electr`\n", + "\n", + "Group 1 found at 8361-8366: ` safe`\n", + "Group 2 found at 8366-8371: ` safe`\n", + "\n", + "Group 1 found at 9216-9223: `fields `\n", + "Group 2 found at 9223-9230: `fields `\n", + "(0, 64, 64)\n", + "detect_scores time: 1.0458219051361084\n", + "detect_scores: Barack Obama, the 44th President of the United St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018342256546020508\n", + "detect_scores: In Poland, a variety of popular and traditional s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4716-4723: ` marine`\n", + "Group 2 found at 4723-4730: ` marine`\n", + "\n", + "Group 1 found at 5044-5056: ` philosopher`\n", + "Group 2 found at 5056-5068: ` philosopher`\n", + "\n", + "Group 1 found at 5069-5078: ` logician`\n", + "Group 2 found at 5078-5087: ` logician`\n", + "\n", + "Group 1 found at 8937-8944: `letter `\n", + "Group 2 found at 8944-8951: `letter `\n", + "(0, 70, 70)\n", + "detect_scores time: 0.8767290115356445\n", + "detect_scores: I'm sorry, but your question about Demi Lovato is\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017070770263671875\n", + "detect_scores: Scarlett Johansson is a versatile actress with nu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9025-9033: ` control`\n", + "Group 2 found at 9033-9041: ` control`\n", + "\n", + "Group 1 found at 9091-9096: ` ipod`\n", + "Group 2 found at 9096-9101: ` ipod`\n", + "\n", + "Group 1 found at 9401-9407: ` cover`\n", + "Group 2 found at 9407-9413: ` cover`\n", + "(0, 38, 38)\n", + "detect_scores time: 1.1809499263763428\n", + "detect_scores: Amy Squires is a character from the movie \"Bad Te\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002810955047607422\n", + "detect_scores: Boeing Corporation, one of the largest aerospace \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003857851028442383\n", + "detect_scores: Viggo Mortenson played the character Aragorn, als\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004155874252319336\n", + "detect_scores: Sir Isaac Newton, born on January 4th (December 2\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3695-3700: ` wait`\n", + "Group 2 found at 3700-3705: ` wait`\n", + "\n", + "Group 1 found at 5944-5951: `meters `\n", + "Group 2 found at 5951-5958: `meters `\n", + "\n", + "Group 1 found at 6188-6194: `meter `\n", + "Group 2 found at 6194-6200: `meter `\n", + "\n", + "Group 1 found at 6242-6247: ` ohms`\n", + "Group 2 found at 6247-6252: ` ohms`\n", + "\n", + "Group 1 found at 8992-8999: ` clergy`\n", + "Group 2 found at 8999-9006: ` clergy`\n", + "\n", + "Group 1 found at 10353-10363: `dependent `\n", + "Group 2 found at 10363-10373: `dependent `\n", + "\n", + "Group 1 found at 10412-10422: `certainty `\n", + "Group 2 found at 10422-10432: `certainty `\n", + "(0, 100, 100)\n", + "detect_scores time: 1.1523711681365967\n", + "detect_scores: William Shakespeare got married to Anne Hathaway.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001882791519165039\n", + "detect_scores: Michelle Obama, born Flavia Crépin and later know\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00752568244934082\n", + "detect_scores: Franz Liszt was a 19th-century Hungarian composer\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7301-7311: ` signature`\n", + "Group 2 found at 7311-7321: ` signature`\n", + "\n", + "Group 1 found at 8803-8816: `imates approx`\n", + "Group 2 found at 8816-8829: `imates approx`\n", + "\n", + "Group 1 found at 10348-10358: `dependent `\n", + "Group 2 found at 10358-10368: `dependent `\n", + "\n", + "Group 1 found at 11008-11017: `finite in`\n", + "Group 2 found at 11017-11026: `finite in`\n", + "\n", + "Group 1 found at 11622-11631: `s program`\n", + "Group 2 found at 11631-11640: `s program`\n", + "\n", + "Group 1 found at 11680-11690: ` remainder`\n", + "Group 2 found at 11690-11700: ` remainder`\n", + "\n", + "Group 1 found at 11860-11868: `ons reas`\n", + "Group 2 found at 11868-11876: `ons reas`\n", + "\n", + "Group 1 found at 11950-11959: `s routine`\n", + "Group 2 found at 11959-11968: `s routine`\n", + "(0, 156, 156)\n", + "detect_scores time: 1.3237121105194092\n", + "detect_scores: David Luíz currently plays soccer (football) in t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014362335205078125\n", + "detect_scores: Victoria, British Columbia can be found on the so\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007136106491088867\n", + "detect_scores: The official currency of France is called the Eur\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011943817138671875\n", + "detect_scores: David Beckham played for the Los Angeles Galaxy d\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02085709571838379\n", + "detect_scores: WNYC, which stands for New York Public Radio (for\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004127979278564453\n", + "detect_scores: John Jay, an important figure in American history\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014240741729736328\n", + "detect_scores: Mount Fuji, also known as Fujisan in Japanese, is\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8382-8388: `metre `\n", + "Group 2 found at 8388-8394: `metre `\n", + "\n", + "Group 1 found at 8429-8434: `gram `\n", + "Group 2 found at 8434-8439: `gram `\n", + "\n", + "Group 1 found at 9367-9374: `es phas`\n", + "Group 2 found at 9374-9381: `es phas`\n", + "\n", + "Group 1 found at 10837-10842: `code `\n", + "Group 2 found at 10842-10847: `code `\n", + "(0, 46, 46)\n", + "detect_scores time: 1.1547126770019531\n", + "detect_scores: Toussaint L’Ouverture, the leader of Haiti during\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00503993034362793\n", + "detect_scores: The United Kingdom (UK) is made up of four consti\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02124786376953125\n", + "detect_scores: The answer to your query, according to Wikipedia \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003392934799194336\n", + "detect_scores: Before France adopted the Euro as its official cu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0075016021728515625\n", + "detect_scores: The official motto of Kentucky, which also serves\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015311241149902344\n", + "detect_scores: Samantha Stephenson is not a widely recognized ch\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005774021148681641\n", + "detect_scores: Sir Isaac Newton studied physics and mathematics.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006312370300292969\n", + "detect_scores: San Diego County is located on the southern borde\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008543968200683594\n", + "detect_scores: Canada, which lies to the North of Mexico and bor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010429859161376953\n", + "detect_scores: Santa Claus, also known as Saint Nicholas or Kris\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00937199592590332\n", + "detect_scores: Coretta Scott King, the wife of civil rights lead\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015788078308105469\n", + "detect_scores: Adolf Hitler was raised in a Roman Catholic famil\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0035898685455322266\n", + "detect_scores: The Illinois River can be found in central United\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4566-4572: `ound s`\n", + "Group 2 found at 4572-4578: `ound s`\n", + "\n", + "Group 1 found at 7463-7472: `s formula`\n", + "Group 2 found at 7472-7481: `s formula`\n", + "(0, 30, 30)\n", + "detect_scores time: 1.124222993850708\n", + "detect_scores: Honduras is a country located in Central America,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1412-1417: `e els`\n", + "Group 2 found at 1417-1422: `e els`\n", + "\n", + "Group 1 found at 3001-3009: ` present`\n", + "Group 2 found at 3009-3017: ` present`\n", + "\n", + "Group 1 found at 8385-8394: `tor credi`\n", + "Group 2 found at 8394-8403: `tor credi`\n", + "\n", + "Group 1 found at 10342-10354: ` instruction`\n", + "Group 2 found at 10354-10366: ` instruction`\n", + "\n", + "Group 1 found at 11275-11281: `ts uni`\n", + "Group 2 found at 11281-11287: `ts uni`\n", + "\n", + "Group 1 found at 11364-11376: `s opposition`\n", + "Group 2 found at 11376-11388: `s opposition`\n", + "(0, 104, 104)\n", + "detect_scores time: 1.1742539405822754\n", + "detect_scores: As of my last update in April 2023, Ronaldho was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002656698226928711\n", + "detect_scores: Galileo Galilei, an Italian astronomer and physic\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6481-6492: `imeter mill`\n", + "Group 2 found at 6492-6503: `imeter mill`\n", + "\n", + "Group 1 found at 6625-6632: ` league`\n", + "Group 2 found at 6632-6639: ` league`\n", + "\n", + "Group 1 found at 6651-6658: `meters `\n", + "Group 2 found at 6658-6665: `meters `\n", + "\n", + "Group 1 found at 7260-7266: `plane `\n", + "Group 2 found at 7266-7272: `plane `\n", + "\n", + "Group 1 found at 7344-7349: `d sle`\n", + "Group 2 found at 7349-7354: `d sle`\n", + "\n", + "Group 1 found at 9369-9375: ` cloth`\n", + "Group 2 found at 9375-9381: ` cloth`\n", + "\n", + "Group 1 found at 9508-9514: `s suit`\n", + "Group 2 found at 9514-9520: `s suit`\n", + "(0, 96, 96)\n", + "detect_scores time: 1.0801749229431152\n", + "detect_scores: Germany's largest and most significant trade rela\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4877-4883: `aware `\n", + "Group 2 found at 4883-4889: `aware `\n", + "\n", + "Group 1 found at 8520-8530: `magnetism `\n", + "Group 2 found at 8530-8540: `magnetism `\n", + "(0, 32, 32)\n", + "detect_scores time: 1.1325080394744873\n", + "detect_scores: Mitt Romney, the former Governor of Massachusetts\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006483316421508789\n", + "detect_scores: Sean Hinton attended the University of Michigan. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002830982208251953\n", + "detect_scores: Central America consists primarily of 7 countries\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6609-6620: `ness single`\n", + "Group 2 found at 6620-6631: `ness single`\n", + "\n", + "Group 1 found at 9176-9184: ` channel`\n", + "Group 2 found at 9184-9192: ` channel`\n", + "\n", + "Group 1 found at 11208-11213: `book `\n", + "Group 2 found at 11213-11218: `book `\n", + "(0, 48, 48)\n", + "detect_scores time: 1.190178632736206\n", + "detect_scores: I'm sorry, but there seems to be some confusion. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009676218032836914\n", + "detect_scores: The Amazon Rainforest, also known as Amazonia or \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01645493507385254\n", + "detect_scores: Claude Monet was a French painter and one of the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00422978401184082\n", + "detect_scores: Kurt Cobain, the lead vocalist and primary songwr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001811981201171875\n", + "detect_scores: Jennifer Lawrence played the character of \"Rebecc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.019109010696411133\n", + "detect_scores: The Governor of Virginia in 2011 was Bob McDonnel\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002523183822631836\n", + "detect_scores: Jackie Kennedy, born Jacqueline Lee Bouvier and t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005387067794799805\n", + "detect_scores: Lauren Conrad Major graduated from the Fashion In\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.021216869354248047\n", + "detect_scores: Pennsylvania's current standard time would depend\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01069784164428711\n", + "detect_scores: Mario López is a Mexican actor, singer and model.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00783991813659668\n", + "detect_scores: Sarah Dessen's novels have been adapted into seve\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8667-8673: ` equal`\n", + "Group 2 found at 8673-8679: ` equal`\n", + "(0, 12, 12)\n", + "detect_scores time: 1.3140759468078613\n", + "detect_scores: As an AI, I can't provide real-time data. However\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007302045822143555\n", + "detect_scores: Farrah Fawcett, the American actress and model kn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010802745819091797\n", + "detect_scores: John Steinbeck, the acclaimed American author and\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6503-6515: `tions estima`\n", + "Group 2 found at 6515-6527: `tions estima`\n", + "\n", + "Group 1 found at 8692-8704: `e certificat`\n", + "Group 2 found at 8704-8716: `e certificat`\n", + "(0, 48, 48)\n", + "detect_scores time: 1.0676689147949219\n", + "detect_scores: As of my knowledge cutoff in 2023, Cuba operates \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004312038421630859\n", + "detect_scores: The current capital of Italy, as it has been sinc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011088848114013672\n", + "detect_scores: In The Bahamas, English is predominantly spoken a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018610954284667969\n", + "detect_scores: George Michael, the famous pop singer and musicia\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006272077560424805\n", + "detect_scores: In the year 2010, Cristiano Ronaldo played as a f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00921010971069336\n", + "detect_scores: The Bahamas operates on Atlantic Standard Time (A\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006947755813598633\n", + "detect_scores: In Brazil, the primary and official language spok\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011169910430908203\n", + "detect_scores: Samuel Taylor Coleridge was significantly influen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4272-4284: `osphere trop`\n", + "Group 2 found at 4284-4296: `osphere trop`\n", + "\n", + "Group 1 found at 9882-9889: ` virtue`\n", + "Group 2 found at 9889-9896: ` virtue`\n", + "\n", + "Group 1 found at 10112-10123: `e preferenc`\n", + "Group 2 found at 10123-10134: `e preferenc`\n", + "(0, 60, 60)\n", + "detect_scores time: 1.0072951316833496\n", + "detect_scores: Kim Kardashian is best known for her career in me\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011655807495117188\n", + "detect_scores: The Mississippi River does not technically \"end\" \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004949092864990234\n", + "detect_scores: As of my last update in April 2023, the President\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011818408966064453\n", + "detect_scores: Harley Quinn is a character from DC Comics, and s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7827-7833: ` motto`\n", + "Group 2 found at 7833-7839: ` motto`\n", + "\n", + "Group 1 found at 7846-7853: `phrase `\n", + "Group 2 found at 7853-7860: `phrase `\n", + "\n", + "Group 1 found at 8360-8368: ` fortune`\n", + "Group 2 found at 8368-8376: ` fortune`\n", + "\n", + "Group 1 found at 10040-10045: `clip `\n", + "Group 2 found at 10045-10050: `clip `\n", + "\n", + "Group 1 found at 10529-10537: ` speaker`\n", + "Group 2 found at 10537-10545: ` speaker`\n", + "(0, 68, 68)\n", + "detect_scores time: 1.08732008934021\n", + "detect_scores: Ziva David began her tenure as an NCIS Special Ag\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002919912338256836\n", + "detect_scores: Canadian National Anthem\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.0013580322265625e-05\n", + "detect_scores: Mark Zuckerberg studied computer science and psyc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002318143844604492\n", + "detect_scores: Michael Jackson, the famous pop singer known as \"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009081363677978516\n", + "detect_scores: Stephen R. Covey was an American educator, author\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018680810928344727\n", + "detect_scores: Joseph Stalin, as a historical figure and leader \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004402875900268555\n", + "detect_scores: Monta Ellis's highest-achieving season in terms o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004127025604248047\n", + "detect_scores: Rihanna, whose full name is Robyn Rihanna Fenty, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018048286437988281\n", + "detect_scores: Joakim Noah attended the University of Florida, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003971099853515625\n", + "detect_scores: The role of Billy Elliott in the original film \"B\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012180805206298828\n", + "detect_scores: Kourtney Kardashian has been in relationships wit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019488334655761719\n", + "detect_scores: Australia operates under a federal parliamentary \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6017-6024: `s token`\n", + "Group 2 found at 6024-6031: `s token`\n", + "\n", + "Group 1 found at 9163-9178: `ostatics electr`\n", + "Group 2 found at 9178-9193: `ostatics electr`\n", + "\n", + "Group 1 found at 10800-10806: `start `\n", + "Group 2 found at 10806-10812: `start `\n", + "(0, 56, 56)\n", + "detect_scores time: 1.2096750736236572\n", + "detect_scores: Howie Long played for several NFL teams throughou\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0170900821685791\n", + "detect_scores: Elizabethtown, Kentucky operates in the Eastern T\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005501270294189453\n", + "detect_scores: Chris Paul, the professional basketball player kn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5110-5121: `variance co`\n", + "Group 2 found at 5121-5132: `variance co`\n", + "\n", + "Group 1 found at 6235-6241: `colon `\n", + "Group 2 found at 6241-6247: `colon `\n", + "\n", + "Group 1 found at 6399-6406: ` screen`\n", + "Group 2 found at 6406-6413: ` screen`\n", + "\n", + "Group 1 found at 7765-7770: `list `\n", + "Group 2 found at 7770-7775: `list `\n", + "\n", + "Group 1 found at 10839-10844: ` pipe`\n", + "Group 2 found at 10844-10849: ` pipe`\n", + "\n", + "Group 1 found at 11306-11313: `parent `\n", + "Group 2 found at 11313-11320: `parent `\n", + "\n", + "Group 1 found at 11369-11377: `body any`\n", + "Group 2 found at 11377-11385: `body any`\n", + "\n", + "Group 1 found at 11491-11496: ` soon`\n", + "Group 2 found at 11496-11501: ` soon`\n", + "\n", + "Group 1 found at 11707-11716: `nce comme`\n", + "Group 2 found at 11716-11725: `nce comme`\n", + "(0, 126, 126)\n", + "detect_scores time: 1.2427961826324463\n", + "detect_scores: The New York Giants, a professional American foot\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012960433959960938\n", + "detect_scores: Sir Isaac Newton, primarily known for his groundb\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04755687713623047\n", + "detect_scores: Shaquille O'Neal, known as \"Shaq,\" was drafted by\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023450851440429688\n", + "detect_scores: The original Mickey Mouse character, created by W\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006269931793212891\n", + "detect_scores: Michael Vick was a professional American football\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004467010498046875\n", + "detect_scores: The Columbia River starts in the Rocky Mountains \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6539-6549: ` implement`\n", + "Group 2 found at 6549-6559: ` implement`\n", + "\n", + "Group 1 found at 10520-10530: `agreement `\n", + "Group 2 found at 10530-10540: `agreement `\n", + "\n", + "Group 1 found at 10542-10551: `solution `\n", + "Group 2 found at 10551-10560: `solution `\n", + "(0, 58, 58)\n", + "detect_scores time: 1.1779561042785645\n", + "detect_scores: The Harry Potter series, written by J.K. Rowling,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9512-9523: `conference `\n", + "Group 2 found at 9523-9534: `conference `\n", + "(0, 22, 22)\n", + "detect_scores time: 0.9005732536315918\n", + "detect_scores: In Barbados, the official and legal tender is kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0054950714111328125\n", + "detect_scores: Angelina Jolie, born Angela Evangeline Assad on J\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0060689449310302734\n", + "detect_scores: Ninevah City does not exist as a recognized locat\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00922536849975586\n", + "detect_scores: Eowyn is a character from J.R.R. Tolkien's Middle\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007176876068115234\n", + "detect_scores: Eva Perón, also known as Evita and the First Lady\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003345012664794922\n", + "detect_scores: The Baltimore Ravens won the Super Bowl in 2013. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0025832653045654297\n", + "detect_scores: Ohio is often regarded as a Midwestern state in t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6943-6951: `parents `\n", + "Group 2 found at 6951-6959: `parents `\n", + "\n", + "Group 1 found at 8758-8767: `s formula`\n", + "Group 2 found at 8767-8776: `s formula`\n", + "\n", + "Group 1 found at 9413-9420: `l seque`\n", + "Group 2 found at 9420-9427: `l seque`\n", + "\n", + "Group 1 found at 9550-9565: `ation authentic`\n", + "Group 2 found at 9565-9580: `ation authentic`\n", + "(0, 78, 78)\n", + "detect_scores time: 1.158060073852539\n", + "detect_scores: Cristiano Ronaldo currently plays for the club Ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002877950668334961\n", + "detect_scores: As of my last update in 2023, Michigan operates o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0024497509002685547\n", + "detect_scores: John Tyler served as the 10th President of the Un\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8115-8121: `about `\n", + "Group 2 found at 8121-8127: `about `\n", + "ignored: foreverforeverforever\n", + "(0, 12, 12)\n", + "detect_scores time: 1.153001308441162\n", + "detect_scores: In Jamaica, the official and legal tender used fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007230997085571289\n", + "detect_scores: Jay Gould Jr., who was also known as \"Jungle Jim\"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005522966384887695\n", + "detect_scores: I'm sorry, but there are no public records or rep\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014607906341552734\n", + "detect_scores: The Carolina Panthers made it to the Super Bowl f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015518665313720703\n", + "detect_scores: As of my last update, there hasn't been a recent \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005208015441894531\n", + "detect_scores: Helen Flanagan is a former Irish television prese\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008213043212890625\n", + "detect_scores: The Tennessee River originates in the Appalachian\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004954099655151367\n", + "detect_scores: Corey Taylor, the lead vocalist of Slipknot and S\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0038559436798095703\n", + "detect_scores: The President of the United States who served imm\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0026979446411132812\n", + "detect_scores: Kate Gosselin, known for her reality television s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007969141006469727\n", + "detect_scores: The United States Government operates under a fed\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006161928176879883\n", + "detect_scores: Mount Lassen, often referred to as simply \"Lassen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009065866470336914\n", + "detect_scores: The State Motto of Ohio is \"With God, all things \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023500919342041016\n", + "detect_scores: Wolfgang Amadeus Mozart, a prolific and influenti\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0073032379150390625\n", + "detect_scores: The Kennedy Family, as commonly known due to its \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.1972332000732422\n", + "detect_scores: The Barcelona Airport that's nearest to Port of B\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010902166366577148\n", + "detect_scores: Adolf Hitler, the leader of Nazi Germany, initiat\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007839202880859375\n", + "detect_scores: Canada is part of the North American continent. I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022699832916259766\n", + "detect_scores: George Wilson is best known as the character from\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004731893539428711\n", + "detect_scores: Adolf Hitler, born on April 20th, 1889 in Braunau\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.053830862045288086\n", + "detect_scores: After the Iranian Revolution in 1979, Iran establ\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005715847015380859\n", + "detect_scores: Harper Lee attended Monroeville High School in Al\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001689910888671875\n", + "detect_scores: J.R.R. Tolkien attended Exeter College at the Uni\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022139549255371094\n", + "detect_scores: Wassily Kandinsky was a Russian painter and art t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009192943572998047\n", + "detect_scores: Antoni Gaudí, the renowned Catalan architect know\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03431510925292969\n", + "detect_scores: Paris offers an array of accommodation options to\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7427-7433: `watch `\n", + "Group 2 found at 7433-7439: `watch `\n", + "\n", + "Group 1 found at 7544-7551: ` hammer`\n", + "Group 2 found at 7551-7558: ` hammer`\n", + "\n", + "Group 1 found at 10152-10160: `rs scala`\n", + "Group 2 found at 10160-10168: `rs scala`\n", + "\n", + "Group 1 found at 10280-10287: `meters `\n", + "Group 2 found at 10287-10294: `meters `\n", + "(0, 56, 56)\n", + "detect_scores time: 1.1015076637268066\n", + "detect_scores: Benjamin Franklin's first wife was Deborah Read. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028700828552246094\n", + "detect_scores: The largest and most populous city in Spain is Ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001132965087890625\n", + "detect_scores: Pudge Rodriguez is a former professional baseball\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029740333557128906\n", + "detect_scores: The Milwaukee Brewers' home ballpark, as of my la\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005935192108154297\n", + "detect_scores: The Gallipoli Campaign, also known as the Battle \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014130830764770508\n", + "detect_scores: Shakira Isabel Mebarak Ripoll, born on February 2\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 428-433: `Waka `\n", + "Group 2 found at 433-438: `Waka `\n", + "(0, 10, 10)\n", + "detect_scores time: 0.004602193832397461\n", + "detect_scores: Ian Holm portrayed Bilbo Baggins, a central chara\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008280277252197266\n", + "detect_scores: The Tennessee River is a major waterway in the so\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01037907600402832\n", + "detect_scores: Utah's State Capitol, located in Salt Lake City, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010052919387817383\n", + "detect_scores: Benjamin Franklin, one of the Founding Fathers of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.0520801544189453\n", + "detect_scores: Jeremy Lin played for the Houston Rockets in the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004023075103759766\n", + "detect_scores: Steve Nash was Canadian by birth. He holds both A\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003859996795654297\n", + "detect_scores: As my knowledge is current only up to early 2023,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028929710388183594\n", + "detect_scores: France primarily speaks French, which is a Romanc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.032971858978271484\n", + "detect_scores: Martin Luther King Jr. earned a doctorate in syst\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014142990112304688\n", + "detect_scores: St. Louis, often referred to as Saint Louie or Th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021500587463378906\n", + "detect_scores: Peyton Manning's father, John Henry \"Jack\" Mannin\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2320-2330: ` identical`\n", + "Group 2 found at 2330-2340: ` identical`\n", + "\n", + "Group 1 found at 2365-2371: ` equal`\n", + "Group 2 found at 2371-2377: ` equal`\n", + "\n", + "Group 1 found at 5116-5125: `s concept`\n", + "Group 2 found at 5125-5134: `s concept`\n", + "\n", + "Group 1 found at 5686-5691: `e hat`\n", + "Group 2 found at 5691-5696: `e hat`\n", + "\n", + "Group 1 found at 10187-10195: `ity grav`\n", + "Group 2 found at 10195-10203: `ity grav`\n", + "\n", + "Group 1 found at 10225-10234: `magnetic `\n", + "Group 2 found at 10234-10243: `magnetic `\n", + "(0, 94, 94)\n", + "detect_scores time: 1.2651090621948242\n", + "detect_scores: The official currency used in Peru is called the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 9.512901306152344e-05\n", + "detect_scores: The United Kingdom is comprised of four constitue\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4481-4487: ` plain`\n", + "Group 2 found at 4487-4493: ` plain`\n", + "\n", + "Group 1 found at 7403-7409: `hills `\n", + "Group 2 found at 7409-7415: `hills `\n", + "(0, 24, 24)\n", + "detect_scores time: 1.000769853591919\n", + "detect_scores: Robert F. Kennedy attended several educational in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01781177520751953\n", + "detect_scores: The Fukushima Daiichi Nuclear Power Station, also\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8132-8138: ` popup`\n", + "Group 2 found at 8138-8144: ` popup`\n", + "\n", + "Group 1 found at 8188-8196: `loading `\n", + "Group 2 found at 8196-8204: `loading `\n", + "\n", + "Group 1 found at 8307-8314: `tion ac`\n", + "Group 2 found at 8314-8321: `tion ac`\n", + "(0, 42, 42)\n", + "detect_scores time: 1.1492161750793457\n", + "detect_scores: Los Angeles, California operates in the Pacific T\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0032236576080322266\n", + "detect_scores: If you are planning a trip from the United States\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8858-8864: `laces `\n", + "Group 2 found at 8864-8870: `laces `\n", + "\n", + "Group 1 found at 9640-9650: ` dimension`\n", + "Group 2 found at 9650-9660: ` dimension`\n", + "\n", + "Group 1 found at 10610-10617: ` parsec`\n", + "Group 2 found at 10617-10624: ` parsec`\n", + "\n", + "Group 1 found at 10744-10750: `e Tonn`\n", + "Group 2 found at 10750-10756: `e Tonn`\n", + "(0, 58, 58)\n", + "detect_scores time: 1.15114426612854\n", + "detect_scores: As my knowledge was last updated in 2023, I canno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017857551574707031\n", + "detect_scores: In Scotland, the primary language spoken is Engli\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014410018920898438\n", + "detect_scores: John Dalton was an English chemist, physicist and\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011740922927856445\n", + "detect_scores: Glastonbury, England can be found in Somerset. It\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017979145050048828\n", + "detect_scores: The American Federation of Labor (AFL) was founde\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017566919326782227\n", + "detect_scores: Thomas Hobbes, the influential English philosophe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8545-8551: ` orbit`\n", + "Group 2 found at 8551-8557: ` orbit`\n", + "\n", + "Group 1 found at 8839-8846: `second `\n", + "Group 2 found at 8846-8853: `second `\n", + "\n", + "Group 1 found at 11423-11432: `er debugg`\n", + "Group 2 found at 11432-11441: `er debugg`\n", + "(0, 44, 44)\n", + "detect_scores time: 1.2709717750549316\n", + "detect_scores: John F. Kennedy, the 35th President of the United\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5122-5129: ` effect`\n", + "Group 2 found at 5129-5136: ` effect`\n", + "\n", + "Group 1 found at 7048-7056: `ability `\n", + "Group 2 found at 7056-7064: `ability `\n", + "\n", + "Group 1 found at 8145-8150: `e rat`\n", + "Group 2 found at 8150-8155: `e rat`\n", + "\n", + "Group 1 found at 8231-8242: ` coordinate`\n", + "Group 2 found at 8242-8253: ` coordinate`\n", + "\n", + "Group 1 found at 9362-9368: ` loose`\n", + "Group 2 found at 9368-9374: ` loose`\n", + "\n", + "Group 1 found at 9545-9552: `e petit`\n", + "Group 2 found at 9552-9559: `e petit`\n", + "\n", + "Group 1 found at 9612-9621: `division `\n", + "Group 2 found at 9621-9630: `division `\n", + "\n", + "Group 1 found at 10948-10959: ` substitute`\n", + "Group 2 found at 10959-10970: ` substitute`\n", + "(0, 128, 128)\n", + "detect_scores time: 1.1061551570892334\n", + "detect_scores: Montreal is a city in the Canadian province of Qu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023000240325927734\n", + "detect_scores: Franz Liszt, the renowned 19th-century Hungarian \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03344297409057617\n", + "detect_scores: Argentina shares its borders with five South Amer\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001461029052734375\n", + "detect_scores: The primary official language spoken by the major\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003484010696411133\n", + "detect_scores: The predominant religion in Israel is Judaism. Ap\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004678010940551758\n", + "detect_scores: As of my last update in April 2023, Rodney Harris\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007708072662353516\n", + "detect_scores: Toronto operates on Eastern Standard Time (EST) d\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011777162551879883\n", + "detect_scores: Robert Burns, also known as Rabbie Burns and the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8064-8069: `verb `\n", + "Group 2 found at 8069-8074: `verb `\n", + "\n", + "Group 1 found at 9312-9318: ` route`\n", + "Group 2 found at 9318-9324: ` route`\n", + "(0, 22, 22)\n", + "detect_scores time: 0.9463400840759277\n", + "detect_scores: As of my last update in April 2023, the Utah Atto\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016078948974609375\n", + "detect_scores: The Carolina Panthers are coached by Pat McAfee a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037398338317871094\n", + "detect_scores: South Africa shares its international land bounda\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03226900100708008\n", + "detect_scores: Mark Hamill reprised his role as Darth Vader in \"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012715816497802734\n", + "detect_scores: The Kentucky State Bird is the Northern Cardinal.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004279613494873047\n", + "detect_scores: The Canadian Prime Minister in the year 1993 was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021829605102539062\n", + "detect_scores: I cannot respond to questions on election-related\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00020313262939453125\n", + "detect_scores: The United Kingdom is a multilingual country with\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3890-3900: `tability s`\n", + "Group 2 found at 3900-3910: `tability s`\n", + "\n", + "Group 1 found at 8480-8486: `metre `\n", + "Group 2 found at 8486-8492: `metre `\n", + "\n", + "Group 1 found at 8590-8596: ` arrow`\n", + "Group 2 found at 8596-8602: ` arrow`\n", + "\n", + "Group 1 found at 10473-10481: `e entitl`\n", + "Group 2 found at 10481-10489: `e entitl`\n", + "(0, 60, 60)\n", + "detect_scores time: 1.2629830837249756\n", + "detect_scores: Pope John Paul II, born Karol Józef Wojtyła on Ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014635086059570312\n", + "detect_scores: Franklin Pierce, who served as the 14th President\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9019-9025: `cycle `\n", + "Group 2 found at 9025-9031: `cycle `\n", + "\n", + "Group 1 found at 9487-9495: `ity grav`\n", + "Group 2 found at 9495-9503: `ity grav`\n", + "\n", + "Group 1 found at 10048-10053: `mail `\n", + "Group 2 found at 10053-10058: `mail `\n", + "\n", + "Group 1 found at 11655-11663: ` feeling`\n", + "Group 2 found at 11663-11671: ` feeling`\n", + "(0, 54, 54)\n", + "detect_scores time: 1.2945899963378906\n", + "detect_scores: As of my knowledge cutoff in early 2023, the most\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0067179203033447266\n", + "detect_scores: Michelangelo Buonarroti, one of the most prominen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8985-8996: `variance co`\n", + "Group 2 found at 8996-9007: `variance co`\n", + "(0, 22, 22)\n", + "detect_scores time: 1.1664609909057617\n", + "detect_scores: Monsanto, now owned by Bayer since its acquisitio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009122848510742188\n", + "detect_scores: Woody Harrelson played the character \"Steve Holt\"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008988380432128906\n", + "detect_scores: In Sweden, the primary languages spoken are Swedi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005664825439453125\n", + "detect_scores: The Philippines operates under a democratic and c\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012829303741455078\n", + "detect_scores: Mitt Romney attended Brigham Young University (BY\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015324115753173828\n", + "detect_scores: Ibrahim Afellay hails from Tétouan, which is a ci\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001622915267944336\n", + "detect_scores: In New Zealand, the official currencies are the N\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0051116943359375\n", + "detect_scores: When planning activities for children visiting As\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8616-8621: ` sand`\n", + "Group 2 found at 8621-8626: ` sand`\n", + "\n", + "Group 1 found at 9312-9321: `magnetic `\n", + "Group 2 found at 9321-9330: `magnetic `\n", + "\n", + "Group 1 found at 10778-10785: `en elev`\n", + "Group 2 found at 10785-10792: `en elev`\n", + "(0, 42, 42)\n", + "detect_scores time: 1.111748218536377\n", + "detect_scores: Kurt Russell played the character named \"Kurt War\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2295-2302: `s exist`\n", + "Group 2 found at 2302-2309: `s exist`\n", + "\n", + "Group 1 found at 6957-6964: ` anchor`\n", + "Group 2 found at 6964-6971: ` anchor`\n", + "\n", + "Group 1 found at 8250-8256: ` aware`\n", + "Group 2 found at 8256-8262: ` aware`\n", + "(0, 40, 40)\n", + "detect_scores time: 1.1868939399719238\n", + "detect_scores: Pablo Picasso, the renowned Spanish painter and s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2775-2783: ` perfect`\n", + "Group 2 found at 2783-2791: ` perfect`\n", + "\n", + "Group 1 found at 8031-8040: `s upgrade`\n", + "Group 2 found at 8040-8049: `s upgrade`\n", + "\n", + "Group 1 found at 8181-8192: `evolution r`\n", + "Group 2 found at 8192-8203: `evolution r`\n", + "\n", + "Group 1 found at 10809-10814: `chip `\n", + "Group 2 found at 10814-10819: `chip `\n", + "(0, 66, 66)\n", + "detect_scores time: 1.166661024093628\n", + "detect_scores: When traveling from the United States or most oth\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00641322135925293\n", + "detect_scores: As of my last update in April 2023, Raúl Ibañez w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004781961441040039\n", + "detect_scores: Actor Samuel L. Jackson portrays the character of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010230541229248047\n", + "detect_scores: As of my last update in early 2023, Michelle Pfei\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028810501098632812\n", + "detect_scores: Laura Ingalls Wilder is most famously known as an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.031074047088623047\n", + "detect_scores: As of my last update in April 2023, Dwyane Wade r\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004998922348022461\n", + "detect_scores: I'm sorry, but as a large language model develope\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004081010818481445\n", + "detect_scores: Madonna Louise Ciccone, known professionally as M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010815858840942383\n", + "detect_scores: The capital city of Brazil is Brasília. It was of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002006053924560547\n", + "detect_scores: John Stockton, the legendary basketball player kn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016106843948364258\n", + "detect_scores: Mexico uses the Mexican Peso as its official curr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018978118896484375\n", + "detect_scores: As of my knowledge cutoff in early 2023, Chrysler\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011578083038330078\n", + "detect_scores: Gregor Mendel, often referred to as the \"Father o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0520169734954834\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017778873443603516\n", + "detect_scores: Joe Biden was the individual who ran as Barack Ob\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001747608184814453\n", + "detect_scores: People in the UK primarily speak English. However\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005642890930175781\n", + "detect_scores: South Korea operates under a presidential represe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016009092330932617\n", + "detect_scores: Ben Franklin, one of the Founding Fathers of the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005393028259277344\n", + "detect_scores: The Sri Lankan capital is Colombo. It serves as t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0060977935791015625\n", + "detect_scores: Cyprus uses the Euro (€) as its official currency\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006082057952880859\n", + "detect_scores: Johnny Depp is known for playing a variety of gui\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020151138305664062\n", + "detect_scores: Dustin Johnson, born on February 20, 1987, in Edm\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004568815231323242\n", + "detect_scores: I'm sorry, but as of my last update in 2023, Cher\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018382072448730469\n", + "detect_scores: The University of Oregon State, often referred to\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.045601844787597656\n", + "detect_scores: The official currency of Turkey is named as Turki\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010509490966796875\n", + "detect_scores: Mark Zuckerberg attended Hillside Elementary Scho\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006001949310302734\n", + "detect_scores: As of my knowledge cutoff in March 2023, Kate Mid\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.021928071975708008\n", + "detect_scores: Marc Chagall was a Russian-French artist renowned\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007223844528198242\n", + "detect_scores: Billy Dee Williams played the role of Lando Calri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004169940948486328\n", + "detect_scores: Wilfred Owen, the renowned British poet known for\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "ignored: eighteight\n", + "ignored: cancelcancel\n", + "(0, 0, 0)\n", + "detect_scores time: 1.090409278869629\n", + "detect_scores: AirTran Airways, which operated from 1971 until i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0044209957122802734\n", + "detect_scores: The City of Paris gets its name from several poss\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8792-8800: `ability `\n", + "Group 2 found at 8800-8808: `ability `\n", + "(0, 16, 16)\n", + "detect_scores time: 1.1411540508270264\n", + "detect_scores: Sandra Bullock, the acclaimed actress and filmmak\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004176139831542969\n", + "detect_scores: Olympic National Park, often referred to as the \"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3791-3799: `ability `\n", + "Group 2 found at 3799-3807: `ability `\n", + "\n", + "Group 1 found at 4470-4479: ` commence`\n", + "Group 2 found at 4479-4488: ` commence`\n", + "\n", + "Group 1 found at 6569-6576: `avour s`\n", + "Group 2 found at 6576-6583: `avour s`\n", + "(0, 48, 48)\n", + "detect_scores time: 0.4386768341064453\n", + "detect_scores: Yale University is located in New Haven, Connecti\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 3.0994415283203125e-05\n", + "detect_scores: Thomas Paine died on June 8, 1799. He passed away\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003770112991333008\n", + "detect_scores: Barack Hussein Obama Sr. was born on December 1, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00034499168395996094\n", + "detect_scores: The New England Patriots' current home field as o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018062591552734375\n", + "detect_scores: Kate Chopin, born Katherine O'Flaherty on Februar\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02364516258239746\n", + "detect_scores: Bill Clinton attended Georgetown University for h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033941268920898438\n", + "detect_scores: Staffordshire Terrier, also known as the American\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3930-3939: `e retriev`\n", + "Group 2 found at 3939-3948: `e retriev`\n", + "\n", + "Group 1 found at 6110-6116: `cards `\n", + "Group 2 found at 6116-6122: `cards `\n", + "(0, 30, 30)\n", + "detect_scores time: 1.1157770156860352\n", + "detect_scores: Michael J. Fox's biological mother was Phyllis An\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0027430057525634766\n", + "detect_scores: Sanjaya Gupta attended medical schools and reside\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0055201053619384766\n", + "detect_scores: The North American Free Trade Agreement (NAFTA) o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011110067367553711\n", + "detect_scores: The Cayman Islands are not a part of any continen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005852222442626953\n", + "detect_scores: In Brazil, the primary official and national lang\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002354145050048828\n", + "detect_scores: The Pittsburgh Steelers' most recent Super Bowl w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002562999725341797\n", + "detect_scores: Switzerland is a multilingual country with four o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.021759033203125\n", + "detect_scores: Barack Obama represents the Democratic Party in A\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001959085464477539\n", + "detect_scores: Emperor Constantine, also known as Constantius Ch\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015605926513671875\n", + "detect_scores: Mali, often spelled \"Mali,\" is a landlocked count\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003921031951904297\n", + "detect_scores: As of my last update in 2023, I cannot provide re\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004400968551635742\n", + "detect_scores: The very first Microsoft Headquarters, known as M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007301807403564453\n", + "detect_scores: John Steinbeck, the acclaimed American author kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003641843795776367\n", + "detect_scores: Niels Bohr, a Danish physicist who made foundatio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00991678237915039\n", + "detect_scores: Ryan Reynold, the well-known actor and comedian, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00275421142578125\n", + "detect_scores: Newt Gingrich's ex-wife, whom he was married to f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007011890411376953\n", + "detect_scores: Antonio Vivaldi was a Baroque composer and violin\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0073032379150390625\n", + "detect_scores: As of my last update in April 2023, specific pers\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004671335220336914\n", + "detect_scores: Samuel Langhorne Clemens, better recognized by hi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4086-4093: ` decent`\n", + "Group 2 found at 4093-4100: ` decent`\n", + "\n", + "Group 1 found at 8602-8607: `a vit`\n", + "Group 2 found at 8607-8612: `a vit`\n", + "(0, 24, 24)\n", + "detect_scores time: 0.7645280361175537\n", + "detect_scores: After William Henry Harrison, the 9th President o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008311271667480469\n", + "detect_scores: George W. Bush's memoir, titled \"Decision Points,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022802352905273438\n", + "detect_scores: Antoine Lavoisier, often regarded as the father o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006094694137573242\n", + "detect_scores: The Queen consort to King George VI was Elizabeth\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0027561187744140625\n", + "detect_scores: The Seattle Seahawks went to their first Super Bo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011208057403564453\n", + "detect_scores: Sami Yusuf, a well-known British singer and music\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006936788558959961\n", + "detect_scores: The official languages of Brazil are Portuguese a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014719963073730469\n", + "detect_scores: The New York Mets' most recent World Series win w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023889541625976562\n", + "detect_scores: Florida Panther National Wildlife Refuge, which i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008475065231323242\n", + "detect_scores: New York University (NYU) was not the brainchild \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3949-3957: `fense de`\n", + "Group 2 found at 3957-3965: `fense de`\n", + "\n", + "Group 1 found at 3997-4004: `action `\n", + "Group 2 found at 4004-4011: `action `\n", + "\n", + "Group 1 found at 5338-5346: `onym hyp`\n", + "Group 2 found at 5346-5354: `onym hyp`\n", + "\n", + "Group 1 found at 6529-6540: `s mechanism`\n", + "Group 2 found at 6540-6551: `s mechanism`\n", + "\n", + "Group 1 found at 6695-6702: `s rival`\n", + "Group 2 found at 6702-6709: `s rival`\n", + "\n", + "Group 1 found at 7888-7895: ` heaven`\n", + "Group 2 found at 7895-7902: ` heaven`\n", + "\n", + "Group 1 found at 9105-9112: `dermis `\n", + "Group 2 found at 9112-9119: `dermis `\n", + "\n", + "Group 1 found at 9460-9469: ` rotation`\n", + "Group 2 found at 9469-9478: ` rotation`\n", + "ignored: tytwentytwen\n", + "\n", + "Group 1 found at 10684-10693: `particle `\n", + "Group 2 found at 10693-10702: `particle `\n", + "(0, 146, 146)\n", + "detect_scores time: 1.04197096824646\n", + "detect_scores: North Africa comprises several countries along it\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6316-6326: `s gradient`\n", + "Group 2 found at 6326-6336: `s gradient`\n", + "\n", + "Group 1 found at 6827-6834: `s tempo`\n", + "Group 2 found at 6834-6841: `s tempo`\n", + "\n", + "Group 1 found at 9648-9654: ` locks`\n", + "Group 2 found at 9654-9660: ` locks`\n", + "(0, 46, 46)\n", + "detect_scores time: 1.0469908714294434\n", + "detect_scores: John Mayer is a talented American singer-songwrit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6862-6869: `meters `\n", + "Group 2 found at 6869-6876: `meters `\n", + "\n", + "Group 1 found at 7726-7731: `fire `\n", + "Group 2 found at 7731-7736: `fire `\n", + "(0, 24, 24)\n", + "detect_scores time: 1.0707497596740723\n", + "detect_scores: Patrick Swayze, the acclaimed actor known for his\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007450580596923828\n", + "detect_scores: Barack Obama is a distinguished alumnus of the Un\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010256052017211914\n", + "detect_scores: The Jamaican currency is known as the Jamaican Do\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015208721160888672\n", + "detect_scores: The Arizona Cardinals Stadium, known as State Far\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020720958709716797\n", + "detect_scores: Sir Isaac Newton's theories primarily revolve aro\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9164-9175: `s alignment`\n", + "Group 2 found at 9175-9186: `s alignment`\n", + "\n", + "Group 1 found at 9491-9503: `s allocation`\n", + "Group 2 found at 9503-9515: `s allocation`\n", + "\n", + "Group 1 found at 9716-9722: `s flow`\n", + "Group 2 found at 9722-9728: `s flow`\n", + "\n", + "Group 1 found at 9830-9836: `s sign`\n", + "Group 2 found at 9836-9842: `s sign`\n", + "(0, 70, 70)\n", + "detect_scores time: 1.2048070430755615\n", + "detect_scores: Pablo Picasso, one of the most influential artist\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05286598205566406\n", + "detect_scores: As of the knowledge cutoff date, Pennsylvania's p\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006058931350708008\n", + "detect_scores: I cannot provide real-time or current event infor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029251575469970703\n", + "detect_scores: Queen Isabella I of Castile's (Isabella the Catho\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01311802864074707\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft, I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037202835083007812\n", + "detect_scores: As of my last update, Judaism remains by far Isra\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3607-3616: ` definite`\n", + "Group 2 found at 3616-3625: ` definite`\n", + "\n", + "Group 1 found at 3629-3638: ` absolute`\n", + "Group 2 found at 3638-3647: ` absolute`\n", + "\n", + "Group 1 found at 7614-7627: `conductivity `\n", + "Group 2 found at 7627-7640: `conductivity `\n", + "\n", + "Group 1 found at 8596-8607: `components `\n", + "Group 2 found at 8607-8618: `components `\n", + "\n", + "Group 1 found at 9023-9033: `planes air`\n", + "Group 2 found at 9033-9043: `planes air`\n", + "(0, 104, 104)\n", + "detect_scores time: 1.0473368167877197\n", + "detect_scores: The Thames River, known as one of London's most i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6596-6602: `lists `\n", + "Group 2 found at 6602-6608: `lists `\n", + "\n", + "Group 1 found at 7570-7579: `mum extre`\n", + "Group 2 found at 7579-7588: `mum extre`\n", + "(0, 30, 30)\n", + "detect_scores time: 1.0741569995880127\n", + "detect_scores: In Pakistan, the primary languages spoken are Urd\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005251169204711914\n", + "detect_scores: Kim Jong-il, the former leader of North Korea, di\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005110025405883789\n", + "detect_scores: The FedEx Cup was awarded to Rickie Fowler in the\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02860093116760254\n", + "detect_scores: The main languages officially recognized and wide\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003016233444213867\n", + "detect_scores: The character Alf from the TV Show \"Frasier\" was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010056495666503906\n", + "detect_scores: Gerald Ford served as the Vice President of the U\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0069158077239990234\n", + "detect_scores: Raphael Sanzio, known simply as Raffaello or more\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009756803512573242\n", + "detect_scores: In Malta, the primary languages spoken are Maltes\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.039809226989746094\n", + "detect_scores: King Louis XIV of France, also known as the Sun K\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005063056945800781\n", + "detect_scores: Shane Douglas \"Shannon\" Hoon died on April 14, 20\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002905130386352539\n", + "detect_scores: Nicholas Copernicus was a Renaissance-era mathema\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016250133514404297\n", + "detect_scores: Manny Ramírez, a professional baseball player kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8729-8740: `variance co`\n", + "Group 2 found at 8740-8751: `variance co`\n", + "\n", + "Group 1 found at 9852-9864: `es eigenvalu`\n", + "Group 2 found at 9864-9876: `es eigenvalu`\n", + "\n", + "Group 1 found at 10631-10639: `s meteor`\n", + "Group 2 found at 10639-10647: `s meteor`\n", + "(0, 62, 62)\n", + "detect_scores time: 1.1146180629730225\n", + "detect_scores: The Appalachian Mountains, often referred to as t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5135-5140: ` cove`\n", + "Group 2 found at 5140-5145: ` cove`\n", + "\n", + "Group 1 found at 7552-7562: `ers debugg`\n", + "Group 2 found at 7562-7572: `ers debugg`\n", + "\n", + "Group 1 found at 9495-9501: `s talk`\n", + "Group 2 found at 9501-9507: `s talk`\n", + "\n", + "Group 1 found at 10037-10052: `ation exponenti`\n", + "Group 2 found at 10052-10067: `ation exponenti`\n", + "(0, 72, 72)\n", + "detect_scores time: 1.1109542846679688\n", + "detect_scores: Jerry Brown, who served as the Governor of Califo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008358955383300781\n", + "detect_scores: The Pacific Ocean surrounds Hawaii. Specifically,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006721019744873047\n", + "detect_scores: The most commonly spoken native language in Argen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037131309509277344\n", + "detect_scores: Tunisia is a country located in North Africa, bor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007838964462280273\n", + "detect_scores: St. Trinian's is a series of British comic books \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0067861080169677734\n", + "detect_scores: Mexico operates under a federal presidential repr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00502467155456543\n", + "detect_scores: The Dominican Republic uses the Dominican Peso as\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002980232238769531\n", + "detect_scores: Michael Jackson, known as the \"King of Pop,\" was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6649-6655: ` loose`\n", + "Group 2 found at 6655-6661: ` loose`\n", + "\n", + "Group 1 found at 6877-6882: `owed `\n", + "Group 2 found at 6882-6887: `owed `\n", + "(0, 22, 22)\n", + "detect_scores time: 1.1527268886566162\n", + "detect_scores: I cannot respond to questions on identities. Plea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001971721649169922\n", + "detect_scores: The three official languages of Belgium are Dutch\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5452-5457: `s god`\n", + "Group 2 found at 5457-5462: `s god`\n", + "\n", + "Group 1 found at 6937-6942: ` `\n", + "Group 2 found at 6942-6962: ` `\n", + "(0, 35, 35)\n", + "detect_scores time: 0.860579252243042\n", + "detect_scores: Frank Baum, the author famous for writing \"The Wo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0024979114532470703\n", + "detect_scores: Tunis, also known as Tunisia's capital city and l\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002516031265258789\n", + "detect_scores: Mary Wollstonecraft was a pioneering advocate of \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008949995040893555\n", + "detect_scores: Icelanders primarily speak Icelandic, which is a \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036749839782714844\n", + "detect_scores: In Scotland, the primary languages spoken are Eng\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031099319458007812\n", + "detect_scores: Mark Zuckerberg attended the private, co-educatio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009677410125732422\n", + "detect_scores: Shaquille O'Neal, known as \"Shaq,\" entered the NB\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00138092041015625\n", + "detect_scores: The character Darth Vader, a central figure from \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003284931182861328\n", + "detect_scores: Louis Armstrong was a legendary jazz trumpeter, c\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2923-2932: `e infinit`\n", + "Group 2 found at 2932-2941: `e infinit`\n", + "\n", + "Group 1 found at 6799-6804: `s sea`\n", + "Group 2 found at 6804-6809: `s sea`\n", + "\n", + "Group 1 found at 6892-6898: `es cav`\n", + "Group 2 found at 6898-6904: `es cav`\n", + "\n", + "Group 1 found at 7330-7335: `shop `\n", + "Group 2 found at 7335-7340: `shop `\n", + "\n", + "Group 1 found at 8206-8212: `staff `\n", + "Group 2 found at 8212-8218: `staff `\n", + "(0, 62, 62)\n", + "detect_scores time: 0.9613156318664551\n", + "detect_scores: Germany uses the Euro (€) as its official and leg\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016598701477050781\n", + "detect_scores: King Solomon, known for his wisdom and as a ruler\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014706850051879883\n", + "detect_scores: Andy Irvine, the Irish musician known for his wor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005910158157348633\n", + "detect_scores: Adolf Hitler, the infamous dictator of Germany du\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004178285598754883\n", + "detect_scores: As an AI developed by Microsoft, I cannot provide\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0032410621643066406\n", + "detect_scores: The Appalachian Mountains, often referred to as t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "ignored: greatgreat\n", + "\n", + "Group 1 found at 6766-6777: `scension de`\n", + "Group 2 found at 6777-6788: `scension de`\n", + "\n", + "Group 1 found at 7954-7960: `cycle `\n", + "Group 2 found at 7960-7966: `cycle `\n", + "\n", + "Group 1 found at 9024-9031: `tion ac`\n", + "Group 2 found at 9031-9038: `tion ac`\n", + "\n", + "Group 1 found at 10277-10282: `safe `\n", + "Group 2 found at 10282-10287: `safe `\n", + "\n", + "Group 1 found at 10908-10916: `s figure`\n", + "Group 2 found at 10916-10924: `s figure`\n", + "(0, 74, 74)\n", + "detect_scores time: 1.1790239810943604\n", + "detect_scores: Spain uses the Euro (€) as its official currency.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0073740482330322266\n", + "detect_scores: As of my knowledge cutoff in 2023, Major League B\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023381710052490234\n", + "detect_scores: I'm sorry, but as a language model developed by O\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0053272247314453125\n", + "detect_scores: The most common official and spoken language in N\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004468202590942383\n", + "detect_scores: Benjamin Franklin attended the Boston Latin Schoo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005063056945800781\n", + "detect_scores: ElectroLUX Corporation, known for its brand of ho\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01648402214050293\n", + "detect_scores: The Houston Time Zone corresponds to the Central \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0040090084075927734\n", + "detect_scores: Shakespeare's first wife, Anne Hathaway, is not a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004153013229370117\n", + "detect_scores: Mount St. Helens, an active stratovolcano situate\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0076067447662353516\n", + "detect_scores: St. Paul, Minnesota is located within Ramsey Coun\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003116130828857422\n", + "detect_scores: King Henry VIII's only legitimate male heir, who \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5469-5475: `laces `\n", + "Group 2 found at 5475-5481: `laces `\n", + "\n", + "Group 1 found at 5533-5540: `s clasp`\n", + "Group 2 found at 5540-5547: `s clasp`\n", + "(0, 26, 26)\n", + "detect_scores time: 0.6608469486236572\n", + "detect_scores: In the television series Smallville, Lex Luthor i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006849765777587891\n", + "detect_scores: The official currency of the Czech Republic is th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003142118453979492\n", + "detect_scores: The LA Kings' most recent win in a postseason ser\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006036996841430664\n", + "detect_scores: Spencer Pratt attended several educational instit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008460044860839844\n", + "detect_scores: Abraham Lincoln, the 16th President of the United\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 470-475: `or po`\n", + "Group 2 found at 475-480: `or po`\n", + "\n", + "Group 1 found at 6560-6569: ` hangover`\n", + "Group 2 found at 6569-6578: ` hangover`\n", + "\n", + "Group 1 found at 9564-9569: `null `\n", + "Group 2 found at 9569-9574: `null `\n", + "(0, 38, 38)\n", + "detect_scores time: 0.8881587982177734\n", + "detect_scores: The current head coach of the Vancouver Canucks, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001013040542602539\n", + "detect_scores: C.S. Lewis, whose full name is CS (Clive Staples)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4713-4721: `e upgrad`\n", + "Group 2 found at 4721-4729: `e upgrad`\n", + "\n", + "Group 1 found at 5479-5489: `cessor suc`\n", + "Group 2 found at 5489-5499: `cessor suc`\n", + "\n", + "Group 1 found at 8450-8459: ` exponent`\n", + "Group 2 found at 8459-8468: ` exponent`\n", + "\n", + "Group 1 found at 10891-10896: `here `\n", + "Group 2 found at 10896-10901: `here `\n", + "\n", + "Group 1 found at 10931-10938: `body no`\n", + "Group 2 found at 10938-10945: `body no`\n", + "(0, 78, 78)\n", + "detect_scores time: 1.1494572162628174\n", + "detect_scores: In Peru, the primary languages spoken are Spanish\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002835988998413086\n", + "detect_scores: Arsenal Football Club, commonly known as Arsenal \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015195131301879883\n", + "detect_scores: As of my last update, Phoenix, Arizona operates o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017788410186767578\n", + "detect_scores: South Portland, Maine refers to a city located in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015552043914794922\n", + "detect_scores: Claudius Ptolemaeus, commonly known as Ptolemy, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3466-3471: `e cav`\n", + "Group 2 found at 3471-3476: `e cav`\n", + "(0, 10, 10)\n", + "detect_scores time: 1.0090088844299316\n", + "detect_scores: The name of Henry VIII's first wife was Catherine\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0072362422943115234\n", + "detect_scores: The Paraná River is one of the principal rivers i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.021778106689453125\n", + "detect_scores: Theodor Schwann, a renowned German physiologist a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 11237-11247: ` continent`\n", + "Group 2 found at 11247-11257: ` continent`\n", + "\n", + "Group 1 found at 11421-11434: `chemistry bio`\n", + "Group 2 found at 11434-11447: `chemistry bio`\n", + "(0, 46, 46)\n", + "detect_scores time: 1.2637441158294678\n", + "detect_scores: The Houston Rockets won their first NBA Champions\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007059574127197266\n", + "detect_scores: Most Russians reside within its European part, pa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00497889518737793\n", + "detect_scores: The Holy Roman Empire was not situated in a singl\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005819082260131836\n", + "detect_scores: In \"The Young And The Restless,\" Nicholas Newmann\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008919239044189453\n", + "detect_scores: The original creators and co-writers Matt Stone a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004383087158203125\n", + "detect_scores: Angelina Jolie's biological sibling, as publicly \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3773-3780: `writer `\n", + "Group 2 found at 3780-3787: `writer `\n", + "ignored: togethertogether\n", + "\n", + "Group 1 found at 5796-5802: ` cheer`\n", + "Group 2 found at 5802-5808: ` cheer`\n", + "\n", + "Group 1 found at 7508-7519: `s neighbour`\n", + "Group 2 found at 7519-7530: `s neighbour`\n", + "\n", + "Group 1 found at 7671-7681: `roid meteo`\n", + "Group 2 found at 7681-7691: `roid meteo`\n", + "\n", + "Group 1 found at 7704-7714: ` satellite`\n", + "Group 2 found at 7714-7724: ` satellite`\n", + "\n", + "Group 1 found at 7725-7732: ` rocket`\n", + "Group 2 found at 7732-7739: ` rocket`\n", + "\n", + "Group 1 found at 8074-8081: `er soon`\n", + "Group 2 found at 8081-8088: `er soon`\n", + "\n", + "Group 1 found at 8362-8370: ` similar`\n", + "Group 2 found at 8370-8378: ` similar`\n", + "\n", + "Group 1 found at 8922-8928: ` total`\n", + "Group 2 found at 8928-8934: ` total`\n", + "\n", + "Group 1 found at 11183-11192: `es pictur`\n", + "Group 2 found at 11192-11201: `es pictur`\n", + "(0, 162, 162)\n", + "detect_scores time: 1.1994600296020508\n", + "detect_scores: The headquarters of Bank of America are located i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004433870315551758\n", + "detect_scores: Japan operates under a parliamentary system and i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2118-2129: ` Geographic`\n", + "Group 2 found at 2129-2140: ` Geographic`\n", + "\n", + "Group 1 found at 8613-8625: `eitschrift Z`\n", + "Group 2 found at 8625-8637: `eitschrift Z`\n", + "(0, 46, 46)\n", + "detect_scores time: 0.7869839668273926\n", + "detect_scores: As of my last update in April 2023, Josh Hamilton\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.021338939666748047\n", + "detect_scores: Burundi is a small landlocked country in the Grea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6488-6495: `t rejec`\n", + "Group 2 found at 6495-6502: `t rejec`\n", + "\n", + "Group 1 found at 9478-9488: `ance lumin`\n", + "Group 2 found at 9488-9498: `ance lumin`\n", + "\n", + "Group 1 found at 9880-9885: `verb `\n", + "Group 2 found at 9885-9890: `verb `\n", + "\n", + "Group 1 found at 9901-9909: `article `\n", + "Group 2 found at 9909-9917: `article `\n", + "\n", + "Group 1 found at 10949-10960: ` arithmetic`\n", + "Group 2 found at 10960-10971: ` arithmetic`\n", + "\n", + "Group 1 found at 11230-11237: `meters `\n", + "Group 2 found at 11237-11244: `meters `\n", + "(0, 96, 96)\n", + "detect_scores time: 1.3029823303222656\n", + "detect_scores: As of my last update, Paul Ryan lived in Janesvil\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002432107925415039\n", + "detect_scores: Acadia University, known for its vibrant academic\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019180774688720703\n", + "detect_scores: F. Scott Fitzgerald was an American novelist and \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012839317321777344\n", + "detect_scores: TomTom's Western Europe coverage typically includ\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1541-1546: ` safe`\n", + "Group 2 found at 1546-1551: ` safe`\n", + "\n", + "Group 1 found at 3099-3105: `acks h`\n", + "Group 2 found at 3105-3111: `acks h`\n", + "\n", + "Group 1 found at 6323-6329: `le smi`\n", + "Group 2 found at 6329-6335: `le smi`\n", + "\n", + "Group 1 found at 7396-7405: `ctivity a`\n", + "Group 2 found at 7405-7414: `ctivity a`\n", + "\n", + "Group 1 found at 7815-7820: ` talk`\n", + "Group 2 found at 7820-7825: ` talk`\n", + "\n", + "Group 1 found at 8403-8410: `s angle`\n", + "Group 2 found at 8410-8417: `s angle`\n", + "\n", + "Group 1 found at 8674-8680: `light `\n", + "Group 2 found at 8680-8686: `light `\n", + "(0, 88, 88)\n", + "detect_scores time: 1.1589329242706299\n", + "detect_scores: The official and national languages recognized in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00392603874206543\n", + "detect_scores: In Spain, the primary language spoken is Spanish \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8325-8332: ` marine`\n", + "Group 2 found at 8332-8339: ` marine`\n", + "(0, 14, 14)\n", + "detect_scores time: 0.9699158668518066\n", + "detect_scores: Michael Crabtree is a former professional America\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3357-3362: `s con`\n", + "Group 2 found at 3362-3367: `s con`\n", + "\n", + "Group 1 found at 6373-6378: ` none`\n", + "Group 2 found at 6378-6383: ` none`\n", + "\n", + "Group 1 found at 8583-8591: ` measure`\n", + "Group 2 found at 8591-8599: ` measure`\n", + "\n", + "Group 1 found at 11312-11324: ` surrounding`\n", + "Group 2 found at 11324-11336: ` surrounding`\n", + "\n", + "Group 1 found at 11862-11868: ` crowd`\n", + "Group 2 found at 11868-11874: ` crowd`\n", + "\n", + "Group 1 found at 11879-11890: ` photograph`\n", + "Group 2 found at 11890-11901: ` photograph`\n", + "(0, 94, 94)\n", + "detect_scores time: 1.2336390018463135\n", + "detect_scores: The three U.S. states that share a boundary with \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7197-7208: `s algorithm`\n", + "Group 2 found at 7208-7219: `s algorithm`\n", + "\n", + "Group 1 found at 8851-8863: `e concentrat`\n", + "Group 2 found at 8863-8875: `e concentrat`\n", + "(0, 46, 46)\n", + "detect_scores time: 1.017996072769165\n", + "detect_scores: The character Ziva David from NCIS is played by a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001955270767211914\n", + "detect_scores: After the death of King Henry VIII in 1547, his o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0051801204681396484\n", + "detect_scores: Argentina recognizes several indigenous and natio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6144-6149: ` zero`\n", + "Group 2 found at 6149-6154: ` zero`\n", + "\n", + "Group 1 found at 6438-6446: ` polygon`\n", + "Group 2 found at 6446-6454: ` polygon`\n", + "\n", + "Group 1 found at 7277-7282: `case `\n", + "Group 2 found at 7282-7287: `case `\n", + "\n", + "Group 1 found at 8425-8430: ` cave`\n", + "Group 2 found at 8430-8435: ` cave`\n", + "\n", + "Group 1 found at 8531-8538: `phrase `\n", + "Group 2 found at 8538-8545: `phrase `\n", + "\n", + "Group 1 found at 9710-9717: `t silen`\n", + "Group 2 found at 9717-9724: `t silen`\n", + "\n", + "Group 1 found at 9760-9771: `ly thorough`\n", + "Group 2 found at 9771-9782: `ly thorough`\n", + "\n", + "Group 1 found at 10053-10063: `specially `\n", + "Group 2 found at 10063-10073: `specially `\n", + "\n", + "Group 1 found at 10314-10320: ` cheer`\n", + "Group 2 found at 10320-10326: ` cheer`\n", + "\n", + "Group 1 found at 10411-10416: `safe `\n", + "Group 2 found at 10416-10421: `safe `\n", + "\n", + "Group 1 found at 10452-10459: `able st`\n", + "Group 2 found at 10459-10466: `able st`\n", + "(0, 152, 152)\n", + "detect_scores time: 1.1409070491790771\n", + "detect_scores: Rafael Nadal plays tennis professionally and repr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023260116577148438\n", + "detect_scores: The Prime Minister of Spain in 2011 was José Luis\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010487079620361328\n", + "detect_scores: The famous historical figure who fits this descri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016257762908935547\n", + "detect_scores: Judi Dench, the renowned British actress known fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016648054122924805\n", + "detect_scores: In Spain, the official language is Spanish (Casti\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 654-661: `ound ar`\n", + "Group 2 found at 661-668: `ound ar`\n", + "(0, 14, 14)\n", + "detect_scores time: 0.01352691650390625\n", + "detect_scores: The Sahara Desert is primarily situated in North \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05080294609069824\n", + "detect_scores: Michael Oher, who is well-known as the offensive \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016541004180908203\n", + "detect_scores: Albert Einstein, the theoretical physicist renown\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04276132583618164\n", + "detect_scores: Egypt is a significant player in the global trade\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7545-7552: ` patron`\n", + "Group 2 found at 7552-7559: ` patron`\n", + "(0, 14, 14)\n", + "detect_scores time: 1.2060248851776123\n", + "detect_scores: The headquarters of the African Union (AU) are lo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009012222290039062\n", + "detect_scores: Henri Rousseau was a French post-impressionist pa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009027242660522461\n", + "detect_scores: John Edwards was a former U.S. Senator and presid\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4200-4210: ` continent`\n", + "Group 2 found at 4210-4220: ` continent`\n", + "\n", + "Group 1 found at 7954-7965: ` Foundation`\n", + "Group 2 found at 7965-7976: ` Foundation`\n", + "(0, 42, 42)\n", + "detect_scores time: 0.9352471828460693\n", + "detect_scores: Huey Newton, one of the co-founders and a promine\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0065920352935791016\n", + "detect_scores: Mitt Romneys' immediate family, which includes hi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005378007888793945\n", + "detect_scores: Michael Jackson, the renowned singer and entertai\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007216930389404297\n", + "detect_scores: The Battle of Vicksburg was a significant engagem\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8140-8145: `suit `\n", + "Group 2 found at 8145-8150: `suit `\n", + "\n", + "Group 1 found at 9790-9801: ` instrument`\n", + "Group 2 found at 9801-9812: ` instrument`\n", + "(0, 32, 32)\n", + "detect_scores time: 1.09316086769104\n", + "detect_scores: Nikolái Gógol was a renowned Russian dramatist, n\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0066280364990234375\n", + "detect_scores: The World Series, which is the annual championshi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004877805709838867\n", + "detect_scores: The character Simon Birch is played by actor Fore\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007140636444091797\n", + "detect_scores: In the United Kingdom, there are three main langu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011124134063720703\n", + "detect_scores: In Jamaica, the primary language spoken is Englis\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0042171478271484375\n", + "detect_scores: Wayne Gretzky's first professional hockey team wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5881-5886: ` sail`\n", + "Group 2 found at 5886-5891: ` sail`\n", + "\n", + "Group 1 found at 9688-9695: `stress `\n", + "Group 2 found at 9695-9702: `stress `\n", + "\n", + "Group 1 found at 10520-10531: `ant contest`\n", + "Group 2 found at 10531-10542: `ant contest`\n", + "(0, 46, 46)\n", + "detect_scores time: 1.0519707202911377\n", + "detect_scores: As of my last update in April 2023, Pedro Castill\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009357929229736328\n", + "detect_scores: Jerry Garcia, best known as a member and leader f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01201009750366211\n", + "detect_scores: Leonardo di ser Piero da Vinci, commonly known as\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00267791748046875\n", + "detect_scores: Rihanna, born as Robyn Rachel Fenty on February 2\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023300647735595703\n", + "detect_scores: J.R.R. Tolkien, the famous author of \"The Hobbit\"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2750-2757: ` stable`\n", + "Group 2 found at 2757-2764: ` stable`\n", + "(0, 14, 14)\n", + "detect_scores time: 0.6064198017120361\n", + "detect_scores: Saint Louis University (SLU) is located in the ci\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005650520324707031\n", + "detect_scores: Canada is a country with diverse religious belief\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0032591819763183594\n", + "detect_scores: In Spain, the official and legal tender used for \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003511190414428711\n", + "detect_scores: Anders Celsius, the Swedish astronomer known for \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004391908645629883\n", + "detect_scores: France primarily accepts the Euro (€) as its offi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010012149810791016\n", + "detect_scores: Massachusetts, particularly in its early colonial\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.1450552940368652\n", + "detect_scores: Brazil operates under a federal presidential cons\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3231-3237: `s fini`\n", + "Group 2 found at 3237-3243: `s fini`\n", + "\n", + "Group 1 found at 6235-6244: `e schedul`\n", + "Group 2 found at 6244-6253: `e schedul`\n", + "\n", + "Group 1 found at 7020-7031: `ation valid`\n", + "Group 2 found at 7031-7042: `ation valid`\n", + "(0, 52, 52)\n", + "detect_scores time: 0.48056507110595703\n", + "detect_scores: Gregor Mendel lived during the 19th century, and \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008198976516723633\n", + "detect_scores: Laura Ingall Wilder, the author of \"Little House \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 11060-11072: `iasis Candid`\n", + "Group 2 found at 11072-11084: `iasis Candid`\n", + "(0, 24, 24)\n", + "detect_scores time: 1.121995210647583\n", + "detect_scores: Your current time zone can be determined by your \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01105189323425293\n", + "detect_scores: In Norway, the primary language spoken is Norwegi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0025510787963867188\n", + "detect_scores: Singapore uses the Singdollar as its official cur\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018780231475830078\n", + "detect_scores: The Blackfeet Indians, also known as Amskapipikun\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004068136215209961\n", + "detect_scores: In the movie \"Prince of Thieves,\" which was relea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00061798095703125\n", + "detect_scores: Texas observes Central Standard Time (CST) during\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010499000549316406\n", + "detect_scores: Louis Armstrong was a renowned American trumpeter\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023598670959472656\n", + "detect_scores: Madonna, the stage name for American singer-songw\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0027222633361816406\n", + "detect_scores: Egypt is situated in the northeastern corner of A\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5842-5848: `fires `\n", + "Group 2 found at 5848-5854: `fires `\n", + "\n", + "Group 1 found at 8145-8155: ` continent`\n", + "Group 2 found at 8155-8165: ` continent`\n", + "\n", + "Group 1 found at 8617-8625: `time any`\n", + "Group 2 found at 8625-8633: `time any`\n", + "\n", + "Group 1 found at 8914-8921: `filled `\n", + "Group 2 found at 8921-8928: `filled `\n", + "\n", + "Group 1 found at 9025-9036: ` successful`\n", + "Group 2 found at 9036-9047: ` successful`\n", + "\n", + "Group 1 found at 10991-11000: `solution `\n", + "Group 2 found at 11000-11009: `solution `\n", + "(0, 102, 102)\n", + "detect_scores time: 1.2099709510803223\n", + "detect_scores: Richard Hammond is a well-known British televisio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017278194427490234\n", + "detect_scores: You would typically land at Charles de Gaulle Air\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002185821533203125\n", + "detect_scores: Galileo made several significant discoveries that\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.9231040477752686\n", + "detect_scores: The character Tony Dinozzo, who is part of NCIS (\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0025930404663085938\n", + "detect_scores: Jesus, a central figure in Christianity and the s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2822-2827: `e pur`\n", + "Group 2 found at 2827-2832: `e pur`\n", + "\n", + "Group 1 found at 6999-7007: ` journal`\n", + "Group 2 found at 7007-7015: ` journal`\n", + "(0, 26, 26)\n", + "detect_scores time: 0.9315438270568848\n", + "detect_scores: The State Name for New York City, which serves as\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012035131454467773\n", + "detect_scores: Portugal trades globally, engaging in commerce an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008236885070800781\n", + "detect_scores: Brazil operates under a federal presidential cons\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00906991958618164\n", + "detect_scores: The Ancient Babylonian civilization primarily spo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0050737857818603516\n", + "detect_scores: Wassily Kandinsky was a Russian-born abstract art\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0059528350830078125\n", + "detect_scores: Cuba uses the Cuban Convertible Peso (CUC) and, s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4937-4944: `linear `\n", + "Group 2 found at 4944-4951: `linear `\n", + "\n", + "Group 1 found at 5875-5884: `body some`\n", + "Group 2 found at 5884-5893: `body some`\n", + "\n", + "Group 1 found at 5930-5935: `here `\n", + "Group 2 found at 5935-5940: `here `\n", + "\n", + "Group 1 found at 5974-5979: `ever `\n", + "Group 2 found at 5979-5984: `ever `\n", + "\n", + "Group 1 found at 8131-8137: `ed fac`\n", + "Group 2 found at 8137-8143: `ed fac`\n", + "\n", + "Group 1 found at 8256-8267: `e coordinat`\n", + "Group 2 found at 8267-8278: `e coordinat`\n", + "\n", + "Group 1 found at 8991-8999: `s person`\n", + "Group 2 found at 8999-9007: `s person`\n", + "\n", + "Group 1 found at 10587-10599: `electronics `\n", + "Group 2 found at 10599-10611: `electronics `\n", + "\n", + "Group 1 found at 11345-11353: `writing `\n", + "Group 2 found at 11353-11361: `writing `\n", + "(0, 142, 142)\n", + "detect_scores time: 1.2883200645446777\n", + "detect_scores: Sweden primarily operates on Central European Tim\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014204263687133789\n", + "detect_scores: Robert Downey Jr. has not served time in prison f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0053691864013671875\n", + "detect_scores: Barack Obama earned a Bachelor of Arts (B.A.) deg\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023260116577148438\n", + "detect_scores: God Shiva, also known as Mahadeva in Hinduism, re\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7787-7794: ` intent`\n", + "Group 2 found at 7794-7801: ` intent`\n", + "ignored: greatgreat\n", + "ignored: greatgreat\n", + "\n", + "Group 1 found at 10371-10381: ` continent`\n", + "Group 2 found at 10381-10391: ` continent`\n", + "(0, 34, 34)\n", + "detect_scores time: 1.1649150848388672\n", + "detect_scores: Benjamin Franklin, one of the Founding Fathers of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7280-7287: ` anchor`\n", + "Group 2 found at 7287-7294: ` anchor`\n", + "\n", + "Group 1 found at 9480-9487: ` quiver`\n", + "Group 2 found at 9487-9494: ` quiver`\n", + "\n", + "Group 1 found at 10134-10143: `er measur`\n", + "Group 2 found at 10143-10152: `er measur`\n", + "\n", + "Group 1 found at 10365-10371: `meter `\n", + "Group 2 found at 10371-10377: `meter `\n", + "(0, 58, 58)\n", + "detect_scores time: 1.0624430179595947\n", + "detect_scores: The official currency used in Switzerland is call\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002137899398803711\n", + "detect_scores: The Milwaukee Brewers, known as such since their \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015020132064819336\n", + "detect_scores: The Vice President who served alongside Bill Clin\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010571479797363281\n", + "detect_scores: The Los Angeles Kings won their first Stanley Cup\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10128-10139: `s statistic`\n", + "Group 2 found at 10139-10150: `s statistic`\n", + "\n", + "Group 1 found at 10617-10627: `dependent `\n", + "Group 2 found at 10627-10637: `dependent `\n", + "\n", + "Group 1 found at 10694-10705: `ses hypothe`\n", + "Group 2 found at 10705-10716: `ses hypothe`\n", + "\n", + "Group 1 found at 11008-11018: `ons relati`\n", + "Group 2 found at 11018-11028: `ons relati`\n", + "\n", + "Group 1 found at 11255-11262: `s photo`\n", + "Group 2 found at 11262-11269: `s photo`\n", + "\n", + "Group 1 found at 11657-11667: `magnetism `\n", + "Group 2 found at 11667-11677: `magnetism `\n", + "(0, 118, 118)\n", + "detect_scores time: 1.422361135482788\n", + "detect_scores: Egypt operates with its own currency, the Egyptia\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019309520721435547\n", + "detect_scores: The St. Lawrence River flows into the Atlantic Oc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0025382041931152344\n", + "detect_scores: William McKinley, the 25th President of the Unite\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011883735656738281\n", + "detect_scores: Darth Vader was portrayed by actor David Prowse, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0045928955078125\n", + "detect_scores: Kevin James attended Fordham University, where he\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003406047821044922\n", + "detect_scores: Auschwitz Concentration Camp, one of the most not\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0075991153717041016\n", + "detect_scores: The Dominican Republic uses the Dominican Peso as\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001050710678100586\n", + "detect_scores: In the Czech Republic, people speak Czech. It's a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018260478973388672\n", + "detect_scores: William Shakespeare, the renowned English playwri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8029-8039: `ment imple`\n", + "Group 2 found at 8039-8049: `ment imple`\n", + "\n", + "Group 1 found at 9187-9192: ` term`\n", + "Group 2 found at 9192-9197: ` term`\n", + "\n", + "Group 1 found at 9794-9800: ` lyric`\n", + "Group 2 found at 9800-9806: ` lyric`\n", + "(0, 42, 42)\n", + "detect_scores time: 1.070084810256958\n", + "detect_scores: Scott Fitzgerald attended the Princeton Universit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003942012786865234\n", + "detect_scores: Joan Crawford, the American actress known for her\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036268234252929688\n", + "detect_scores: Rob Kardashian attended Northwestern University, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012807846069335938\n", + "detect_scores: Allen Iverson won the NBA Most Valuable Player (M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011439323425292969\n", + "detect_scores: Harry S. Truman, the 33rd President of the United\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010555744171142578\n", + "detect_scores: Utica, NY is located within Oneida County.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 2.09808349609375e-05\n", + "detect_scores: Charles Babbage is often referred to as the \"fath\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.021318912506103516\n", + "detect_scores: In the animated television series \"King Julien,\" \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00043964385986328125\n", + "detect_scores: Rick Scott is an American businessman and politic\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005497932434082031\n", + "detect_scores: Diana Taurasi plays for the Phoenix Mercury in th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 8.392333984375e-05\n", + "detect_scores: In Canada, it is not just one individual who make\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5772-5783: `similarity `\n", + "Group 2 found at 5783-5794: `similarity `\n", + "\n", + "Group 1 found at 6118-6127: ` definite`\n", + "Group 2 found at 6127-6136: ` definite`\n", + "(0, 40, 40)\n", + "detect_scores time: 1.1774988174438477\n", + "detect_scores: Adam Morrison was selected in the 2006 NBA Draft \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005090236663818359\n", + "detect_scores: Michael Jackson was an American singer, songwrite\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4419-4427: ` speaker`\n", + "Group 2 found at 4427-4435: ` speaker`\n", + "\n", + "Group 1 found at 5660-5666: `s file`\n", + "Group 2 found at 5666-5672: `s file`\n", + "\n", + "Group 1 found at 6910-6920: `reference `\n", + "Group 2 found at 6920-6930: `reference `\n", + "\n", + "Group 1 found at 8530-8541: `s privilege`\n", + "Group 2 found at 8541-8552: `s privilege`\n", + "\n", + "Group 1 found at 9747-9752: `ash h`\n", + "Group 2 found at 9752-9757: `ash h`\n", + "\n", + "Group 1 found at 10195-10202: `fix pre`\n", + "Group 2 found at 10202-10209: `fix pre`\n", + "(0, 94, 94)\n", + "detect_scores time: 1.1623127460479736\n", + "detect_scores: Maya Moore attended the University of Missouri, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0074481964111328125\n", + "detect_scores: The Los Angeles Dodgers most recently secured the\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022978782653808594\n", + "detect_scores: Robin Williams got married twice in his lifetime.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6680-6687: `groups `\n", + "Group 2 found at 6687-6694: `groups `\n", + "\n", + "Group 1 found at 7944-7949: `book `\n", + "Group 2 found at 7949-7954: `book `\n", + "(0, 24, 24)\n", + "detect_scores time: 1.2204432487487793\n", + "detect_scores: Canada operates under a parliamentary democracy a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2073-2081: `t presen`\n", + "Group 2 found at 2081-2089: `t presen`\n", + "\n", + "Group 1 found at 6765-6774: `nts insta`\n", + "Group 2 found at 6774-6783: `nts insta`\n", + "ignored: forgottenforgotten\n", + "ignored: dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd\n", + "(0, 34, 34)\n", + "detect_scores time: 0.6617600917816162\n", + "detect_scores: Peru operates under a democratic republic form of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2150-2161: `tions itera`\n", + "Group 2 found at 2161-2172: `tions itera`\n", + "\n", + "Group 1 found at 3607-3617: `cognition `\n", + "Group 2 found at 3617-3627: `cognition `\n", + "\n", + "Group 1 found at 4117-4122: `s sea`\n", + "Group 2 found at 4122-4127: `s sea`\n", + "\n", + "Group 1 found at 4187-4193: `s cave`\n", + "Group 2 found at 4193-4199: `s cave`\n", + "ignored: foreverforever\n", + "ignored: alwaysalways\n", + "ignored: morrowmorrow\n", + "\n", + "Group 1 found at 8990-8995: ` `\n", + "Group 2 found at 8995-9010: ` `\n", + "(0, 84, 84)\n", + "detect_scores time: 0.6812002658843994\n", + "detect_scores: The American Federation of Labor (AFL) was co-fou\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007088184356689453\n", + "detect_scores: Diego Rivera, the famous Mexican painter known fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030150413513183594\n", + "detect_scores: Switzerland primarily uses the Swiss Franc (CHF) \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028793811798095703\n", + "detect_scores: President John F. Kennedy, the 35th President of \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6925-6937: `s challenger`\n", + "Group 2 found at 6937-6949: `s challenger`\n", + "\n", + "Group 1 found at 7362-7370: `s senior`\n", + "Group 2 found at 7370-7378: `s senior`\n", + "\n", + "Group 1 found at 7799-7804: `s bed`\n", + "Group 2 found at 7804-7809: `s bed`\n", + "\n", + "Group 1 found at 8218-8225: ` garden`\n", + "Group 2 found at 8225-8232: ` garden`\n", + "\n", + "Group 1 found at 9371-9376: ` lamp`\n", + "Group 2 found at 9376-9381: ` lamp`\n", + "\n", + "Group 1 found at 9423-9429: `s gate`\n", + "Group 2 found at 9429-9435: `s gate`\n", + "\n", + "Group 1 found at 10628-10633: ` term`\n", + "Group 2 found at 10633-10638: ` term`\n", + "(0, 96, 96)\n", + "detect_scores time: 1.2303929328918457\n", + "detect_scores: Prophet Muhammad, known as the last messenger in \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.033380746841430664\n", + "detect_scores: Russia is a transcontinental nation spanning East\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6021-6027: `s cave`\n", + "Group 2 found at 6027-6033: `s cave`\n", + "\n", + "Group 1 found at 7798-7806: `ability `\n", + "Group 2 found at 7806-7814: `ability `\n", + "\n", + "Group 1 found at 8728-8733: ` pack`\n", + "Group 2 found at 8733-8738: ` pack`\n", + "\n", + "Group 1 found at 10702-10712: `thing some`\n", + "Group 2 found at 10712-10722: `thing some`\n", + "(0, 58, 58)\n", + "detect_scores time: 1.1183311939239502\n", + "detect_scores: Chris Rock was born on October 7, 1965, in Brookl\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0026428699493408203\n", + "detect_scores: The Toronto Maple Leafs most recently won their 1\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015208721160888672\n", + "detect_scores: Lola Bunny is a character from Warner Bros.' Loon\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00787806510925293\n", + "detect_scores: As of my last update in April 2023, Kris Humphrie\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003214120864868164\n", + "detect_scores: John Franklin was a British explorer, and there a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00742030143737793\n", + "detect_scores: Sean Connery's final film role before his retirem\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0077056884765625\n", + "detect_scores: Crabtree attended the University of Washington fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008069276809692383\n", + "detect_scores: Fredrik Ljungberg, commonly known as \"Freddie,\" i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003155946731567383\n", + "detect_scores: As an AI developed by Microsoft, I don't have rea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0053861141204833984\n", + "detect_scores: John Adams, the second President of the United St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6175-6183: ` killing`\n", + "Group 2 found at 6183-6191: ` killing`\n", + "\n", + "Group 1 found at 6267-6277: `rs predato`\n", + "Group 2 found at 6277-6287: `rs predato`\n", + "\n", + "Group 1 found at 6464-6471: ` heaven`\n", + "Group 2 found at 6471-6478: ` heaven`\n", + "\n", + "Group 1 found at 6498-6504: `space `\n", + "Group 2 found at 6504-6510: `space `\n", + "\n", + "Group 1 found at 6696-6708: `ncorporeal i`\n", + "Group 2 found at 6708-6720: `ncorporeal i`\n", + "\n", + "Group 1 found at 7758-7769: ` resistance`\n", + "Group 2 found at 7769-7780: ` resistance`\n", + "\n", + "Group 1 found at 7954-7962: `rs scala`\n", + "Group 2 found at 7962-7970: `rs scala`\n", + "\n", + "Group 1 found at 8375-8381: `laces `\n", + "Group 2 found at 8381-8387: `laces `\n", + "\n", + "Group 1 found at 8818-8826: `currant `\n", + "Group 2 found at 8826-8834: `currant `\n", + "\n", + "Group 1 found at 9683-9688: `fish `\n", + "Group 2 found at 9688-9693: `fish `\n", + "(0, 162, 162)\n", + "detect_scores time: 0.9223711490631104\n", + "detect_scores: Mike Fisher is a professional ice hockey player. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014688968658447266\n", + "detect_scores: Eduard Paolezzi, a renowned Scottish artist and s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7237-7243: `notes `\n", + "Group 2 found at 7243-7249: `notes `\n", + "\n", + "Group 1 found at 8550-8555: ` data`\n", + "Group 2 found at 8555-8560: ` data`\n", + "(0, 22, 22)\n", + "detect_scores time: 1.0137112140655518\n", + "detect_scores: Joe Biden studied political science at the Univer\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023212432861328125\n", + "detect_scores: Ohio is located in the Midwestern region of the U\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5772-5782: `ers debugg`\n", + "Group 2 found at 5782-5792: `ers debugg`\n", + "\n", + "Group 1 found at 10477-10482: `s Map`\n", + "Group 2 found at 10482-10487: `s Map`\n", + "(0, 30, 30)\n", + "detect_scores time: 1.1055450439453125\n", + "detect_scores: Kailua is not an \"island\" in the traditional sens\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0039479732513427734\n", + "detect_scores: Whoopi Goldberg received her first Grammy Award i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016177892684936523\n", + "detect_scores: Thomas Jefferson, the third President of the Unit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7235-7245: ` continent`\n", + "Group 2 found at 7245-7255: ` continent`\n", + "\n", + "Group 1 found at 8516-8524: ` immense`\n", + "Group 2 found at 8524-8532: ` immense`\n", + "\n", + "Group 1 found at 9462-9470: `servant `\n", + "Group 2 found at 9470-9478: `servant `\n", + "(0, 52, 52)\n", + "detect_scores time: 1.0929830074310303\n", + "detect_scores: In France, several religious traditions coexist a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8946-8951: ` cave`\n", + "Group 2 found at 8951-8956: ` cave`\n", + "(0, 10, 10)\n", + "detect_scores time: 1.185467004776001\n", + "detect_scores: Manchester United, managed by Sir Alex Ferguson a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036101341247558594\n", + "detect_scores: The primary timezone used throughout Japan is JST\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004554033279418945\n", + "detect_scores: In the Czech Republic, the primary language spoke\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018069744110107422\n", + "detect_scores: Tim Cook is the CEO of Apple Inc., and as such, h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018410682678222656\n", + "detect_scores: London operates in the Greenwich Mean Time (GMT) \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00410914421081543\n", + "detect_scores: Sheryl Crow was diagnosed with stage IIIC invasiv\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0057561397552490234\n", + "detect_scores: Argentina currently operates under a presidential\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018283843994140625\n", + "detect_scores: Fabio Capello is originally from Italy. He was bo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007825851440429688\n", + "detect_scores: Abraham Lincoln, the 16th President of the United\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005117893218994141\n", + "detect_scores: John Steinbeck was greatly inspired by his own li\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011139869689941406\n", + "detect_scores: Dwyane Wade, the former professional basketball p\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037288665771484375\n", + "detect_scores: The Zambezia River flows eastward and empties its\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0041048526763916016\n", + "detect_scores: Before David Beckham joined LA Galaxy, he played \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013861894607543945\n", + "detect_scores: As of my knowledge cutoff in early 2023, Emmanuel\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004492044448852539\n", + "detect_scores: The Palace of Knossos is situated on the island o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0043337345123291016\n", + "CPU times: user 4min 2s, sys: 366 ms, total: 4min 2s\n", + "Wall time: 4min 3s\n" + ] + }, + { + "data": { + "text/plain": [ + "1.422361135482788" + ] + }, + "execution_count": 77, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "\n", + "longest_time = 0\n", + "df_v2 = df.copy()\n", + "df_v2[[\"newline_score\", \"repetition_score\", \"total_repetitions\"]] = df[\"answer\"].apply(\n", + " lambda x: detect_scores(detect_repetitions_v2, x)\n", + ")\n", + "longest_time" + ] + }, + { + "cell_type": "code", + "execution_count": 78, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
token_countnewline_scorerepetition_scoretotal_repetitionsadjusted_precisionadjusted_recallword_countprecisionrecallf1
count1008.0000001008.01008.0000001008.0000001008.0000001008.0000001008.0000001008.0000001008.0000001008.000000
mean385.2470240.012.60416712.6041670.4273220.536768385.2470240.4577620.5669430.463820
std500.0550330.030.47239930.4723990.4038310.450413500.0550330.4203160.4584990.400647
min1.0000000.00.0000000.0000000.0000000.0000001.0000000.0000000.0000000.000000
25%92.0000000.00.0000000.0000000.0000000.00000092.0000000.0000000.0000000.000000
50%132.5000000.00.0000000.0000000.3333330.556836132.5000000.3818180.7500000.500000
75%263.0000000.00.0000000.0000001.0000001.000000263.0000001.0000001.0000000.861607
max1485.0000000.0256.000000256.0000001.0000001.0000001485.0000001.0000001.0000001.000000
\n", + "
" + ], + "text/plain": [ + " token_count newline_score repetition_score total_repetitions \\\n", + "count 1008.000000 1008.0 1008.000000 1008.000000 \n", + "mean 385.247024 0.0 12.604167 12.604167 \n", + "std 500.055033 0.0 30.472399 30.472399 \n", + "min 1.000000 0.0 0.000000 0.000000 \n", + "25% 92.000000 0.0 0.000000 0.000000 \n", + "50% 132.500000 0.0 0.000000 0.000000 \n", + "75% 263.000000 0.0 0.000000 0.000000 \n", + "max 1485.000000 0.0 256.000000 256.000000 \n", + "\n", + " adjusted_precision adjusted_recall word_count precision \\\n", + "count 1008.000000 1008.000000 1008.000000 1008.000000 \n", + "mean 0.427322 0.536768 385.247024 0.457762 \n", + "std 0.403831 0.450413 500.055033 0.420316 \n", + "min 0.000000 0.000000 1.000000 0.000000 \n", + "25% 0.000000 0.000000 92.000000 0.000000 \n", + "50% 0.333333 0.556836 132.500000 0.381818 \n", + "75% 1.000000 1.000000 263.000000 1.000000 \n", + "max 1.000000 1.000000 1485.000000 1.000000 \n", + "\n", + " recall f1 \n", + "count 1008.000000 1008.000000 \n", + "mean 0.566943 0.463820 \n", + "std 0.458499 0.400647 \n", + "min 0.000000 0.000000 \n", + "25% 0.000000 0.000000 \n", + "50% 0.750000 0.500000 \n", + "75% 1.000000 0.861607 \n", + "max 1.000000 1.000000 " + ] + }, + "execution_count": 78, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_v2.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "detect_scores: Jamaicans primarily speak English, which is the o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4468-4475: `able st`\n", + "Group 2 found at 4475-4482: `able st`\n", + "Group 3 found at 4475-4482: `able st`\n", + "\n", + "Group 1 found at 6376-6389: ` distribution`\n", + "Group 2 found at 6389-6402: ` distribution`\n", + "Group 3 found at 6389-6402: ` distribution`\n", + "\n", + "Group 1 found at 6687-6699: `s coordinate`\n", + "Group 2 found at 6699-6712: `s coordinate `\n", + "Group 3 found at 6699-6711: `s coordinate`\n", + "(0, 65, 65)\n", + "detect_scores time: 2.091726064682007\n", + "detect_scores: Jamarius Russell was born in Lafayette, Louisiana\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 663-668: `date `\n", + "Group 2 found at 668-673: `date `\n", + "Group 3 found at 668-673: `date `\n", + "(0, 10, 10)\n", + "detect_scores time: 0.008530855178833008\n", + "detect_scores: George Washington Carver was born into slavery in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0076198577880859375\n", + "detect_scores: Benjamin Franklin was a prolific individual with \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5594-5601: `second `\n", + "Group 2 found at 5601-5608: `second `\n", + "Group 3 found at 5601-5608: `second `\n", + "\n", + "Group 1 found at 6237-6251: `polation inter`\n", + "Group 2 found at 6251-6265: `polation inter`\n", + "Group 3 found at 6251-6265: `polation inter`\n", + "\n", + "Group 1 found at 6278-6289: `imation est`\n", + "Group 2 found at 6289-6300: `imation est`\n", + "Group 3 found at 6289-6300: `imation est`\n", + "\n", + "Group 1 found at 6459-6471: `variances co`\n", + "Group 2 found at 6471-6483: `variances co`\n", + "Group 3 found at 6471-6483: `variances co`\n", + "\n", + "Group 1 found at 8907-8916: `thalamus `\n", + "Group 2 found at 8916-8925: `thalamus `\n", + "Group 3 found at 8916-8925: `thalamus `\n", + "\n", + "Group 1 found at 9464-9473: `solution `\n", + "Group 2 found at 9473-9482: `solution `\n", + "Group 3 found at 9473-9482: `solution `\n", + "\n", + "Group 1 found at 9554-9560: ` phase`\n", + "Group 2 found at 9560-9566: ` phase`\n", + "Group 3 found at 9560-9566: ` phase`\n", + "(0, 136, 136)\n", + "detect_scores time: 1.8458149433135986\n", + "detect_scores: Richard Nixon, the 37th President of the United S\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "ignored: \n", + "exception: \n", + "(0, 0, 0)\n", + "detect_scores time: 0.1984260082244873\n", + "detect_scores: John R. Kasich served as the Governor of Ohio fro\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002390146255493164\n", + "detect_scores: Lyndon B. Johnson became the Vice President of th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011601448059082031\n", + "detect_scores: The Fukushima Daiichi Nuclear Power Plant was ori\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015566825866699219\n", + "detect_scores: The United Kingdom (UK) is composed of four const\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5896-5901: `gods `\n", + "Group 2 found at 5901-5906: `gods `\n", + "Group 3 found at 5901-5906: `gods `\n", + "\n", + "Group 1 found at 9851-9857: `ls too`\n", + "Group 2 found at 9857-9863: `ls too`\n", + "Group 3 found at 9857-9863: `ls too`\n", + "\n", + "Group 1 found at 10533-10539: `on rad`\n", + "Group 2 found at 10539-10545: `on rad`\n", + "Group 3 found at 10539-10545: `on rad`\n", + "(0, 34, 34)\n", + "detect_scores time: 2.0100860595703125\n", + "detect_scores: To determine your current time zone, you would ne\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4668-4677: ` prospect`\n", + "Group 2 found at 4677-4686: ` prospect`\n", + "Group 3 found at 4677-4686: ` prospect`\n", + "\n", + "Group 1 found at 7160-7167: `charts `\n", + "Group 2 found at 7167-7174: `charts `\n", + "Group 3 found at 7167-7174: `charts `\n", + "\n", + "Group 1 found at 10608-10613: `e els`\n", + "Group 2 found at 10613-10618: `e els`\n", + "Group 3 found at 10613-10618: `e els`\n", + "\n", + "Group 1 found at 10634-10639: `ever `\n", + "Group 2 found at 10639-10644: `ever `\n", + "Group 3 found at 10639-10644: `ever `\n", + "(0, 52, 52)\n", + "detect_scores time: 1.645993947982788\n", + "detect_scores: St. Augustine, also known as Aurelius Augustinus \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.035429954528808594\n", + "detect_scores: Egypt operates under a semi-presidential republic\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4084-4091: `writer `\n", + "Group 2 found at 4091-4098: `writer `\n", + "Group 3 found at 4091-4098: `writer `\n", + "\n", + "Group 1 found at 6399-6406: `either `\n", + "Group 2 found at 6406-6413: `either `\n", + "Group 3 found at 6406-6413: `either `\n", + "\n", + "Group 1 found at 8132-8141: `s numeric`\n", + "Group 2 found at 8141-8150: `s numeric`\n", + "Group 3 found at 8141-8150: `s numeric`\n", + "\n", + "Group 1 found at 9803-9809: `plane `\n", + "Group 2 found at 9809-9815: `plane `\n", + "Group 3 found at 9809-9815: `plane `\n", + "\n", + "Group 1 found at 10688-10694: `paper `\n", + "Group 2 found at 10694-10700: `paper `\n", + "Group 3 found at 10694-10700: `paper `\n", + "(0, 70, 70)\n", + "detect_scores time: 1.7670650482177734\n", + "detect_scores: Martin Luther King Jr. was tragically assassinate\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019199848175048828\n", + "detect_scores: Edgar Allan Poe, the famous American writer known\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0055921077728271484\n", + "detect_scores: Anna Bligh, a member of the Australian Labor Part\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015285968780517578\n", + "detect_scores: Sweden primarily operates on Central European Tim\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005016803741455078\n", + "detect_scores: As of my last update in April 2023, there is no w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00446009635925293\n", + "detect_scores: Frederick County is located within the state of M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009949922561645508\n", + "detect_scores: Harper Lee, the author famous for her novel \"To K\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014581680297851562\n", + "detect_scores: Utah operates on Mountain Time, which includes Pa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016460418701171875\n", + "detect_scores: George W. Bush ran for his second presidential te\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003873109817504883\n", + "detect_scores: As of my last update in early 2023, Niall Ferguso\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0025451183319091797\n", + "detect_scores: The Galápagos Islands are an archipelago of volca\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008067846298217773\n", + "detect_scores: Rihanna, whose full name is Robyn Rihannon Fenty \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005504131317138672\n", + "detect_scores: Samsung, being a multinational conglomerate compa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03297710418701172\n", + "detect_scores: As of my last update, I cannot provide real-time \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005935192108154297\n", + "detect_scores: George Orwell, the English novelist and essayist \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004179239273071289\n", + "detect_scores: Adolf Hitler was the leader of Nazi Germany. Duri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01710796356201172\n", + "detect_scores: Kansas City, often referred to as KC or the \"Moth\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016638994216918945\n", + "detect_scores: Jackie Robinson played his professional baseball \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007902860641479492\n", + "detect_scores: Eleanor Roosevelt, the former First Lady of the U\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030422210693359375\n", + "detect_scores: Indonesia is known for its religious diversity an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4276-4283: ` prince`\n", + "Group 2 found at 4283-4290: ` prince`\n", + "Group 3 found at 4283-4290: ` prince`\n", + "ignored: zettazetta\n", + "exception: \n", + "\n", + "Group 1 found at 8629-8637: `s animal`\n", + "Group 2 found at 8637-8646: `s animal `\n", + "Group 3 found at 8637-8645: `s animal`\n", + "\n", + "Group 1 found at 9519-9526: `s proof`\n", + "Group 2 found at 9526-9533: `s proof`\n", + "Group 3 found at 9526-9533: `s proof`\n", + "(0, 45, 45)\n", + "detect_scores time: 1.7541370391845703\n", + "detect_scores: I cannot assist you with that. It's important to \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011599063873291016\n", + "detect_scores: The title \"dictator\" in its original Roman contex\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4197-4205: `ability `\n", + "Group 2 found at 4205-4213: `ability `\n", + "Group 3 found at 4205-4213: `ability `\n", + "\n", + "Group 1 found at 4813-4822: `commerce `\n", + "Group 2 found at 4822-4831: `commerce `\n", + "Group 3 found at 4822-4831: `commerce `\n", + "\n", + "Group 1 found at 8223-8229: `s meme`\n", + "Group 2 found at 8229-8236: `s meme `\n", + "Group 3 found at 8229-8235: `s meme`\n", + "\n", + "Group 1 found at 8492-8502: `duction in`\n", + "Group 2 found at 8502-8512: `duction in`\n", + "Group 3 found at 8502-8512: `duction in`\n", + "(0, 67, 67)\n", + "detect_scores time: 1.7993931770324707\n", + "detect_scores: The official currency of Puerto Rico is called th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036139488220214844\n", + "detect_scores: I'm sorry, but as a matter of privacy and confide\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03066110610961914\n", + "detect_scores: The character K.I.T.T., which stands for Knight I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010347843170166016\n", + "detect_scores: Brentwood, Tennessee lies within Williamson Count\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3230-3241: `s threshold`\n", + "Group 2 found at 3241-3253: `s threshold `\n", + "Group 3 found at 3241-3252: `s threshold`\n", + "\n", + "Group 1 found at 3763-3774: ` photograph`\n", + "Group 2 found at 3774-3785: ` photograph`\n", + "Group 3 found at 3774-3785: ` photograph`\n", + "\n", + "Group 1 found at 3897-3904: `letter `\n", + "Group 2 found at 3904-3911: `letter `\n", + "Group 3 found at 3904-3911: `letter `\n", + "\n", + "Group 1 found at 4469-4476: `writer `\n", + "Group 2 found at 4476-4483: `writer `\n", + "Group 3 found at 4476-4483: `writer `\n", + "\n", + "Group 1 found at 5602-5613: `directed un`\n", + "Group 2 found at 5613-5624: `directed un`\n", + "Group 3 found at 5613-5624: `directed un`\n", + "\n", + "Group 1 found at 6868-6874: `l meta`\n", + "Group 2 found at 6874-6880: `l meta`\n", + "Group 3 found at 6874-6880: `l meta`\n", + "\n", + "Group 1 found at 10493-10498: `milk `\n", + "Group 2 found at 10498-10503: `milk `\n", + "Group 3 found at 10498-10503: `milk `\n", + "(0, 117, 117)\n", + "detect_scores time: 1.6316931247711182\n", + "detect_scores: Michael Jackson, often confused with the famous e\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.029606342315673828\n", + "detect_scores: Stonewall Jackson, a Confederate general during t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3454-3462: `ability `\n", + "Group 2 found at 3462-3470: `ability `\n", + "Group 3 found at 3462-3470: `ability `\n", + "\n", + "Group 1 found at 6921-6927: `y happ`\n", + "Group 2 found at 6927-6933: `y happ`\n", + "Group 3 found at 6927-6933: `y happ`\n", + "\n", + "Group 1 found at 8114-8124: ` continent`\n", + "Group 2 found at 8124-8134: ` continent`\n", + "Group 3 found at 8124-8134: ` continent`\n", + "\n", + "Group 1 found at 8630-8637: ` league`\n", + "Group 2 found at 8637-8644: ` league`\n", + "Group 3 found at 8637-8644: ` league`\n", + "\n", + "Group 1 found at 8777-8785: `seconds `\n", + "Group 2 found at 8785-8793: `seconds `\n", + "Group 3 found at 8785-8793: `seconds `\n", + "(0, 78, 78)\n", + "detect_scores time: 1.8176257610321045\n", + "detect_scores: Benjamin Franklin got married twice over the cour\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01933908462524414\n", + "detect_scores: Patrick Swayze tragically passed away on Septembe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004060029983520508\n", + "detect_scores: The capital of Austria is Vienna, also known as W\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003859281539916992\n", + "detect_scores: Eva Perón, also known as Evita and originally nam\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004067897796630859\n", + "detect_scores: Buddha, also known as Siddhartha Gautama before h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009552001953125\n", + "detect_scores: Greeley, Colorado, lies within Weld County. It se\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008351802825927734\n", + "detect_scores: John Lennon, a member of The Beatles and later as\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011501073837280273\n", + "detect_scores: As of my last update in 2023, Colorado has severa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0121307373046875\n", + "detect_scores: Greenland is an autonomous territory within the K\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006455183029174805\n", + "detect_scores: I'm sorry, but as of my last update in April 2023\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005948066711425781\n", + "detect_scores: Armenia is a country located in the South Caucasu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015558958053588867\n", + "detect_scores: Randy Savage, the professional wrestler known for\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007941007614135742\n", + "detect_scores: Richard Nixon died at a hospital in New York City\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4324-4331: `able st`\n", + "Group 2 found at 4331-4338: `able st`\n", + "Group 3 found at 4331-4338: `able st`\n", + "\n", + "Group 1 found at 5803-5812: `s mission`\n", + "Group 2 found at 5812-5822: `s mission `\n", + "Group 3 found at 5812-5821: `s mission`\n", + "\n", + "Group 1 found at 6343-6353: `economics `\n", + "Group 2 found at 6353-6363: `economics `\n", + "Group 3 found at 6353-6363: `economics `\n", + "\n", + "Group 1 found at 7870-7875: `fight`\n", + "Group 2 found at 7875-7881: `fight `\n", + "Group 3 found at 7875-7880: `fight`\n", + "\n", + "Group 1 found at 9404-9415: ` difference`\n", + "Group 2 found at 9415-9426: ` difference`\n", + "Group 3 found at 9415-9426: ` difference`\n", + "\n", + "Group 1 found at 9850-9864: `ly approximate`\n", + "Group 2 found at 9864-9879: `ly approximate `\n", + "Group 3 found at 9864-9878: `ly approximate`\n", + "\n", + "Group 1 found at 10388-10393: `e idl`\n", + "Group 2 found at 10393-10398: `e idl`\n", + "Group 3 found at 10393-10398: `e idl`\n", + "\n", + "Group 1 found at 10431-10437: ` sport`\n", + "Group 2 found at 10437-10443: ` sport`\n", + "Group 3 found at 10437-10443: ` sport`\n", + "\n", + "Group 1 found at 10581-10589: ` attempt`\n", + "Group 2 found at 10589-10597: ` attempt`\n", + "Group 3 found at 10589-10597: ` attempt`\n", + "\n", + "Group 1 found at 11134-11142: ` entitle`\n", + "Group 2 found at 11142-11150: ` entitle`\n", + "Group 3 found at 11142-11150: ` entitle`\n", + "\n", + "Group 1 found at 11158-11163: ` hold`\n", + "Group 2 found at 11163-11168: ` hold`\n", + "Group 3 found at 11163-11168: ` hold`\n", + "(0, 179, 179)\n", + "detect_scores time: 1.99314284324646\n", + "detect_scores: Lyndon B. Johnson served as the Vice President un\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014348030090332031\n", + "detect_scores: The primary languages spoken in Haiti are French \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012018680572509766\n", + "detect_scores: Jay Leno was born in Columbus, Ohio. He grew up t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3956-3964: `s meteor`\n", + "Group 2 found at 3964-3972: `s meteor`\n", + "Group 3 found at 3964-3972: `s meteor`\n", + "\n", + "Group 1 found at 5729-5734: `e mov`\n", + "Group 2 found at 5734-5739: `e mov`\n", + "Group 3 found at 5734-5739: `e mov`\n", + "\n", + "Group 1 found at 7449-7459: `s favorite`\n", + "Group 2 found at 7459-7470: `s favorite `\n", + "Group 3 found at 7459-7469: `s favorite`\n", + "\n", + "Group 1 found at 9709-9715: `books `\n", + "Group 2 found at 9715-9721: `books `\n", + "Group 3 found at 9715-9721: `books `\n", + "(0, 59, 59)\n", + "detect_scores time: 1.9752399921417236\n", + "detect_scores: Armie Hammer portrayed Chip Bingley, who is a cha\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0062940120697021484\n", + "detect_scores: Tim Tebow played collegiate football at the Unive\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6464-6469: ` park`\n", + "Group 2 found at 6469-6474: ` park`\n", + "Group 3 found at 6469-6474: ` park`\n", + "\n", + "Group 1 found at 9839-9845: `ns sig`\n", + "Group 2 found at 9845-9851: `ns sig`\n", + "Group 3 found at 9845-9851: `ns sig`\n", + "\n", + "Group 1 found at 10992-11007: `s approximation`\n", + "Group 2 found at 11007-11023: `s approximation `\n", + "Group 3 found at 11007-11022: `s approximation`\n", + "\n", + "Group 1 found at 11414-11424: `gments fra`\n", + "Group 2 found at 11424-11434: `gments fra`\n", + "Group 3 found at 11424-11434: `gments fra`\n", + "(0, 73, 73)\n", + "detect_scores time: 2.218147039413452\n", + "detect_scores: Peyton Manning played professional American footb\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004820823669433594\n", + "detect_scores: The Carpathian Mountains are a range of mountains\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004675149917602539\n", + "detect_scores: Robert Burns, also known as Rabbie Burns and the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5700-5710: `s tutorial`\n", + "Group 2 found at 5710-5721: `s tutorial `\n", + "Group 3 found at 5710-5720: `s tutorial`\n", + "(0, 21, 21)\n", + "detect_scores time: 2.062520742416382\n", + "detect_scores: The iconic character Darth Vader was voiced by Ja\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0064618587493896484\n", + "detect_scores: Peyton Manning won Super Bowl 50 with the Denver \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006836891174316406\n", + "detect_scores: Justin Bieber was not actually \"born\" anywhere, a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018351078033447266\n", + "detect_scores: London Tipton is a character from the television \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011493921279907227\n", + "detect_scores: In the year 2011, David Beckham played as a playe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2814-2825: ` occurrence`\n", + "Group 2 found at 2825-2836: ` occurrence`\n", + "Group 3 found at 2825-2836: ` occurrence`\n", + "\n", + "Group 1 found at 5087-5094: `possum `\n", + "Group 2 found at 5094-5101: `possum `\n", + "Group 3 found at 5094-5101: `possum `\n", + "\n", + "Group 1 found at 10175-10183: ` Airline`\n", + "Group 2 found at 10183-10191: ` Airline`\n", + "Group 3 found at 10183-10191: ` Airline`\n", + "(0, 52, 52)\n", + "detect_scores time: 1.7643659114837646\n", + "detect_scores: Francisco Coronado was a Spanish conquistador and\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007865667343139648\n", + "detect_scores: Gilda Radner, the beloved comedian and actress kn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022330284118652344\n", + "detect_scores: Barack Obama, the 44th President of the United St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1995-2000: `ever `\n", + "Group 2 found at 2000-2005: `ever `\n", + "Group 3 found at 2000-2005: `ever `\n", + "\n", + "Group 1 found at 2094-2105: `possible im`\n", + "Group 2 found at 2105-2116: `possible im`\n", + "Group 3 found at 2105-2116: `possible im`\n", + "\n", + "Group 1 found at 5041-5049: ` archive`\n", + "Group 2 found at 5049-5057: ` archive`\n", + "Group 3 found at 5049-5057: ` archive`\n", + "\n", + "Group 1 found at 5756-5764: `relation`\n", + "Group 2 found at 5765-5773: `relation`\n", + "Group 3 found at 5765-5773: `relation`\n", + "\n", + "Group 1 found at 7533-7545: `tion distinc`\n", + "Group 2 found at 7545-7557: `tion distinc`\n", + "Group 3 found at 7545-7557: `tion distinc`\n", + "\n", + "Group 1 found at 8391-8402: ` instrument`\n", + "Group 2 found at 8402-8413: ` instrument`\n", + "Group 3 found at 8402-8413: ` instrument`\n", + "\n", + "Group 1 found at 9158-9166: `terbium `\n", + "Group 2 found at 9166-9174: `terbium `\n", + "Group 3 found at 9166-9174: `terbium `\n", + "\n", + "Group 1 found at 9556-9565: `ons nucle`\n", + "Group 2 found at 9565-9574: `ons nucle`\n", + "Group 3 found at 9565-9574: `ons nucle`\n", + "(0, 145, 145)\n", + "detect_scores time: 1.8214938640594482\n", + "detect_scores: Michael J. Fox's public personal life, including \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033698081970214844\n", + "detect_scores: Dolley Madison, often associated with the term \"D\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03252100944519043\n", + "detect_scores: Agatha Christie, an acclaimed British author know\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "ignored: \n", + "\n", + "exception: \n", + "(0, 0, 0)\n", + "detect_scores time: 0.01456594467163086\n", + "detect_scores: The four primary official and widely recognized l\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1423-1428: ` them`\n", + "Group 2 found at 1428-1433: ` them`\n", + "Group 3 found at 1428-1433: ` them`\n", + "\n", + "Group 1 found at 2543-2551: `relation`\n", + "Group 2 found at 2552-2560: `relation`\n", + "Group 3 found at 2552-2560: `relation`\n", + "\n", + "Group 1 found at 6926-6938: `ation comput`\n", + "Group 2 found at 6938-6950: `ation comput`\n", + "Group 3 found at 6938-6950: `ation comput`\n", + "\n", + "Group 1 found at 7214-7221: ` shadow`\n", + "Group 2 found at 7221-7228: ` shadow`\n", + "Group 3 found at 7221-7228: ` shadow`\n", + "\n", + "Group 1 found at 7959-7964: ` bolt`\n", + "Group 2 found at 7964-7969: ` bolt`\n", + "Group 3 found at 7964-7969: ` bolt`\n", + "\n", + "Group 1 found at 8762-8774: `ed entertain`\n", + "Group 2 found at 8774-8786: `ed entertain`\n", + "Group 3 found at 8774-8786: `ed entertain`\n", + "\n", + "Group 1 found at 9424-9432: `ly exact`\n", + "Group 2 found at 9432-9441: `ly exact `\n", + "Group 3 found at 9432-9440: `ly exact`\n", + "(0, 116, 116)\n", + "detect_scores time: 1.980903148651123\n", + "detect_scores: The National Rifle Association (NRA) Headquarters\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023491382598876953\n", + "detect_scores: Albert Einstein attended the Polytechnic School i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002515077590942383\n", + "detect_scores: As of my last update in April 2023, Bill Lee was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017271041870117188\n", + "detect_scores: Louis Armstrong was a legendary jazz musician ren\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014920949935913086\n", + "detect_scores: You are currently located within the Pacific Time\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004515886306762695\n", + "detect_scores: As of my last update, Hawaii Island (also known a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0049250125885009766\n", + "detect_scores: Rudolf Virchow, a renowned German physician and p\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5100-5110: ` continent`\n", + "Group 2 found at 5110-5120: ` continent`\n", + "Group 3 found at 5110-5120: ` continent`\n", + "\n", + "Group 1 found at 6102-6111: `s erratic`\n", + "Group 2 found at 6111-6121: `s erratic `\n", + "Group 3 found at 6111-6120: `s erratic`\n", + "\n", + "Group 1 found at 8136-8147: ` photograph`\n", + "Group 2 found at 8147-8158: ` photograph`\n", + "Group 3 found at 8147-8158: ` photograph`\n", + "\n", + "Group 1 found at 10113-10122: `finite in`\n", + "Group 2 found at 10122-10131: `finite in`\n", + "Group 3 found at 10122-10131: `finite in`\n", + "\n", + "Group 1 found at 10298-10305: `though `\n", + "Group 2 found at 10305-10312: `though `\n", + "Group 3 found at 10305-10312: `though `\n", + "\n", + "Group 1 found at 10560-10568: `ability `\n", + "Group 2 found at 10568-10576: `ability `\n", + "Group 3 found at 10568-10576: `ability `\n", + "\n", + "Group 1 found at 10827-10834: `parent `\n", + "Group 2 found at 10834-10841: `parent `\n", + "Group 3 found at 10834-10841: `parent `\n", + "ignored: greatgreat\n", + "exception: \n", + "\n", + "Group 1 found at 10987-10997: `rs neighbo`\n", + "Group 2 found at 10997-11007: `rs neighbo`\n", + "Group 3 found at 10997-11007: `rs neighbo`\n", + "(0, 143, 143)\n", + "detect_scores time: 2.2030389308929443\n", + "detect_scores: Gordon Brown attended the University of Edinburgh\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006087064743041992\n", + "detect_scores: Greece shares its land border to the north and we\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4942-4950: `rs scala`\n", + "Group 2 found at 4950-4958: `rs scala`\n", + "Group 3 found at 4950-4958: `rs scala`\n", + "\n", + "Group 1 found at 5191-5197: `units `\n", + "Group 2 found at 5197-5203: `units `\n", + "Group 3 found at 5197-5203: `units `\n", + "\n", + "Group 1 found at 5540-5551: `space hyper`\n", + "Group 2 found at 5551-5562: `space hyper`\n", + "Group 3 found at 5551-5562: `space hyper`\n", + "\n", + "Group 1 found at 9443-9449: `light `\n", + "Group 2 found at 9449-9455: `light `\n", + "Group 3 found at 9449-9455: `light `\n", + "(0, 62, 62)\n", + "detect_scores time: 1.8612079620361328\n", + "detect_scores: The Seattle Seahawks won Super Bowl XLVIII in 201\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006968975067138672\n", + "detect_scores: The character Donna Noble, who is a companion of \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009049177169799805\n", + "detect_scores: Dr. Seuss Education, also known as the Houghton M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5409-5414: `roach`\n", + "Group 2 found at 5415-5420: `roach`\n", + "Group 3 found at 5415-5420: `roach`\n", + "\n", + "Group 1 found at 6540-6546: `sheet `\n", + "Group 2 found at 6546-6552: `sheet `\n", + "Group 3 found at 6546-6552: `sheet `\n", + "\n", + "Group 1 found at 7616-7622: `s star`\n", + "Group 2 found at 7622-7629: `s star `\n", + "Group 3 found at 7622-7628: `s star`\n", + "\n", + "Group 1 found at 8204-8212: `speaker `\n", + "Group 2 found at 8212-8220: `speaker `\n", + "Group 3 found at 8212-8220: `speaker `\n", + "\n", + "Group 1 found at 8944-8954: `thing some`\n", + "Group 2 found at 8954-8964: `thing some`\n", + "Group 3 found at 8954-8964: `thing some`\n", + "\n", + "Group 1 found at 8968-8977: `something`\n", + "Group 2 found at 8977-8987: `something `\n", + "Group 3 found at 8977-8986: `something`\n", + "\n", + "Group 1 found at 8989-8999: `ybody ever`\n", + "Group 2 found at 8999-9009: `ybody ever`\n", + "Group 3 found at 8999-9009: `ybody ever`\n", + "\n", + "Group 1 found at 9269-9275: ` after`\n", + "Group 2 found at 9275-9281: ` after`\n", + "Group 3 found at 9275-9281: ` after`\n", + "\n", + "Group 1 found at 9408-9414: ` dozen`\n", + "Group 2 found at 9414-9421: ` dozen `\n", + "Group 3 found at 9414-9420: ` dozen`\n", + "\n", + "Group 1 found at 9725-9731: `round `\n", + "Group 2 found at 9731-9737: `round `\n", + "Group 3 found at 9731-9737: `round `\n", + "\n", + "Group 1 found at 9995-10001: `diver `\n", + "Group 2 found at 10001-10007: `diver `\n", + "Group 3 found at 10001-10007: `diver `\n", + "(0, 160, 160)\n", + "detect_scores time: 1.4254610538482666\n", + "detect_scores: Queensland, a state in Australia's northeast regi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6645-6651: `stone `\n", + "Group 2 found at 6651-6657: `stone `\n", + "Group 3 found at 6651-6657: `stone `\n", + "(0, 12, 12)\n", + "detect_scores time: 1.8234570026397705\n", + "detect_scores: The three official languages of Belgium are Dutch\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4107-4116: `employed `\n", + "Group 2 found at 4116-4125: `employed `\n", + "Group 3 found at 4116-4125: `employed `\n", + "\n", + "Group 1 found at 9484-9491: `table s`\n", + "Group 2 found at 9491-9498: `table s`\n", + "Group 3 found at 9491-9498: `table s`\n", + "(0, 32, 32)\n", + "detect_scores time: 1.7887139320373535\n", + "detect_scores: To find out which airport one would arrive at whe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2269-2274: `bound`\n", + "Group 2 found at 2275-2280: `bound`\n", + "Group 3 found at 2275-2280: `bound`\n", + "\n", + "Group 1 found at 4413-4426: `condition pre`\n", + "Group 2 found at 4426-4439: `condition pre`\n", + "Group 3 found at 4426-4439: `condition pre`\n", + "\n", + "Group 1 found at 4439-4448: `requisite`\n", + "Group 2 found at 4449-4458: `requisite`\n", + "Group 3 found at 4449-4458: `requisite`\n", + "\n", + "Group 1 found at 5344-5354: `ed expedit`\n", + "Group 2 found at 5354-5364: `ed expedit`\n", + "Group 3 found at 5354-5364: `ed expedit`\n", + "\n", + "Group 1 found at 7704-7713: `yone ever`\n", + "Group 2 found at 7713-7722: `yone ever`\n", + "Group 3 found at 7713-7722: `yone ever`\n", + "\n", + "Group 1 found at 7723-7730: `body no`\n", + "Group 2 found at 7730-7737: `body no`\n", + "Group 3 found at 7730-7737: `body no`\n", + "\n", + "Group 1 found at 8134-8139: ` chat`\n", + "Group 2 found at 8139-8144: ` chat`\n", + "Group 3 found at 8139-8144: ` chat`\n", + "\n", + "Group 1 found at 11103-11109: `or min`\n", + "Group 2 found at 11109-11115: `or min`\n", + "Group 3 found at 11109-11115: `or min`\n", + "(0, 130, 130)\n", + "detect_scores time: 2.0050711631774902\n", + "detect_scores: As of my knowledge cutoff in 2023, Collin Kaepern\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01270914077758789\n", + "detect_scores: Joe Flacco attended the University of Delaware, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03467917442321777\n", + "detect_scores: Theodore Roosevelt is not actually buried; instea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.1149289608001709\n", + "detect_scores: The Missouri River concludes its journey in St. L\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6247-6256: ` definite`\n", + "Group 2 found at 6256-6265: ` definite`\n", + "Group 3 found at 6256-6265: ` definite`\n", + "\n", + "Group 1 found at 7609-7617: ` entitle`\n", + "Group 2 found at 7617-7625: ` entitle`\n", + "Group 3 found at 7617-7625: ` entitle`\n", + "\n", + "Group 1 found at 7634-7644: ` ownership`\n", + "Group 2 found at 7644-7655: ` ownership `\n", + "Group 3 found at 7644-7654: ` ownership`\n", + "\n", + "Group 1 found at 11250-11261: ` photograph`\n", + "Group 2 found at 11261-11272: ` photograph`\n", + "Group 3 found at 11261-11272: ` photograph`\n", + "(0, 77, 77)\n", + "detect_scores time: 2.1954991817474365\n", + "detect_scores: In Thailand, the official and legal tender used f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004461050033569336\n", + "detect_scores: Khloé Kardashian's former husband was Lamar Odom.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04012489318847656\n", + "detect_scores: Mitt Romney, the former Governor and U.S Senator \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020418167114257812\n", + "detect_scores: France operates under a semi-presidential represe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015014171600341797\n", + "detect_scores: As of my last update in 2023, the current monarch\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002377033233642578\n", + "detect_scores: Stephen Hawking studied physics and mathematics a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.029760122299194336\n", + "detect_scores: Egypt is primarily associated with North Africa a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9220-9227: ` member`\n", + "Group 2 found at 9227-9234: ` member`\n", + "Group 3 found at 9227-9234: ` member`\n", + "\n", + "Group 1 found at 9819-9824: `span `\n", + "Group 2 found at 9824-9829: `span `\n", + "Group 3 found at 9824-9829: `span `\n", + "\n", + "Group 1 found at 11496-11502: `diver `\n", + "Group 2 found at 11502-11508: `diver `\n", + "Group 3 found at 11502-11508: `diver `\n", + "(0, 36, 36)\n", + "detect_scores time: 2.2060890197753906\n", + "detect_scores: Dr. Seuss, whose real name was Theodor Geisel, wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00949406623840332\n", + "detect_scores: Ben Roethlisbergers attended McKeesport Area High\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013659000396728516\n", + "detect_scores: George Harrison, a member of The Beatles and an a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7676-7686: `rs neighbo`\n", + "Group 2 found at 7686-7696: `rs neighbo`\n", + "Group 3 found at 7686-7696: `rs neighbo`\n", + "\n", + "Group 1 found at 9280-9286: `check `\n", + "Group 2 found at 9286-9292: `check `\n", + "Group 3 found at 9286-9292: `check `\n", + "(0, 32, 32)\n", + "detect_scores time: 2.2904608249664307\n", + "detect_scores: New England is a region in the northeastern Unite\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8625-8641: `ions representat`\n", + "Group 2 found at 8641-8657: `ions representat`\n", + "Group 3 found at 8641-8657: `ions representat`\n", + "\n", + "Group 1 found at 8943-8949: `s idea`\n", + "Group 2 found at 8949-8955: `s idea`\n", + "Group 3 found at 8949-8955: `s idea`\n", + "\n", + "Group 1 found at 10101-10110: `t documen`\n", + "Group 2 found at 10110-10119: `t documen`\n", + "Group 3 found at 10110-10119: `t documen`\n", + "(0, 62, 62)\n", + "detect_scores time: 2.0751748085021973\n", + "detect_scores: The Vietnam War took place in Southeast Asia, pri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007567167282104492\n", + "detect_scores: Gerald Ford, who assumed the presidency after Ric\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008456230163574219\n", + "detect_scores: The official currency of Italy is the Euro (€). I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006876945495605469\n", + "detect_scores: The current administrative, political, and cultur\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018970966339111328\n", + "detect_scores: Sir Ernest Rutherford attended several educationa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6283-6289: `s mace`\n", + "Group 2 found at 6289-6296: `s mace `\n", + "Group 3 found at 6289-6295: `s mace`\n", + "\n", + "Group 1 found at 6855-6861: `s cave`\n", + "Group 2 found at 6861-6867: `s cave`\n", + "Group 3 found at 6861-6867: `s cave`\n", + "(0, 25, 25)\n", + "detect_scores time: 2.0549349784851074\n", + "detect_scores: Brandon Roy is known to have played as a small fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003326416015625\n", + "detect_scores: Harvard University, an Ivy League research instit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5493-5499: `day to`\n", + "Group 2 found at 5499-5505: `day to`\n", + "Group 3 found at 5499-5505: `day to`\n", + "\n", + "Group 1 found at 8312-8318: `storm `\n", + "Group 2 found at 8318-8324: `storm `\n", + "Group 3 found at 8318-8324: `storm `\n", + "\n", + "Group 1 found at 9345-9350: `venge`\n", + "Group 2 found at 9351-9356: `venge`\n", + "Group 3 found at 9351-9356: `venge`\n", + "(0, 35, 35)\n", + "detect_scores time: 1.7523961067199707\n", + "detect_scores: Laos, officially known as the Lao People's Democr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5948-5963: `ostatics electr`\n", + "Group 2 found at 5963-5978: `ostatics electr`\n", + "Group 3 found at 5963-5978: `ostatics electr`\n", + "\n", + "Group 1 found at 7643-7648: `s cup`\n", + "Group 2 found at 7648-7654: `s cup `\n", + "Group 3 found at 7648-7653: `s cup`\n", + "\n", + "Group 1 found at 9015-9027: `ing decompos`\n", + "Group 2 found at 9027-9039: `ing decompos`\n", + "Group 3 found at 9027-9039: `ing decompos`\n", + "(0, 65, 65)\n", + "detect_scores time: 1.8316731452941895\n", + "detect_scores: Tyrese Gibson hails from Atlanta, Georgia in the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006705284118652344\n", + "detect_scores: Italy is a country located in Southern Europe, an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2162-2170: `s reform`\n", + "Group 2 found at 2170-2178: `s reform`\n", + "Group 3 found at 2170-2178: `s reform`\n", + "\n", + "Group 1 found at 2373-2381: ` upgrade`\n", + "Group 2 found at 2381-2389: ` upgrade`\n", + "Group 3 found at 2381-2389: ` upgrade`\n", + "\n", + "Group 1 found at 4881-4889: `way rail`\n", + "Group 2 found at 4889-4897: `way rail`\n", + "Group 3 found at 4889-4897: `way rail`\n", + "\n", + "Group 1 found at 4965-4971: `cycle `\n", + "Group 2 found at 4971-4977: `cycle `\n", + "Group 3 found at 4971-4977: `cycle `\n", + "\n", + "Group 1 found at 5410-5417: `market `\n", + "Group 2 found at 5417-5424: `market `\n", + "Group 3 found at 5417-5424: `market `\n", + "\n", + "Group 1 found at 9072-9077: `e tim`\n", + "Group 2 found at 9077-9082: `e tim`\n", + "Group 3 found at 9077-9082: `e tim`\n", + "(0, 84, 84)\n", + "detect_scores time: 1.9255528450012207\n", + "detect_scores: The Colorado River runs primarily within five U.S\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4711-4720: `patience `\n", + "Group 2 found at 4720-4729: `patience `\n", + "Group 3 found at 4720-4729: `patience `\n", + "\n", + "Group 1 found at 7198-7204: `pocket`\n", + "Group 2 found at 7205-7211: `pocket`\n", + "Group 3 found at 7205-7211: `pocket`\n", + "\n", + "Group 1 found at 7403-7411: `glasses `\n", + "Group 2 found at 7411-7419: `glasses `\n", + "Group 3 found at 7411-7419: `glasses `\n", + "\n", + "Group 1 found at 7759-7764: `e cav`\n", + "Group 2 found at 7764-7769: `e cav`\n", + "Group 3 found at 7764-7769: `e cav`\n", + "\n", + "Group 1 found at 8729-8738: `nts insta`\n", + "Group 2 found at 8738-8747: `nts insta`\n", + "Group 3 found at 8738-8747: `nts insta`\n", + "\n", + "Group 1 found at 8799-8805: `watch `\n", + "Group 2 found at 8805-8811: `watch `\n", + "Group 3 found at 8805-8811: `watch `\n", + "\n", + "Group 1 found at 9555-9562: `flower `\n", + "Group 2 found at 9562-9569: `flower `\n", + "Group 3 found at 9562-9569: `flower `\n", + "(0, 101, 101)\n", + "detect_scores time: 1.5936760902404785\n", + "detect_scores: I'm sorry, but as a source of information and in \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013020038604736328\n", + "detect_scores: Elvis Costello, the acclaimed English singer-song\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7662-7671: `e opposit`\n", + "Group 2 found at 7671-7680: `e opposit`\n", + "Group 3 found at 7671-7680: `e opposit`\n", + "\n", + "Group 1 found at 10300-10309: `crease de`\n", + "Group 2 found at 10309-10318: `crease de`\n", + "Group 3 found at 10309-10318: `crease de`\n", + "\n", + "Group 1 found at 10399-10405: `meter `\n", + "Group 2 found at 10405-10411: `meter `\n", + "Group 3 found at 10405-10411: `meter `\n", + "\n", + "Group 1 found at 10558-10563: `byte `\n", + "Group 2 found at 10563-10568: `byte `\n", + "Group 3 found at 10563-10568: `byte `\n", + "\n", + "Group 1 found at 10820-10826: `oan gr`\n", + "Group 2 found at 10826-10832: `oan gr`\n", + "Group 3 found at 10826-10832: `oan gr`\n", + "\n", + "Group 1 found at 11151-11157: `colon `\n", + "Group 2 found at 11157-11163: `colon `\n", + "Group 3 found at 11157-11163: `colon `\n", + "(0, 82, 82)\n", + "detect_scores time: 2.068855047225952\n", + "detect_scores: The Gobi Desert is primarily situated in northern\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012203216552734375\n", + "detect_scores: Germany is located in the continent of Europe. It\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036020278930664062\n", + "detect_scores: The primary languages spoken in Turkey are Turkis\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003905057907104492\n", + "detect_scores: Jeremy Lin currently plays basketball in the NBA \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0054590702056884766\n", + "detect_scores: The Seychelles are an archipelago country located\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017989158630371094\n", + "detect_scores: William Morris attended Exeter College at the Uni\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004662990570068359\n", + "detect_scores: Mount St. Helens is located in the U.S. state of \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013840198516845703\n", + "detect_scores: Jimmy Savile was a British television presenter, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4744-4754: `duction in`\n", + "Group 2 found at 4754-4764: `duction in`\n", + "Group 3 found at 4754-4764: `duction in`\n", + "\n", + "Group 1 found at 9832-9840: `parents `\n", + "Group 2 found at 9840-9848: `parents `\n", + "Group 3 found at 9840-9848: `parents `\n", + "\n", + "Group 1 found at 10812-10821: `election `\n", + "Group 2 found at 10821-10830: `election `\n", + "Group 3 found at 10821-10830: `election `\n", + "(0, 54, 54)\n", + "detect_scores time: 1.9590411186218262\n", + "detect_scores: The Panama Canal is entirely within one country, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008871793746948242\n", + "detect_scores: Charlie Chaplin was a British actor, comedian, an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4380-4389: ` discover`\n", + "Group 2 found at 4389-4398: ` discover`\n", + "Group 3 found at 4389-4398: ` discover`\n", + "\n", + "Group 1 found at 5663-5668: `byte `\n", + "Group 2 found at 5668-5673: `byte `\n", + "Group 3 found at 5668-5673: `byte `\n", + "\n", + "Group 1 found at 5756-5761: `e hat`\n", + "Group 2 found at 5761-5766: `e hat`\n", + "Group 3 found at 5761-5766: `e hat`\n", + "\n", + "Group 1 found at 8281-8286: `board`\n", + "Group 2 found at 8287-8292: `board`\n", + "Group 3 found at 8287-8292: `board`\n", + "\n", + "Group 1 found at 8693-8700: `spring `\n", + "Group 2 found at 8700-8707: `spring `\n", + "Group 3 found at 8700-8707: `spring `\n", + "\n", + "Group 1 found at 9678-9686: `relation`\n", + "Group 2 found at 9687-9695: `relation`\n", + "Group 3 found at 9687-9695: `relation`\n", + "(0, 80, 80)\n", + "detect_scores time: 1.8163702487945557\n", + "detect_scores: Albert Einstein taught primarily as a professor o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.049761056900024414\n", + "detect_scores: Peter Griffin, who is also one of Family Guy's ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010252714157104492\n", + "detect_scores: George W. Bush, the 43rd President of the United \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4105-4110: `chips`\n", + "Group 2 found at 4111-4116: `chips`\n", + "Group 3 found at 4111-4116: `chips`\n", + "\n", + "Group 1 found at 4143-4148: `board`\n", + "Group 2 found at 4149-4154: `board`\n", + "Group 3 found at 4149-4154: `board`\n", + "\n", + "Group 1 found at 6609-6616: `s fruit`\n", + "Group 2 found at 6616-6624: `s fruit `\n", + "Group 3 found at 6616-6623: `s fruit`\n", + "\n", + "Group 1 found at 7228-7233: `paper`\n", + "Group 2 found at 7234-7239: `paper`\n", + "Group 3 found at 7234-7239: `paper`\n", + "\n", + "Group 1 found at 8523-8533: ` Container`\n", + "Group 2 found at 8533-8543: ` Container`\n", + "Group 3 found at 8533-8543: ` Container`\n", + "(0, 68, 68)\n", + "detect_scores time: 1.7769639492034912\n", + "detect_scores: New York City is not a part of any U.S. State bec\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7530-7537: ` murder`\n", + "Group 2 found at 7537-7544: ` murder`\n", + "Group 3 found at 7537-7544: ` murder`\n", + "(0, 14, 14)\n", + "detect_scores time: 1.7561981678009033\n", + "detect_scores: Bruce Lee, a renowned martial artist and actor fa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005642890930175781\n", + "detect_scores: In England, the official and legal tender is know\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007913351058959961\n", + "detect_scores: Benjamin Franklin, one of the Founding Fathers of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5647-5653: `board `\n", + "Group 2 found at 5653-5659: `board `\n", + "Group 3 found at 5653-5659: `board `\n", + "\n", + "Group 1 found at 7859-7864: `warm `\n", + "Group 2 found at 7864-7869: `warm `\n", + "Group 3 found at 7864-7869: `warm `\n", + "\n", + "Group 1 found at 9694-9699: ` fine`\n", + "Group 2 found at 9699-9704: ` fine`\n", + "Group 3 found at 9699-9704: ` fine`\n", + "\n", + "Group 1 found at 9984-9993: `election `\n", + "Group 2 found at 9993-10002: `election `\n", + "Group 3 found at 9993-10002: `election `\n", + "\n", + "Group 1 found at 10082-10094: ` alternative`\n", + "Group 2 found at 10094-10106: ` alternative`\n", + "Group 3 found at 10094-10106: ` alternative`\n", + "\n", + "Group 1 found at 10318-10325: `gress e`\n", + "Group 2 found at 10325-10332: `gress e`\n", + "Group 3 found at 10325-10332: `gress e`\n", + "(0, 88, 88)\n", + "detect_scores time: 2.280893087387085\n", + "detect_scores: The United Kingdom (UK) is a sovereign country th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "ignored: \n", + " \n", + "\n", + "exception: \n", + "\n", + "Group 1 found at 1685-1697: `ently perman`\n", + "Group 2 found at 1697-1709: `ently perman`\n", + "Group 3 found at 1697-1709: `ently perman`\n", + "\n", + "Group 1 found at 2125-2135: `actions re`\n", + "Group 2 found at 2135-2145: `actions re`\n", + "Group 3 found at 2135-2145: `actions re`\n", + "\n", + "Group 1 found at 2214-2227: `dependencies `\n", + "Group 2 found at 2227-2240: `dependencies `\n", + "Group 3 found at 2227-2240: `dependencies `\n", + "\n", + "Group 1 found at 4085-4093: ` license`\n", + "Group 2 found at 4093-4101: ` license`\n", + "Group 3 found at 4093-4101: ` license`\n", + "\n", + "Group 1 found at 5988-5996: `ability `\n", + "Group 2 found at 5996-6004: `ability `\n", + "Group 3 found at 5996-6004: `ability `\n", + "\n", + "Group 1 found at 8555-8561: ` blind`\n", + "Group 2 found at 8561-8567: ` blind`\n", + "Group 3 found at 8561-8567: ` blind`\n", + "\n", + "Group 1 found at 8848-8856: ` exhibit`\n", + "Group 2 found at 8856-8864: ` exhibit`\n", + "Group 3 found at 8856-8864: ` exhibit`\n", + "\n", + "Group 1 found at 9310-9319: `time down`\n", + "Group 2 found at 9319-9329: `time down `\n", + "Group 3 found at 9319-9328: `time down`\n", + "\n", + "Group 1 found at 9458-9468: `ed contain`\n", + "Group 2 found at 9468-9479: `ed contain `\n", + "Group 3 found at 9468-9478: `ed contain`\n", + "\n", + "Group 1 found at 9483-9491: `ed secur`\n", + "Group 2 found at 9491-9499: `ed secur`\n", + "Group 3 found at 9491-9499: `ed secur`\n", + "\n", + "Group 1 found at 9546-9553: `able st`\n", + "Group 2 found at 9553-9560: `able st`\n", + "Group 3 found at 9553-9560: `able st`\n", + "\n", + "Group 1 found at 9800-9807: `coming `\n", + "Group 2 found at 9807-9814: `coming `\n", + "Group 3 found at 9807-9814: `coming `\n", + "\n", + "Group 1 found at 10085-10092: ` intent`\n", + "Group 2 found at 10092-10099: ` intent`\n", + "Group 3 found at 10092-10099: ` intent`\n", + "\n", + "Group 1 found at 11017-11026: `illions b`\n", + "Group 2 found at 11026-11035: `illions b`\n", + "Group 3 found at 11026-11035: `illions b`\n", + "\n", + "Group 1 found at 11062-11068: `s unit`\n", + "Group 2 found at 11068-11075: `s unit `\n", + "Group 3 found at 11068-11074: `s unit`\n", + "(0, 259, 259)\n", + "detect_scores time: 2.1238839626312256\n", + "detect_scores: Barack Obama attended several educational institu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5184-5193: `meter ohm`\n", + "Group 2 found at 5193-5203: `meter ohm `\n", + "Group 3 found at 5193-5202: `meter ohm`\n", + "\n", + "Group 1 found at 6491-6496: ` cave`\n", + "Group 2 found at 6496-6501: ` cave`\n", + "Group 3 found at 6496-6501: ` cave`\n", + "\n", + "Group 1 found at 9782-9789: `s cloud`\n", + "Group 2 found at 9789-9797: `s cloud `\n", + "Group 3 found at 9789-9796: `s cloud`\n", + "(0, 44, 44)\n", + "detect_scores time: 1.6705248355865479\n", + "detect_scores: The primary official languages in China are Manda\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005978107452392578\n", + "detect_scores: The Soviet Union's most prominent and influential\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6147-6166: `dependent variable `\n", + "Group 2 found at 6166-6185: `dependent variable `\n", + "Group 3 found at 6166-6185: `dependent variable `\n", + "(0, 38, 38)\n", + "detect_scores time: 1.7203700542449951\n", + "detect_scores: Cindy Sherman is renowned primarily as a conceptu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04585385322570801\n", + "detect_scores: Australia uses the Australian Dollar (AUD) as its\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1209-1214: `ever `\n", + "Group 2 found at 1214-1219: `ever `\n", + "Group 3 found at 1214-1219: `ever `\n", + "\n", + "Group 1 found at 7460-7465: `quake`\n", + "Group 2 found at 7466-7471: `quake`\n", + "Group 3 found at 7466-7471: `quake`\n", + "\n", + "Group 1 found at 8570-8584: `communication `\n", + "Group 2 found at 8584-8598: `communication `\n", + "Group 3 found at 8584-8598: `communication `\n", + "\n", + "Group 1 found at 10965-10973: `on polyg`\n", + "Group 2 found at 10973-10981: `on polyg`\n", + "Group 3 found at 10973-10981: `on polyg`\n", + "(0, 65, 65)\n", + "detect_scores time: 2.087751865386963\n", + "detect_scores: For flying directly into Rome, you would typicall\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006044864654541016\n", + "detect_scores: Martin Luther King Jr. was primarily raised in At\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012033939361572266\n", + "detect_scores: LeBron James's first professional basketball seas\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021550655364990234\n", + "detect_scores: Japan operates under a constitutional monarchy. T\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007850885391235352\n", + "detect_scores: Mitt Romney's father, George W. Romneys Sr., was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0025191307067871094\n", + "detect_scores: I'm sorry, but as a language model developed by O\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0024890899658203125\n", + "detect_scores: St. Paul, Virginia is located within Goochland Co\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 4.100799560546875e-05\n", + "detect_scores: Russia shares its borders with several other coun\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2720-2730: `incidental`\n", + "Group 2 found at 2731-2741: `incidental`\n", + "Group 3 found at 2731-2741: `incidental`\n", + "\n", + "Group 1 found at 4815-4828: ` distribution`\n", + "Group 2 found at 4828-4841: ` distribution`\n", + "Group 3 found at 4828-4841: ` distribution`\n", + "\n", + "Group 1 found at 5014-5022: `iles dec`\n", + "Group 2 found at 5022-5030: `iles dec`\n", + "Group 3 found at 5022-5030: `iles dec`\n", + "\n", + "Group 1 found at 5076-5086: ` symmetric`\n", + "Group 2 found at 5086-5096: ` symmetric`\n", + "Group 3 found at 5086-5096: ` symmetric`\n", + "\n", + "Group 1 found at 8033-8039: ` charm`\n", + "Group 2 found at 8039-8045: ` charm`\n", + "Group 3 found at 8039-8045: ` charm`\n", + "(0, 95, 95)\n", + "detect_scores time: 1.9787869453430176\n", + "detect_scores: Karl Benz attended the Karlsruhe Institute of Tec\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0060329437255859375\n", + "detect_scores: Morgan Freeman is a well-known American actor, an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010113000869750977\n", + "detect_scores: Carolus Linnaeus, also known as Carl von Linné or\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009561777114868164\n", + "detect_scores: Anaheim, California operates in the Pacific Time \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015778541564941406\n", + "detect_scores: The Orioles, officially known as Baltimore Oriole\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006415128707885742\n", + "detect_scores: Amelia Earhart was an American aviation pioneer a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5648-5658: ` datapoint`\n", + "Group 2 found at 5658-5669: ` datapoint `\n", + "Group 3 found at 5658-5668: ` datapoint`\n", + "\n", + "Group 1 found at 5981-5987: `s step`\n", + "Group 2 found at 5987-5993: `s step`\n", + "Group 3 found at 5987-5993: `s step`\n", + "\n", + "Group 1 found at 8385-8393: `cord con`\n", + "Group 2 found at 8393-8401: `cord con`\n", + "Group 3 found at 8393-8401: `cord con`\n", + "\n", + "Group 1 found at 8929-8938: `er employ`\n", + "Group 2 found at 8938-8947: `er employ`\n", + "Group 3 found at 8938-8947: `er employ`\n", + "(0, 67, 67)\n", + "detect_scores time: 1.9800291061401367\n", + "detect_scores: Margaret Hoover attended Stanford University for \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0071489810943603516\n", + "detect_scores: As of my last update in April 2023, Stefano Pioli\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003345966339111328\n", + "detect_scores: Reese Witherspoon got married twice. Her first ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002960205078125\n", + "detect_scores: When planning a trip, it's essential not only for\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2906-2911: `ever `\n", + "Group 2 found at 2911-2916: `ever `\n", + "Group 3 found at 2911-2916: `ever `\n", + "\n", + "Group 1 found at 2989-2998: `nity infi`\n", + "Group 2 found at 2998-3007: `nity infi`\n", + "Group 3 found at 2998-3007: `nity infi`\n", + "\n", + "Group 1 found at 8396-8407: `variance co`\n", + "Group 2 found at 8407-8418: `variance co`\n", + "Group 3 found at 8407-8418: `variance co`\n", + "\n", + "Group 1 found at 11475-11480: `an Ir`\n", + "Group 2 found at 11480-11485: `an Ir`\n", + "Group 3 found at 11480-11485: `an Ir`\n", + "(0, 60, 60)\n", + "detect_scores time: 2.157154083251953\n", + "detect_scores: The Ultimate Fighting Championship (UFC) Headquar\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004876852035522461\n", + "detect_scores: William Shatner is the actor who portrayed Captai\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002090930938720703\n", + "detect_scores: Albert Pujol, a professional baseball player from\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007059812545776367\n", + "detect_scores: Sweden operates under a parliamentary democracy w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07280111312866211\n", + "detect_scores: William Shakespeare became world-famous primarily\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "ignored: \n", + " \n", + "exception: \n", + "(0, 0, 0)\n", + "detect_scores time: 0.3627007007598877\n", + "detect_scores: Russia imports a variety of goods and commodities\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3891-3897: `anny n`\n", + "Group 2 found at 3897-3903: `anny n`\n", + "Group 3 found at 3897-3903: `anny n`\n", + "\n", + "Group 1 found at 4890-4899: `currants `\n", + "Group 2 found at 4899-4908: `currants `\n", + "Group 3 found at 4899-4908: `currants `\n", + "\n", + "Group 1 found at 6587-6594: `violet `\n", + "Group 2 found at 6594-6601: `violet `\n", + "Group 3 found at 6594-6601: `violet `\n", + "\n", + "Group 1 found at 7812-7827: `conciliation re`\n", + "Group 2 found at 7827-7842: `conciliation re`\n", + "Group 3 found at 7827-7842: `conciliation re`\n", + "\n", + "Group 1 found at 7992-8001: `agree dis`\n", + "Group 2 found at 8001-8010: `agree dis`\n", + "Group 3 found at 8001-8010: `agree dis`\n", + "\n", + "Group 1 found at 9343-9350: `es trop`\n", + "Group 2 found at 9350-9357: `es trop`\n", + "Group 3 found at 9350-9357: `es trop`\n", + "\n", + "Group 1 found at 9358-9367: `s element`\n", + "Group 2 found at 9367-9377: `s element `\n", + "Group 3 found at 9367-9376: `s element`\n", + "(0, 125, 125)\n", + "detect_scores time: 1.8372249603271484\n", + "detect_scores: The currency used in Switzerland is known as the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012080669403076172\n", + "detect_scores: In Australia, the primary language spoken is Engl\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3493-3506: `configurable `\n", + "Group 2 found at 3506-3519: `configurable `\n", + "Group 3 found at 3506-3519: `configurable `\n", + "\n", + "Group 1 found at 4886-4895: `s formula`\n", + "Group 2 found at 4895-4905: `s formula `\n", + "Group 3 found at 4895-4904: `s formula`\n", + "\n", + "Group 1 found at 5901-5906: `wind `\n", + "Group 2 found at 5906-5911: `wind `\n", + "Group 3 found at 5906-5911: `wind `\n", + "(0, 55, 55)\n", + "detect_scores time: 1.8776869773864746\n", + "detect_scores: Gerald Ford, the 38th President of the United Sta\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002457857131958008\n", + "detect_scores: Kevin Love, the professional basketball player fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "ignored: ceplacepla\n", + "exception: \n", + "\n", + "Group 1 found at 7321-7331: `magnetism `\n", + "Group 2 found at 7331-7341: `magnetism `\n", + "Group 3 found at 7331-7341: `magnetism `\n", + "(0, 20, 20)\n", + "detect_scores time: 1.8016059398651123\n", + "detect_scores: The Temple of Karnak, also known as Waset or Ipet\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6580-6588: `servant `\n", + "Group 2 found at 6588-6596: `servant `\n", + "Group 3 found at 6588-6596: `servant `\n", + "\n", + "Group 1 found at 7025-7035: ` diversion`\n", + "Group 2 found at 7035-7046: ` diversion `\n", + "Group 3 found at 7035-7045: ` diversion`\n", + "\n", + "Group 1 found at 7974-7979: `house`\n", + "Group 2 found at 7980-7985: `house`\n", + "Group 3 found at 7980-7985: `house`\n", + "\n", + "Group 1 found at 8603-8610: `s digit`\n", + "Group 2 found at 8610-8618: `s digit `\n", + "Group 3 found at 8610-8617: `s digit`\n", + "\n", + "Group 1 found at 8873-8883: ` mechanism`\n", + "Group 2 found at 8883-8893: ` mechanism`\n", + "Group 3 found at 8883-8893: ` mechanism`\n", + "\n", + "Group 1 found at 8913-8923: `ment imple`\n", + "Group 2 found at 8923-8933: `ment imple`\n", + "Group 3 found at 8923-8933: `ment imple`\n", + "\n", + "Group 1 found at 9493-9503: ` operation`\n", + "Group 2 found at 9503-9513: ` operation`\n", + "Group 3 found at 9503-9513: ` operation`\n", + "(0, 123, 123)\n", + "detect_scores time: 2.141331911087036\n", + "detect_scores: When traveling to Cuba, it's important to be awar\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8807-8815: ` Archive`\n", + "Group 2 found at 8815-8823: ` Archive`\n", + "Group 3 found at 8815-8823: ` Archive`\n", + "(0, 16, 16)\n", + "detect_scores time: 1.6523807048797607\n", + "detect_scores: When traveling to Morocco, the official and most \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1736-1744: ` happens`\n", + "Group 2 found at 1744-1752: ` happens`\n", + "Group 3 found at 1744-1752: ` happens`\n", + "\n", + "Group 1 found at 3938-3950: `eable upgrad`\n", + "Group 2 found at 3950-3962: `eable upgrad`\n", + "Group 3 found at 3950-3962: `eable upgrad`\n", + "\n", + "Group 1 found at 4015-4028: `purpose multi`\n", + "Group 2 found at 4028-4041: `purpose multi`\n", + "Group 3 found at 4028-4041: `purpose multi`\n", + "\n", + "Group 1 found at 10192-10198: `books `\n", + "Group 2 found at 10198-10204: `books `\n", + "Group 3 found at 10198-10204: `books `\n", + "\n", + "Group 1 found at 10677-10684: `ports s`\n", + "Group 2 found at 10684-10691: `ports s`\n", + "Group 3 found at 10684-10691: `ports s`\n", + "(0, 92, 92)\n", + "detect_scores time: 1.8724620342254639\n", + "detect_scores: In Japan, the term for \"money\" is お金 (okane). How\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10539-10544: `ship `\n", + "Group 2 found at 10544-10549: `ship `\n", + "Group 3 found at 10544-10549: `ship `\n", + "\n", + "Group 1 found at 10951-10960: ` thousand`\n", + "Group 2 found at 10960-10969: ` thousand`\n", + "Group 3 found at 10960-10969: ` thousand`\n", + "(0, 28, 28)\n", + "detect_scores time: 2.0559208393096924\n", + "detect_scores: Mother Teresa was of Albanian origin but she spen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009093284606933594\n", + "detect_scores: Spain shares its land border primarily to the nor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.051550865173339844\n", + "detect_scores: China, officially known as the People's Republic \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7654-7661: `nimbus `\n", + "Group 2 found at 7661-7668: `nimbus `\n", + "Group 3 found at 7661-7668: `nimbus `\n", + "\n", + "Group 1 found at 7902-7914: ` interaction`\n", + "Group 2 found at 7914-7926: ` interaction`\n", + "Group 3 found at 7914-7926: ` interaction`\n", + "(0, 38, 38)\n", + "detect_scores time: 2.1365301609039307\n", + "detect_scores: West St. Paul, often referred to simply as \"West \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0026912689208984375\n", + "detect_scores: Baron d'Holbach, whose real name was Claude-Adrie\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03189706802368164\n", + "detect_scores: Carlos Boozer played professional basketball in t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6291-6301: `arguments `\n", + "Group 2 found at 6301-6311: `arguments `\n", + "Group 3 found at 6301-6311: `arguments `\n", + "(0, 20, 20)\n", + "detect_scores time: 2.090669870376587\n", + "detect_scores: Albert Speer was a German architect and Nazi Part\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2969-2980: `ly internal`\n", + "Group 2 found at 2980-2991: `ly internal`\n", + "Group 3 found at 2980-2991: `ly internal`\n", + "\n", + "Group 1 found at 7001-7012: `s sentiment`\n", + "Group 2 found at 7012-7024: `s sentiment `\n", + "Group 3 found at 7012-7023: `s sentiment`\n", + "\n", + "Group 1 found at 7074-7082: `s motion`\n", + "Group 2 found at 7082-7091: `s motion `\n", + "Group 3 found at 7082-7090: `s motion`\n", + "\n", + "Group 1 found at 9354-9362: `ability `\n", + "Group 2 found at 9362-9370: `ability `\n", + "Group 3 found at 9362-9370: `ability `\n", + "\n", + "Group 1 found at 9704-9714: `s particle`\n", + "Group 2 found at 9714-9725: `s particle `\n", + "Group 3 found at 9714-9724: `s particle`\n", + "\n", + "Group 1 found at 10864-10870: `rings `\n", + "Group 2 found at 10870-10876: `rings `\n", + "Group 3 found at 10870-10876: `rings `\n", + "\n", + "Group 1 found at 11048-11054: `stone `\n", + "Group 2 found at 11054-11060: `stone `\n", + "Group 3 found at 11054-11060: `stone `\n", + "\n", + "Group 1 found at 11509-11514: `e hat`\n", + "Group 2 found at 11514-11519: `e hat`\n", + "Group 3 found at 11514-11519: `e hat`\n", + "(0, 133, 133)\n", + "detect_scores time: 2.166317939758301\n", + "detect_scores: Emperor Hirohito, also known as Showa-tennō in Ja\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4513-4518: `mount`\n", + "Group 2 found at 4519-4524: `mount`\n", + "Group 3 found at 4519-4524: `mount`\n", + "\n", + "Group 1 found at 10202-10210: `ed retir`\n", + "Group 2 found at 10210-10218: `ed retir`\n", + "Group 3 found at 10210-10218: `ed retir`\n", + "(0, 27, 27)\n", + "detect_scores time: 2.215456962585449\n", + "detect_scores: In The Netherlands, Dutch is spoken by its inhabi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0074748992919921875\n", + "detect_scores: The primary language spoken throughout Greece is \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00363922119140625\n", + "detect_scores: Henri Matisse was a renowned French artist, widel\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011858224868774414\n", + "detect_scores: The first novel Charles Dickens published is beli\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008133172988891602\n", + "detect_scores: Michael Jordan attended Emsley A. Laney High Scho\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005473613739013672\n", + "detect_scores: Mount St. Helens Volcanic National Monument, loca\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012785911560058594\n", + "detect_scores: Robert Burns, also known as Rabbie Burns, is most\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2572-2580: ` present`\n", + "Group 2 found at 2580-2588: ` present`\n", + "Group 3 found at 2580-2588: ` present`\n", + "\n", + "Group 1 found at 5217-5224: `master `\n", + "Group 2 found at 5224-5231: `master `\n", + "Group 3 found at 5224-5231: `master `\n", + "\n", + "Group 1 found at 7427-7433: `s cave`\n", + "Group 2 found at 7433-7439: `s cave`\n", + "Group 3 found at 7433-7439: `s cave`\n", + "(0, 42, 42)\n", + "detect_scores time: 1.9530301094055176\n", + "detect_scores: Claude Debussy was a renowned French composer kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007542133331298828\n", + "detect_scores: Hank Basket was a member of the Indiana Pacers in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012900829315185547\n", + "detect_scores: The Pittsburgh Steelers are a professional Americ\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10887-10896: ` constant`\n", + "Group 2 found at 10896-10905: ` constant`\n", + "Group 3 found at 10896-10905: ` constant`\n", + "\n", + "Group 1 found at 11426-11431: `o nan`\n", + "Group 2 found at 11431-11436: `o nan`\n", + "Group 3 found at 11431-11436: `o nan`\n", + "\n", + "Group 1 found at 11437-11443: `meter `\n", + "Group 2 found at 11443-11449: `meter `\n", + "Group 3 found at 11443-11449: `meter `\n", + "\n", + "Group 1 found at 11465-11475: `meter kilo`\n", + "Group 2 found at 11475-11485: `meter kilo`\n", + "Group 3 found at 11475-11485: `meter kilo`\n", + "\n", + "Group 1 found at 11485-11490: `gram `\n", + "Group 2 found at 11490-11495: `gram `\n", + "Group 3 found at 11490-11495: `gram `\n", + "\n", + "Group 1 found at 11560-11567: `joules `\n", + "Group 2 found at 11567-11574: `joules `\n", + "Group 3 found at 11567-11574: `joules `\n", + "\n", + "Group 1 found at 11659-11664: ` volt`\n", + "Group 2 found at 11664-11669: ` volt`\n", + "Group 3 found at 11664-11669: ` volt`\n", + "(0, 94, 94)\n", + "detect_scores time: 2.2350471019744873\n", + "detect_scores: Sir Isaac Newton attended the University of Cambr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0048999786376953125\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01100921630859375\n", + "detect_scores: The capital city of the Eastern Roman Empire, als\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6656-6663: `coming `\n", + "Group 2 found at 6663-6670: `coming `\n", + "Group 3 found at 6663-6670: `coming `\n", + "\n", + "Group 1 found at 7476-7485: ` opposite`\n", + "Group 2 found at 7485-7494: ` opposite`\n", + "Group 3 found at 7485-7494: ` opposite`\n", + "\n", + "Group 1 found at 7654-7660: `s sort`\n", + "Group 2 found at 7660-7666: `s sort`\n", + "Group 3 found at 7660-7666: `s sort`\n", + "\n", + "Group 1 found at 9042-9048: ` scale`\n", + "Group 2 found at 9048-9054: ` scale`\n", + "Group 3 found at 9048-9054: ` scale`\n", + "\n", + "Group 1 found at 9869-9876: `tion mo`\n", + "Group 2 found at 9876-9883: `tion mo`\n", + "Group 3 found at 9876-9883: `tion mo`\n", + "\n", + "Group 1 found at 10076-10084: `s figure`\n", + "Group 2 found at 10084-10092: `s figure`\n", + "Group 3 found at 10084-10092: `s figure`\n", + "(0, 86, 86)\n", + "detect_scores time: 2.17958402633667\n", + "detect_scores: Edward ScissmorHands is a character from the 1990\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029408931732177734\n", + "detect_scores: LeBron James's debut NBA (National Basketball Ass\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031249523162841797\n", + "detect_scores: Giuliana Ranzit grew up in Italy. She was born on\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036401748657226562\n", + "detect_scores: The major cities of Ukraine include Kyiv (the cap\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001004934310913086\n", + "detect_scores: Brian Dawkins played football in the National Foo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03143310546875\n", + "detect_scores: China primarily uses the Renminbi (RMB), also kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007784843444824219\n", + "detect_scores: The Indianapolis Colts compete in the National Fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004170894622802734\n", + "detect_scores: Perpignán, often spelled \"Perpiñàn\" in Català to \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014260053634643555\n", + "detect_scores: The Pittsburgh Steelers most recently won Super B\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005461215972900391\n", + "detect_scores: The Giza Pyramid Complex, home to the iconic Egyp\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006231069564819336\n", + "detect_scores: The Midwestern United States, commonly referred t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0051267147064208984\n", + "detect_scores: Annie Oakley, the famous sharpshooter and exhibit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00423884391784668\n", + "detect_scores: Lex Luthor is a fictional character appearing in \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017427921295166016\n", + "detect_scores: The Zambezia River, often referred to as simply \"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008390188217163086\n", + "detect_scores: Nigeria operates within West Africa Time (WAT), w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007407188415527344\n", + "detect_scores: Mitt Romney, the American politician and business\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0032241344451904297\n", + "detect_scores: South Dakota spans two primary time zones. The we\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02211141586303711\n", + "detect_scores: Jason Mraz hails from Saint Louis, Missouri, Unit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017352104187011719\n", + "detect_scores: Texarkana, Arkansas is located within Miller Coun\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016281604766845703\n", + "detect_scores: Ludwig van Beethoven lived during the transition \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016232013702392578\n", + "detect_scores: In Costa Rica, the primary language spoken is Spa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005925178527832031\n", + "detect_scores: Hank Marvin is a British rock guitarist, singer a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.025875091552734375\n", + "detect_scores: Winona Ryder played the role of Deanna Troi, a co\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005197763442993164\n", + "detect_scores: I'm sorry, but I can't provide information on tha\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00035500526428222656\n", + "detect_scores: Clay Matthews Jr. attended the University of Sout\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6287-6293: `script`\n", + "Group 2 found at 6294-6300: `script`\n", + "Group 3 found at 6294-6300: `script`\n", + "\n", + "Group 1 found at 7069-7074: `mail `\n", + "Group 2 found at 7074-7079: `mail `\n", + "Group 3 found at 7074-7079: `mail `\n", + "\n", + "Group 1 found at 8981-8987: `a Mett`\n", + "Group 2 found at 8987-8993: `a Mett`\n", + "Group 3 found at 8987-8993: `a Mett`\n", + "(0, 35, 35)\n", + "detect_scores time: 1.6866779327392578\n", + "detect_scores: I cannot provide real-time information. However, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001435995101928711\n", + "detect_scores: Princess Leia Organa, born as Luke Skywalker's tw\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6385-6391: ` photo`\n", + "Group 2 found at 6391-6397: ` photo`\n", + "Group 3 found at 6391-6397: ` photo`\n", + "\n", + "Group 1 found at 7731-7738: ` welder`\n", + "Group 2 found at 7738-7745: ` welder`\n", + "Group 3 found at 7738-7745: ` welder`\n", + "\n", + "Group 1 found at 9589-9595: ` arrow`\n", + "Group 2 found at 9595-9601: ` arrow`\n", + "Group 3 found at 9595-9601: ` arrow`\n", + "\n", + "Group 1 found at 10552-10560: `ability `\n", + "Group 2 found at 10560-10568: `ability `\n", + "Group 3 found at 10560-10568: `ability `\n", + "(0, 54, 54)\n", + "detect_scores time: 1.997506856918335\n", + "detect_scores: China, officially known as the People's Republic \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7238-7243: `step `\n", + "Group 2 found at 7243-7248: `step `\n", + "Group 3 found at 7243-7248: `step `\n", + "\n", + "Group 1 found at 10866-10875: `finite in`\n", + "Group 2 found at 10875-10884: `finite in`\n", + "Group 3 found at 10875-10884: `finite in`\n", + "\n", + "Group 1 found at 11857-11867: `s favorite`\n", + "Group 2 found at 11867-11878: `s favorite `\n", + "Group 3 found at 11867-11877: `s favorite`\n", + "\n", + "Group 1 found at 11934-11944: ` recommend`\n", + "Group 2 found at 11944-11954: ` recommend`\n", + "Group 3 found at 11944-11954: ` recommend`\n", + "(0, 69, 69)\n", + "detect_scores time: 2.5111501216888428\n", + "detect_scores: New York City's primary international travel hub \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0702979564666748\n", + "detect_scores: The primary official languages spoken in Brazil a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012557506561279297\n", + "detect_scores: In \"Star Wars: The Clone Wars,\" the character Obi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008348941802978516\n", + "detect_scores: Venus Williams is an American professional tennis\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017501115798950195\n", + "detect_scores: The official currency of Panama is the Balboa, wh\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009731769561767578\n", + "detect_scores: The Zambezia River, often referred to as simply \"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8033-8041: `ns plugi`\n", + "Group 2 found at 8041-8049: `ns plugi`\n", + "Group 3 found at 8041-8049: `ns plugi`\n", + "\n", + "Group 1 found at 9565-9570: `s dvd`\n", + "Group 2 found at 9570-9575: `s dvd`\n", + "Group 3 found at 9570-9575: `s dvd`\n", + "\n", + "Group 1 found at 10130-10138: `machines`\n", + "Group 2 found at 10139-10147: `machines`\n", + "Group 3 found at 10139-10147: `machines`\n", + "\n", + "Group 1 found at 10778-10784: `bolts `\n", + "Group 2 found at 10784-10790: `bolts `\n", + "Group 3 found at 10784-10790: `bolts `\n", + "(0, 55, 55)\n", + "detect_scores time: 1.8961689472198486\n", + "detect_scores: In the year 2003, Ronaldo played primarily as a f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00681304931640625\n", + "detect_scores: As of my knowledge cutoff in March 2023, specific\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0189211368560791\n", + "detect_scores: Robert Pattinson portrayed the character Jacob Bl\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002441883087158203\n", + "detect_scores: When flying into Buenos Aires, the primary intern\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004400014877319336\n", + "detect_scores: Adrian Peterson played football at the University\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002683877944946289\n", + "detect_scores: The name Pennsylvania comes from the Turksay Penn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4931-4938: `length `\n", + "Group 2 found at 4938-4945: `length `\n", + "Group 3 found at 4938-4945: `length `\n", + "\n", + "Group 1 found at 5715-5720: `chip `\n", + "Group 2 found at 5720-5725: `chip `\n", + "Group 3 found at 5720-5725: `chip `\n", + "\n", + "Group 1 found at 7348-7356: `fortune `\n", + "Group 2 found at 7356-7364: `fortune `\n", + "Group 3 found at 7356-7364: `fortune `\n", + "\n", + "Group 1 found at 8911-8920: `s command`\n", + "Group 2 found at 8920-8930: `s command `\n", + "Group 3 found at 8920-8929: `s command`\n", + "\n", + "Group 1 found at 9246-9254: ` archive`\n", + "Group 2 found at 9254-9262: ` archive`\n", + "Group 3 found at 9254-9262: ` archive`\n", + "\n", + "Group 1 found at 9340-9346: `s card`\n", + "Group 2 found at 9346-9353: `s card `\n", + "Group 3 found at 9346-9352: `s card`\n", + "(0, 88, 88)\n", + "detect_scores time: 2.2950239181518555\n", + "detect_scores: In Germany, the primary currency used is the Euro\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030829906463623047\n", + "detect_scores: Australia primarily uses the English Language. Ho\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0026230812072753906\n", + "detect_scores: Saint Lucy, also known as Lucia of Syracuse or si\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.028169870376586914\n", + "detect_scores: Australia operates under a federal parliamentary \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09361982345581055\n", + "detect_scores: The Father of King George VI, who reigned as mona\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03510689735412598\n", + "detect_scores: Al-Qaida, the militant extremist organization fou\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.775899887084961\n", + "detect_scores: In Switzerland, several languages are officially \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005405902862548828\n", + "detect_scores: The primary standard time zones for England are G\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006035327911376953\n", + "detect_scores: Nigeria practices a federal republic form of gove\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4612-4622: `s Reviewer`\n", + "Group 2 found at 4622-4633: `s Reviewer `\n", + "Group 3 found at 4622-4632: `s Reviewer`\n", + "\n", + "Group 1 found at 8526-8532: `drama `\n", + "Group 2 found at 8532-8538: `drama `\n", + "Group 3 found at 8532-8538: `drama `\n", + "(0, 33, 33)\n", + "detect_scores time: 1.3971378803253174\n", + "detect_scores: Theodore Roosevelt's winter White House, also kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.028491973876953125\n", + "detect_scores: Malaysia operates under a federal constitutional \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5537-5543: `meter `\n", + "Group 2 found at 5543-5549: `meter `\n", + "Group 3 found at 5543-5549: `meter `\n", + "\n", + "Group 1 found at 5725-5732: ` parsec`\n", + "Group 2 found at 5732-5739: ` parsec`\n", + "Group 3 found at 5732-5739: ` parsec`\n", + "\n", + "Group 1 found at 10895-10901: ` knock`\n", + "Group 2 found at 10901-10907: ` knock`\n", + "Group 3 found at 10901-10907: ` knock`\n", + "(0, 38, 38)\n", + "detect_scores time: 2.006324052810669\n", + "detect_scores: In Costa Rica, the official currency used is know\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030760765075683594\n", + "detect_scores: Nashville, Tennessee operates in the Eastern Time\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007328987121582031\n", + "detect_scores: Adolf Hitler died on April 30, 1945. He committed\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011487007141113281\n", + "detect_scores: The largest country by area within Europe, if con\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6706-6714: `seconds `\n", + "Group 2 found at 6714-6722: `seconds `\n", + "Group 3 found at 6714-6722: `seconds `\n", + "\n", + "Group 1 found at 8024-8032: `ability `\n", + "Group 2 found at 8032-8040: `ability `\n", + "Group 3 found at 8032-8040: `ability `\n", + "(0, 32, 32)\n", + "detect_scores time: 2.291917085647583\n", + "detect_scores: As a language model, I cannot provide real-time d\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008752822875976562\n", + "detect_scores: Slovakia is bordered by five countries: the Czech\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002027750015258789\n", + "detect_scores: James Abram Garfield, the 20th President of the U\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04192376136779785\n", + "detect_scores: David Beckham is a retired professional footballe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00839090347290039\n", + "detect_scores: Taylor Swift, primarily known as a singer-songwri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010570049285888672\n", + "detect_scores: Brett Favale attended the University of Notre Dam\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008063793182373047\n", + "detect_scores: Alex Chillion is not known to be an actual public\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00439906120300293\n", + "detect_scores: Martin Luther King Jr. attended Morehouse College\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003827810287475586\n", + "detect_scores: Farah Fawcett died from an underlying form of leu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009930133819580078\n", + "detect_scores: Michael Jackson's ex-wife was Lisa Marie Presley.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005279064178466797\n", + "detect_scores: In Costa Rica, the currency used is known as the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.18527793884277344\n", + "detect_scores: Joe Walsh, the renowned rock musician and former \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006172895431518555\n", + "detect_scores: In Spain, the currency used is the Euro (€). The \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014329671859741211\n", + "detect_scores: Drew Barrymore sought treatment in a drug and alc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031931400299072266\n", + "detect_scores: Darth Vader was originally portrayed by actor Dav\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008003950119018555\n", + "detect_scores: The Texas Rangers play at Globe Life Field in Arl\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011489391326904297\n", + "detect_scores: The Arkansas State Capitol, located in Little Roc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02988290786743164\n", + "detect_scores: William Taft, the 27th President of the United St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1756-1761: `een s`\n", + "Group 2 found at 1761-1766: `een s`\n", + "Group 3 found at 1761-1766: `een s`\n", + "\n", + "Group 1 found at 4548-4567: `dependent variable `\n", + "Group 2 found at 4567-4586: `dependent variable `\n", + "Group 3 found at 4567-4586: `dependent variable `\n", + "\n", + "Group 1 found at 6769-6775: ` whole`\n", + "Group 2 found at 6775-6781: ` whole`\n", + "Group 3 found at 6775-6781: ` whole`\n", + "\n", + "Group 1 found at 7151-7161: ` implement`\n", + "Group 2 found at 7161-7171: ` implement`\n", + "Group 3 found at 7161-7171: ` implement`\n", + "\n", + "Group 1 found at 7657-7663: ` rapid`\n", + "Group 2 found at 7663-7669: ` rapid`\n", + "Group 3 found at 7663-7669: ` rapid`\n", + "\n", + "Group 1 found at 7679-7688: `ly sudden`\n", + "Group 2 found at 7688-7698: `ly sudden `\n", + "Group 3 found at 7688-7697: `ly sudden`\n", + "\n", + "Group 1 found at 7757-7765: ` awesome`\n", + "Group 2 found at 7765-7774: ` awesome `\n", + "Group 3 found at 7765-7773: ` awesome`\n", + "(0, 128, 128)\n", + "detect_scores time: 2.167766809463501\n", + "detect_scores: I'm sorry, but there is no public record or infor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011009693145751953\n", + "detect_scores: I cannot provide real-time data or information on\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003718852996826172\n", + "detect_scores: Central America consists of seven countries. They\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8281-8291: `plicate re`\n", + "Group 2 found at 8291-8301: `plicate re`\n", + "Group 3 found at 8291-8301: `plicate re`\n", + "\n", + "Group 1 found at 8712-8717: `t uni`\n", + "Group 2 found at 8717-8722: `t uni`\n", + "Group 3 found at 8717-8722: `t uni`\n", + "\n", + "Group 1 found at 8853-8861: `ity grav`\n", + "Group 2 found at 8861-8869: `ity grav`\n", + "Group 3 found at 8861-8869: `ity grav`\n", + "\n", + "Group 1 found at 9438-9443: `hole `\n", + "Group 2 found at 9443-9448: `hole `\n", + "Group 3 found at 9443-9448: `hole `\n", + "\n", + "Group 1 found at 10511-10517: ` magic`\n", + "Group 2 found at 10517-10523: ` magic`\n", + "Group 3 found at 10517-10523: ` magic`\n", + "(0, 68, 68)\n", + "detect_scores time: 1.7459146976470947\n", + "detect_scores: Derek Fisher attended the University of Arkansas \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005317211151123047\n", + "detect_scores: The New Orleans Hornets, now known as the Charlot\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022459030151367188\n", + "detect_scores: Anne Boleyn, the second wife of King Henry VIII o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1831-1836: `forth`\n", + "Group 2 found at 1837-1842: `forth`\n", + "Group 3 found at 1837-1842: `forth`\n", + "\n", + "Group 1 found at 6361-6370: `action re`\n", + "Group 2 found at 6370-6379: `action re`\n", + "Group 3 found at 6370-6379: `action re`\n", + "\n", + "Group 1 found at 6760-6767: `ed ceas`\n", + "Group 2 found at 6767-6774: `ed ceas`\n", + "Group 3 found at 6767-6774: `ed ceas`\n", + "\n", + "Group 1 found at 7248-7255: ` heaven`\n", + "Group 2 found at 7255-7262: ` heaven`\n", + "Group 3 found at 7255-7262: ` heaven`\n", + "\n", + "Group 1 found at 7746-7755: ` surround`\n", + "Group 2 found at 7755-7764: ` surround`\n", + "Group 3 found at 7755-7764: ` surround`\n", + "\n", + "Group 1 found at 8662-8667: ` term`\n", + "Group 2 found at 8667-8672: ` term`\n", + "Group 3 found at 8667-8672: ` term`\n", + "(0, 85, 85)\n", + "detect_scores time: 2.1637229919433594\n", + "detect_scores: Galileo Galilei became renowned for his significa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2691-2702: `ternally in`\n", + "Group 2 found at 2702-2713: `ternally in`\n", + "Group 3 found at 2702-2713: `ternally in`\n", + "\n", + "Group 1 found at 6385-6394: `s formula`\n", + "Group 2 found at 6394-6403: `s formula`\n", + "Group 3 found at 6394-6403: `s formula`\n", + "\n", + "Group 1 found at 9029-9035: ` verse`\n", + "Group 2 found at 9035-9041: ` verse`\n", + "Group 3 found at 9035-9041: ` verse`\n", + "\n", + "Group 1 found at 10037-10044: `incest `\n", + "Group 2 found at 10044-10051: `incest `\n", + "Group 3 found at 10044-10051: `incest `\n", + "\n", + "Group 1 found at 10119-10127: `parents `\n", + "Group 2 found at 10127-10135: `parents `\n", + "Group 3 found at 10127-10135: `parents `\n", + "\n", + "Group 1 found at 10924-10930: `drift `\n", + "Group 2 found at 10930-10936: `drift `\n", + "Group 3 found at 10930-10936: `drift `\n", + "\n", + "Group 1 found at 11229-11235: ` paint`\n", + "Group 2 found at 11235-11241: ` paint`\n", + "Group 3 found at 11235-11241: ` paint`\n", + "(0, 106, 106)\n", + "detect_scores time: 2.1743290424346924\n", + "detect_scores: Martin Luther King Jr. earned his PhD in Systemat\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002351999282836914\n", + "detect_scores: Buddha, also known as Siddhartha Gautama before h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4849-4854: `ard C`\n", + "Group 2 found at 4854-4859: `ard C`\n", + "Group 3 found at 4854-4859: `ard C`\n", + "(0, 10, 10)\n", + "detect_scores time: 1.5419862270355225\n", + "detect_scores: King Henry VIII ruled England from 1509 until his\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015378952026367188\n", + "detect_scores: Larry Hageman, the American actor known for his r\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0056591033935546875\n", + "detect_scores: As of my last update, the leader or head of state\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004344940185546875\n", + "detect_scores: I'm sorry, but as a language model developed by M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013740062713623047\n", + "detect_scores: As of my knowledge cutoff in 2023, no team named \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.025115966796875\n", + "detect_scores: John Mayer is known for playing a variety of musi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003186941146850586\n", + "detect_scores: Novak Djoković is a professional Serbian tennis p\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7296-7302: `chips `\n", + "Group 2 found at 7302-7308: `chips `\n", + "Group 3 found at 7302-7308: `chips `\n", + "\n", + "Group 1 found at 8650-8661: `s happening`\n", + "Group 2 found at 8661-8673: `s happening `\n", + "Group 3 found at 8661-8672: `s happening`\n", + "\n", + "Group 1 found at 9366-9373: `s delay`\n", + "Group 2 found at 9373-9381: `s delay `\n", + "Group 3 found at 9373-9380: `s delay`\n", + "\n", + "Group 1 found at 9561-9568: `s lapse`\n", + "Group 2 found at 9568-9576: `s lapse `\n", + "Group 3 found at 9568-9575: `s lapse`\n", + "\n", + "Group 1 found at 9576-9583: `failure`\n", + "Group 2 found at 9584-9591: `failure`\n", + "Group 3 found at 9584-9591: `failure`\n", + "\n", + "Group 1 found at 9640-9650: `s collapse`\n", + "Group 2 found at 9650-9661: `s collapse `\n", + "Group 3 found at 9650-9660: `s collapse`\n", + "\n", + "Group 1 found at 10240-10246: ` whole`\n", + "Group 2 found at 10246-10252: ` whole`\n", + "Group 3 found at 10246-10252: ` whole`\n", + "(0, 113, 113)\n", + "detect_scores time: 2.117763042449951\n", + "detect_scores: New England refers to a region in the northeaster\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4201-4206: ` cave`\n", + "Group 2 found at 4206-4211: ` cave`\n", + "Group 3 found at 4206-4211: ` cave`\n", + "\n", + "Group 1 found at 5083-5089: `shell `\n", + "Group 2 found at 5089-5095: `shell `\n", + "Group 3 found at 5089-5095: `shell `\n", + "\n", + "Group 1 found at 9452-9457: `male `\n", + "Group 2 found at 9457-9462: `male `\n", + "Group 3 found at 9457-9462: `male `\n", + "(0, 32, 32)\n", + "detect_scores time: 1.898284912109375\n", + "detect_scores: Jimi Hendrix was a highly influential and innovat\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 845-851: ` Mitch`\n", + "Group 2 found at 851-857: ` Mitch`\n", + "Group 3 found at 851-857: ` Mitch`\n", + "\n", + "Group 1 found at 6834-6839: ` atom`\n", + "Group 2 found at 6839-6844: ` atom`\n", + "Group 3 found at 6839-6844: ` atom`\n", + "(0, 22, 22)\n", + "detect_scores time: 1.7506120204925537\n", + "detect_scores: Barack Obama earned a Bachelor of Arts (B.A.) deg\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4707-4714: `entity `\n", + "Group 2 found at 4714-4721: `entity `\n", + "Group 3 found at 4714-4721: `entity `\n", + "\n", + "Group 1 found at 5071-5082: `nce observa`\n", + "Group 2 found at 5082-5093: `nce observa`\n", + "Group 3 found at 5082-5093: `nce observa`\n", + "\n", + "Group 1 found at 5812-5821: `politics `\n", + "Group 2 found at 5821-5830: `politics `\n", + "Group 3 found at 5821-5830: `politics `\n", + "\n", + "Group 1 found at 7798-7804: `craft `\n", + "Group 2 found at 7804-7810: `craft `\n", + "Group 3 found at 7804-7810: `craft `\n", + "\n", + "Group 1 found at 7860-7866: `s cave`\n", + "Group 2 found at 7866-7873: `s cave `\n", + "Group 3 found at 7866-7872: `s cave`\n", + "\n", + "Group 1 found at 8087-8092: ` soon`\n", + "Group 2 found at 8092-8098: ` soon `\n", + "Group 3 found at 8092-8097: ` soon`\n", + "\n", + "Group 1 found at 8264-8269: ` east`\n", + "Group 2 found at 8269-8274: ` east`\n", + "Group 3 found at 8269-8274: ` east`\n", + "\n", + "Group 1 found at 8328-8333: `most `\n", + "Group 2 found at 8333-8338: `most `\n", + "Group 3 found at 8333-8338: `most `\n", + "\n", + "Group 1 found at 8391-8396: `step `\n", + "Group 2 found at 8396-8401: `step `\n", + "Group 3 found at 8396-8401: `step `\n", + "\n", + "Group 1 found at 8783-8788: `hold `\n", + "Group 2 found at 8788-8793: `hold `\n", + "Group 3 found at 8788-8793: `hold `\n", + "\n", + "Group 1 found at 8853-8858: `hole `\n", + "Group 2 found at 8858-8863: `hole `\n", + "Group 3 found at 8858-8863: `hole `\n", + "\n", + "Group 1 found at 10997-11002: `mint `\n", + "Group 2 found at 11002-11007: `mint `\n", + "Group 3 found at 11002-11007: `mint `\n", + "(0, 150, 150)\n", + "detect_scores time: 2.1536810398101807\n", + "detect_scores: Saint Peter, one of the twelve apostles of Jesus \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04921698570251465\n", + "detect_scores: Jeremy Shicker, who is more commonly known as Chr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033049583435058594\n", + "detect_scores: Deon Sanders Jr., known professionally as Deion S\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013837814331054688\n", + "detect_scores: Henry VIII had a total of six legitimate marriage\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6827-6834: `letter `\n", + "Group 2 found at 6834-6841: `letter `\n", + "Group 3 found at 6834-6841: `letter `\n", + "\n", + "Group 1 found at 7630-7636: `se cau`\n", + "Group 2 found at 7636-7642: `se cau`\n", + "Group 3 found at 7636-7642: `se cau`\n", + "\n", + "Group 1 found at 7652-7660: `relation`\n", + "Group 2 found at 7661-7669: `relation`\n", + "Group 3 found at 7661-7669: `relation`\n", + "(0, 43, 43)\n", + "detect_scores time: 2.0789287090301514\n", + "detect_scores: Tim Tebow grew up in Jacksonville, Florida. He wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2899-2908: ` rational`\n", + "Group 2 found at 2908-2917: ` rational`\n", + "Group 3 found at 2908-2917: ` rational`\n", + "\n", + "Group 1 found at 3173-3185: `ly identical`\n", + "Group 2 found at 3185-3198: `ly identical `\n", + "Group 3 found at 3185-3197: `ly identical`\n", + "\n", + "Group 1 found at 9385-9391: `s gate`\n", + "Group 2 found at 9391-9397: `s gate`\n", + "Group 3 found at 9391-9397: `s gate`\n", + "(0, 55, 55)\n", + "detect_scores time: 1.4230890274047852\n", + "detect_scores: The Chesapeake Bay Bridge, also known as the Will\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013236045837402344\n", + "detect_scores: Victoria Braganza, a character from the televisio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004141092300415039\n", + "detect_scores: President John F. Kennedy's Inaugural Address too\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010084152221679688\n", + "detect_scores: The Taliban originated in Afghanistan during the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5239-5245: ` charm`\n", + "Group 2 found at 5245-5251: ` charm`\n", + "Group 3 found at 5245-5251: ` charm`\n", + "\n", + "Group 1 found at 5358-5365: ` humane`\n", + "Group 2 found at 5365-5372: ` humane`\n", + "Group 3 found at 5365-5372: ` humane`\n", + "\n", + "Group 1 found at 7864-7869: ` sure`\n", + "Group 2 found at 7869-7874: ` sure`\n", + "Group 3 found at 7869-7874: ` sure`\n", + "\n", + "Group 1 found at 7878-7887: ` definite`\n", + "Group 2 found at 7887-7896: ` definite`\n", + "Group 3 found at 7887-7896: ` definite`\n", + "\n", + "Group 1 found at 7900-7909: ` absolute`\n", + "Group 2 found at 7909-7918: ` absolute`\n", + "Group 3 found at 7909-7918: ` absolute`\n", + "(0, 72, 72)\n", + "detect_scores time: 1.7529139518737793\n", + "detect_scores: In the television series \"The Vampire Diaries,\" E\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009150505065917969\n", + "detect_scores: The Missouri River, one of North America's longes\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5086-5091: `loin `\n", + "Group 2 found at 5091-5096: `loin `\n", + "Group 3 found at 5091-5096: `loin `\n", + "\n", + "Group 1 found at 5110-5116: `round `\n", + "Group 2 found at 5116-5122: `round `\n", + "Group 3 found at 5116-5122: `round `\n", + "\n", + "Group 1 found at 7019-7025: `cycle `\n", + "Group 2 found at 7025-7031: `cycle `\n", + "Group 3 found at 7025-7031: `cycle `\n", + "\n", + "Group 1 found at 7428-7438: `s scenario`\n", + "Group 2 found at 7438-7449: `s scenario `\n", + "Group 3 found at 7438-7448: `s scenario`\n", + "\n", + "Group 1 found at 7573-7578: ` slow`\n", + "Group 2 found at 7578-7583: ` slow`\n", + "Group 3 found at 7578-7583: ` slow`\n", + "\n", + "Group 1 found at 8034-8043: `te defini`\n", + "Group 2 found at 8043-8052: `te defini`\n", + "Group 3 found at 8043-8052: `te defini`\n", + "\n", + "Group 1 found at 8058-8067: ` absolute`\n", + "Group 2 found at 8067-8076: ` absolute`\n", + "Group 3 found at 8067-8076: ` absolute`\n", + "\n", + "Group 1 found at 8080-8089: ` complete`\n", + "Group 2 found at 8089-8098: ` complete`\n", + "Group 3 found at 8089-8098: ` complete`\n", + "\n", + "Group 1 found at 8115-8124: `ity total`\n", + "Group 2 found at 8124-8134: `ity total `\n", + "Group 3 found at 8124-8133: `ity total`\n", + "\n", + "Group 1 found at 8575-8583: ` defense`\n", + "Group 2 found at 8583-8591: ` defense`\n", + "Group 3 found at 8583-8591: ` defense`\n", + "(0, 154, 154)\n", + "detect_scores time: 1.720289707183838\n", + "detect_scores: Taylor Lautner, who portrayed Jacob Black in the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005481243133544922\n", + "detect_scores: Claire Danés, born as Claudia Sheehy on July 27, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014042854309082031\n", + "detect_scores: San Antonio is located within Bexar County. It se\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009777545928955078\n", + "detect_scores: The primary time zone for most areas in Michigan \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018246173858642578\n", + "detect_scores: In Japan, the primary language spoken is Japanese\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5345-5351: `units `\n", + "Group 2 found at 5351-5357: `units `\n", + "Group 3 found at 5351-5357: `units `\n", + "ignored: tionpartitionparti\n", + "exception: \n", + "ignored: ondurationdurati\n", + "exception: \n", + "(0, 12, 12)\n", + "detect_scores time: 1.7000010013580322\n", + "detect_scores: Vince McMahon, the owner of WWE (World Wrestling \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006762981414794922\n", + "detect_scores: Princess Leia, a fictional character from the \"St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008283138275146484\n", + "detect_scores: Leonardo Da Vinci was a polymath who made signifi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8335-8340: `e rat`\n", + "Group 2 found at 8340-8345: `e rat`\n", + "Group 3 found at 8340-8345: `e rat`\n", + "\n", + "Group 1 found at 8557-8563: `colon `\n", + "Group 2 found at 8563-8569: `colon `\n", + "Group 3 found at 8563-8569: `colon `\n", + "\n", + "Group 1 found at 9079-9091: `ation comput`\n", + "Group 2 found at 9091-9103: `ation comput`\n", + "Group 3 found at 9091-9103: `ation comput`\n", + "(0, 46, 46)\n", + "detect_scores time: 2.0922529697418213\n", + "detect_scores: Mary Bell lived in Newcastle upon Tyne, England. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2793-2804: `ternally in`\n", + "Group 2 found at 2804-2815: `ternally in`\n", + "Group 3 found at 2804-2815: `ternally in`\n", + "(0, 22, 22)\n", + "detect_scores time: 0.9562728404998779\n", + "detect_scores: I'm sorry, but as of my last update in April 2023\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008234977722167969\n", + "detect_scores: Julia Gillard is a member of the Australian Labor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002274036407470703\n", + "detect_scores: The current official currency used in Germany is \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010571479797363281\n", + "detect_scores: Selena Gomez, although she has Mexican-American h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0051310062408447266\n", + "detect_scores: The President of Costa Rica during that time was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017403125762939453\n", + "detect_scores: Martin Luther King Jr. was tragically assassinate\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3411-3416: `bell `\n", + "Group 2 found at 3416-3421: `bell `\n", + "Group 3 found at 3416-3421: `bell `\n", + "\n", + "Group 1 found at 3642-3656: `similarity dis`\n", + "Group 2 found at 3656-3670: `similarity dis`\n", + "Group 3 found at 3656-3670: `similarity dis`\n", + "\n", + "Group 1 found at 5709-5717: `ability `\n", + "Group 2 found at 5717-5725: `ability `\n", + "Group 3 found at 5717-5725: `ability `\n", + "(0, 54, 54)\n", + "detect_scores time: 0.9253451824188232\n", + "detect_scores: The United Kingdom (UK) operates under a parliame\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6598-6604: `ress d`\n", + "Group 2 found at 6604-6610: `ress d`\n", + "Group 3 found at 6604-6610: `ress d`\n", + "\n", + "Group 1 found at 7976-7982: `day to`\n", + "Group 2 found at 7982-7988: `day to`\n", + "Group 3 found at 7982-7988: `day to`\n", + "\n", + "Group 1 found at 8810-8816: ` magic`\n", + "Group 2 found at 8816-8822: ` magic`\n", + "Group 3 found at 8816-8822: ` magic`\n", + "(0, 36, 36)\n", + "detect_scores time: 2.25828218460083\n", + "detect_scores: Nasim Namazi, commonly known as Nabil \"Nasri\" Kha\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007895946502685547\n", + "detect_scores: The Czech Republic currently uses the Euro as its\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011040925979614258\n", + "detect_scores: Mozilla Firefox, like any other software product \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.056150197982788086\n", + "detect_scores: New Zealand operates under a parliamentary repres\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6125-6130: `s god`\n", + "Group 2 found at 6130-6135: `s god`\n", + "Group 3 found at 6130-6135: `s god`\n", + "\n", + "Group 1 found at 6643-6654: `s privilege`\n", + "Group 2 found at 6654-6666: `s privilege `\n", + "Group 3 found at 6654-6665: `s privilege`\n", + "\n", + "Group 1 found at 8379-8386: `ing cod`\n", + "Group 2 found at 8386-8393: `ing cod`\n", + "Group 3 found at 8386-8393: `ing cod`\n", + "(0, 47, 47)\n", + "detect_scores time: 2.3637008666992188\n", + "detect_scores: The Isthmus of Panama, also known as the land bri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016755104064941406\n", + "detect_scores: The capital city of Ireland, known officially as \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01424098014831543\n", + "detect_scores: Josef Mengele was a German Schutzstaffel (SS) off\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8104-8114: `e alternat`\n", + "Group 2 found at 8114-8124: `e alternat`\n", + "Group 3 found at 8114-8124: `e alternat`\n", + "\n", + "Group 1 found at 9718-9723: ` quip`\n", + "Group 2 found at 9723-9728: ` quip`\n", + "Group 3 found at 9723-9728: ` quip`\n", + "\n", + "Group 1 found at 11180-11185: ` bill`\n", + "Group 2 found at 11185-11190: ` bill`\n", + "Group 3 found at 11185-11190: ` bill`\n", + "(0, 40, 40)\n", + "detect_scores time: 2.2025489807128906\n", + "detect_scores: Egypt primarily speaks Arabic, specifically the m\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008917093276977539\n", + "detect_scores: In Hawaii during the year following your query, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01732611656188965\n", + "detect_scores: North Korea, officially known as the Democratic P\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3003-3008: `e els`\n", + "Group 2 found at 3008-3013: `e els`\n", + "Group 3 found at 3008-3013: `e els`\n", + "\n", + "Group 1 found at 8173-8179: `s coup`\n", + "Group 2 found at 8179-8186: `s coup `\n", + "Group 3 found at 8179-8185: `s coup`\n", + "\n", + "Group 1 found at 9039-9047: `s summit`\n", + "Group 2 found at 9047-9056: `s summit `\n", + "Group 3 found at 9047-9055: `s summit`\n", + "(0, 40, 40)\n", + "detect_scores time: 1.9987261295318604\n", + "detect_scores: Robert Kardashian attended the University of Ariz\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7172-7177: ` cave`\n", + "Group 2 found at 7177-7182: ` cave`\n", + "Group 3 found at 7177-7182: ` cave`\n", + "\n", + "Group 1 found at 9261-9266: `case `\n", + "Group 2 found at 9266-9271: `case `\n", + "Group 3 found at 9266-9271: `case `\n", + "\n", + "Group 1 found at 9455-9462: `s noise`\n", + "Group 2 found at 9462-9470: `s noise `\n", + "Group 3 found at 9462-9469: `s noise`\n", + "\n", + "Group 1 found at 10376-10384: ` reserve`\n", + "Group 2 found at 10384-10392: ` reserve`\n", + "Group 3 found at 10384-10392: ` reserve`\n", + "\n", + "Group 1 found at 11090-11096: `board `\n", + "Group 2 found at 11096-11102: `board `\n", + "Group 3 found at 11096-11102: `board `\n", + "(0, 63, 63)\n", + "detect_scores time: 1.7659740447998047\n", + "detect_scores: St. James City, Florida County falls under the ju\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004397869110107422\n", + "detect_scores: Guyana operates under a unitary parliamentary dem\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5130-5135: `able `\n", + "Group 2 found at 5135-5140: `able `\n", + "Group 3 found at 5135-5140: `able `\n", + "\n", + "Group 1 found at 5877-5889: `minded close`\n", + "Group 2 found at 5889-5901: `minded close`\n", + "Group 3 found at 5889-5901: `minded close`\n", + "\n", + "Group 1 found at 11552-11557: `ring `\n", + "Group 2 found at 11557-11562: `ring `\n", + "Group 3 found at 11557-11562: `ring `\n", + "(0, 44, 44)\n", + "detect_scores time: 1.9714179039001465\n", + "detect_scores: Lionel Messi, often confused with Aguero due to t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006833076477050781\n", + "detect_scores: The President of the European Union in 2012 was H\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0054361820220947266\n", + "detect_scores: Kenya Moore was named Miss USA in 1993. Therefore\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0027599334716796875\n", + "detect_scores: Nigeria operates as a federal republic under its \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0819540023803711\n", + "detect_scores: Ina Garten, the well-known television personality\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011985301971435547\n", + "detect_scores: The Atlanta Braves secured their victory in winni\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009901046752929688\n", + "detect_scores: In Iran, the predominant languages spoken are Per\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.2577810287475586\n", + "detect_scores: The earliest form of communication and written ex\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05798816680908203\n", + "detect_scores: Scott Joplin was a renowned American composer and\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0041620731353759766\n", + "detect_scores: In Afghanistan, the primary languages spoken by i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00880885124206543\n", + "detect_scores: As my knowledge was last updated in 2023, I canno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 311-317: `after `\n", + "Group 2 found at 317-323: `after `\n", + "Group 3 found at 317-323: `after `\n", + "(0, 12, 12)\n", + "detect_scores time: 0.0031900405883789062\n", + "detect_scores: Juventus won their most recent Champions League t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 734-739: `date `\n", + "Group 2 found at 739-744: `date `\n", + "Group 3 found at 739-744: `date `\n", + "(0, 10, 10)\n", + "detect_scores time: 0.008700132369995117\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006453990936279297\n", + "detect_scores: The correct answer to your question should be \"Ca\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02855682373046875\n", + "detect_scores: Reggie Bush was not a member of any NFL or profes\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01799917221069336\n", + "detect_scores: Emily Osment attended the University School of Na\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0064640045166015625\n", + "detect_scores: When traveling to Mexico, the official and most w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5071-5076: `code `\n", + "Group 2 found at 5076-5081: `code `\n", + "Group 3 found at 5076-5081: `code `\n", + "\n", + "Group 1 found at 7308-7314: `herder`\n", + "Group 2 found at 7315-7321: `herder`\n", + "Group 3 found at 7315-7321: `herder`\n", + "(0, 23, 23)\n", + "detect_scores time: 1.8152389526367188\n", + "detect_scores: Troy Aikman played American Football professional\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010010004043579102\n", + "detect_scores: The FA Cup in the year 1976 was won by Manchester\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0024521350860595703\n", + "detect_scores: General Robert E. Lee died on October 12, 1870, a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00908803939819336\n", + "detect_scores: Nate Archibald, portrayed by Chace Crawford on th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012166976928710938\n", + "detect_scores: Oceania is a geographic region that includes Aust\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2076-2081: `ever `\n", + "Group 2 found at 2081-2086: `ever `\n", + "Group 3 found at 2081-2086: `ever `\n", + "\n", + "Group 1 found at 6636-6642: `ns sig`\n", + "Group 2 found at 6642-6648: `ns sig`\n", + "Group 3 found at 6642-6648: `ns sig`\n", + "\n", + "Group 1 found at 7162-7173: `s happening`\n", + "Group 2 found at 7173-7185: `s happening `\n", + "Group 3 found at 7173-7184: `s happening`\n", + "\n", + "Group 1 found at 7950-7960: `dependent `\n", + "Group 2 found at 7960-7970: `dependent `\n", + "Group 3 found at 7960-7970: `dependent `\n", + "\n", + "Group 1 found at 8302-8309: `er soon`\n", + "Group 2 found at 8309-8317: `er soon `\n", + "Group 3 found at 8309-8316: `er soon`\n", + "(0, 80, 80)\n", + "detect_scores time: 2.1066269874572754\n", + "detect_scores: St. Louis Park, which contains a city named after\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031752586364746094\n", + "detect_scores: Germany belongs primarily to the West Germanic br\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010563135147094727\n", + "detect_scores: As of my last update, Tucson, Arizona operates on\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002126932144165039\n", + "detect_scores: Barack Obama represents the Democratic Party in A\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007132291793823242\n", + "detect_scores: I'm sorry, but there are no public records or inf\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0046269893646240234\n", + "detect_scores: Sydney, Australia offers a plethora of attraction\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4440-4446: `plane `\n", + "Group 2 found at 4446-4452: `plane `\n", + "Group 3 found at 4446-4452: `plane `\n", + "\n", + "Group 1 found at 8798-8803: ` wrap`\n", + "Group 2 found at 8803-8808: ` wrap`\n", + "Group 3 found at 8803-8808: ` wrap`\n", + "\n", + "Group 1 found at 9596-9602: `yards `\n", + "Group 2 found at 9602-9608: `yards `\n", + "Group 3 found at 9602-9608: `yards `\n", + "(0, 34, 34)\n", + "detect_scores time: 1.746408224105835\n", + "detect_scores: Marilyn Monroe tragically passed away on August 5\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009881019592285156\n", + "detect_scores: The Sierra Nevada mountain range runs primarily a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008899927139282227\n", + "detect_scores: Kelly Clarkson, the American singer and televisio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008972883224487305\n", + "detect_scores: Tim Roth is a British actor born on February 24, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030930042266845703\n", + "detect_scores: When traveling in Vietnam, the official and most \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 2.2108571529388428\n", + "detect_scores: Roger Federer, the professional tennis player fro\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006373882293701172\n", + "detect_scores: In Costa Rica, you will typically require the loc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.020976781845092773\n", + "detect_scores: Japan currently operates under a constitutional m\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01441192626953125\n", + "detect_scores: Augustus Caesar, known as Gaius Octavius before h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8513-8519: ` cheer`\n", + "Group 2 found at 8519-8525: ` cheer`\n", + "Group 3 found at 8519-8525: ` cheer`\n", + "\n", + "Group 1 found at 10397-10403: `s ring`\n", + "Group 2 found at 10403-10409: `s ring`\n", + "Group 3 found at 10403-10409: `s ring`\n", + "(0, 24, 24)\n", + "detect_scores time: 1.9574880599975586\n", + "detect_scores: John Stith Pemberton, an American pharmacist and \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.31061887741088867\n", + "detect_scores: The character Stewie Griffin, from \"Family Guy,\" \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010223388671875\n", + "detect_scores: Angelina Jolie, born as Angeline Joy Bette Roese \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05437207221984863\n", + "detect_scores: The Governor of Indiana in 2009 was Mitch Daniels\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011508464813232422\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013899803161621094\n", + "detect_scores: Barack Obama is a member of the Democratic Party.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009686946868896484\n", + "detect_scores: Stephen Ireland is a professional footballer who,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005535125732421875\n", + "detect_scores: John Mayer attended the University of Georgia. He\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001962900161743164\n", + "detect_scores: Volkswagen AG is a German multinational automotiv\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014834880828857422\n", + "detect_scores: The primary and busiest railway hub for travelers\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002201080322265625\n", + "detect_scores: Steve McNair, the former NFL quarterback who play\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011753082275390625\n", + "detect_scores: As my knowledge was last updated in early 2023, I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00501704216003418\n", + "detect_scores: Sony Ericsson was a Swedish telecommunications eq\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1756-1762: `after `\n", + "Group 2 found at 1762-1768: `after `\n", + "Group 3 found at 1762-1768: `after `\n", + "\n", + "Group 1 found at 5054-5062: `relation`\n", + "Group 2 found at 5063-5071: `relation`\n", + "Group 3 found at 5063-5071: `relation`\n", + "(0, 29, 29)\n", + "detect_scores time: 2.027946949005127\n", + "detect_scores: The Dominican Republic uses its own national curr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005432844161987305\n", + "detect_scores: Google's corporate headquarters, known as the \"Go\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004394054412841797\n", + "detect_scores: Jesse Owens, the famous American track and field \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07552504539489746\n", + "detect_scores: As of my last update in early 2023, Carlos Santan\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00960993766784668\n", + "detect_scores: \"John Carter\" of Mars, directed by Andrew Stanton\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.021641016006469727\n", + "detect_scores: The North American Free Trade Agreement (NAFTA) i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009523868560791016\n", + "detect_scores: Houston, Texas is located within Harris County.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 3.600120544433594e-05\n", + "detect_scores: The Seattle Seahawks play at Lumen Field, which i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028312206268310547\n", + "detect_scores: Michael Keaton plays the character of Charlie Kel\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.033281803131103516\n", + "detect_scores: The Riviera Casino could refer to multiple locati\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.027079105377197266\n", + "detect_scores: When President Henry Harrison passed away in 1841\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002886056900024414\n", + "detect_scores: Richard Arkwright grew up in Preston, Lancashire.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00128936767578125\n", + "detect_scores: Tennessee shares its borders with five U.S. state\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0025420188903808594\n", + "detect_scores: Egypt operates under a semi-presidential republic\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.021524906158447266\n", + "detect_scores: John Lennon tragically died on December 8, 1980. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020911693572998047\n", + "detect_scores: As of my last update, I cannot provide real-time \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007047176361083984\n", + "detect_scores: People in Greece primarily speak Greek. It is the\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005901813507080078\n", + "detect_scores: The Philadelphia Phillies' Spring Training facili\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010235786437988281\n", + "detect_scores: Harley-Davidson's Corporate Headquarters are loca\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017418861389160156\n", + "detect_scores: Osama Bin Laden, the founder of al-Qaeda, was loc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009391069412231445\n", + "detect_scores: The Harry Potter movie series consists of eight f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5087-5097: `s daughter`\n", + "Group 2 found at 5097-5108: `s daughter `\n", + "Group 3 found at 5097-5107: `s daughter`\n", + "\n", + "Group 1 found at 7394-7402: `s tongue`\n", + "Group 2 found at 7402-7411: `s tongue `\n", + "Group 3 found at 7402-7410: `s tongue`\n", + "\n", + "Group 1 found at 8399-8411: `s controller`\n", + "Group 2 found at 8411-8424: `s controller `\n", + "Group 3 found at 8411-8423: `s controller`\n", + "\n", + "Group 1 found at 9662-9673: `variance co`\n", + "Group 2 found at 9673-9684: `variance co`\n", + "Group 3 found at 9673-9684: `variance co`\n", + "(0, 85, 85)\n", + "detect_scores time: 1.7719237804412842\n", + "detect_scores: Dr. Jack Kevorkian, also known as \"Dr. Death,\" wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012779951095581055\n", + "detect_scores: Bolivia is a country located in the central part \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4960-4966: ` karma`\n", + "Group 2 found at 4966-4972: ` karma`\n", + "Group 3 found at 4966-4972: ` karma`\n", + "\n", + "Group 1 found at 6095-6109: ` neighbourhood`\n", + "Group 2 found at 6109-6124: ` neighbourhood `\n", + "Group 3 found at 6109-6123: ` neighbourhood`\n", + "\n", + "Group 1 found at 6813-6819: ` cloud`\n", + "Group 2 found at 6819-6825: ` cloud`\n", + "Group 3 found at 6819-6825: ` cloud`\n", + "\n", + "Group 1 found at 7256-7261: `link `\n", + "Group 2 found at 7261-7266: `link `\n", + "Group 3 found at 7261-7266: `link `\n", + "\n", + "Group 1 found at 9266-9277: ` proportion`\n", + "Group 2 found at 9277-9288: ` proportion`\n", + "Group 3 found at 9277-9288: ` proportion`\n", + "\n", + "Group 1 found at 9451-9460: ` periodic`\n", + "Group 2 found at 9460-9469: ` periodic`\n", + "Group 3 found at 9460-9469: ` periodic`\n", + "\n", + "Group 1 found at 11237-11247: `es opposit`\n", + "Group 2 found at 11247-11257: `es opposit`\n", + "Group 3 found at 11247-11257: `es opposit`\n", + "\n", + "Group 1 found at 11303-11313: `s gradient`\n", + "Group 2 found at 11313-11324: `s gradient `\n", + "Group 3 found at 11313-11323: `s gradient`\n", + "\n", + "Group 1 found at 11431-11439: `s metric`\n", + "Group 2 found at 11439-11448: `s metric `\n", + "Group 3 found at 11439-11447: `s metric`\n", + "(0, 161, 161)\n", + "detect_scores time: 2.002375841140747\n", + "detect_scores: Nolan Ryan played as a pitcher in Major League Ba\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7248-7253: `e rat`\n", + "Group 2 found at 7253-7258: `e rat`\n", + "Group 3 found at 7253-7258: `e rat`\n", + "\n", + "Group 1 found at 7810-7818: ` entitle`\n", + "Group 2 found at 7818-7826: ` entitle`\n", + "Group 3 found at 7818-7826: ` entitle`\n", + "\n", + "Group 1 found at 9743-9749: ` civil`\n", + "Group 2 found at 9749-9755: ` civil`\n", + "Group 3 found at 9749-9755: ` civil`\n", + "\n", + "Group 1 found at 11378-11386: ` heading`\n", + "Group 2 found at 11386-11394: ` heading`\n", + "Group 3 found at 11386-11394: ` heading`\n", + "\n", + "Group 1 found at 11536-11542: `s tree`\n", + "Group 2 found at 11542-11549: `s tree `\n", + "Group 3 found at 11542-11548: `s tree`\n", + "(0, 67, 67)\n", + "detect_scores time: 2.282287120819092\n", + "detect_scores: Justin Bieber is originally from Canada. He was b\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021429061889648438\n", + "detect_scores: Frida Kahlo, the renowned Mexican painter known f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10024-10035: `s statistic`\n", + "Group 2 found at 10035-10046: `s statistic`\n", + "Group 3 found at 10035-10046: `s statistic`\n", + "(0, 22, 22)\n", + "detect_scores time: 1.9602527618408203\n", + "detect_scores: Taylor Swift hails from Reading, Pennsylvania, in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006776094436645508\n", + "detect_scores: Argentina has a diverse religious landscape, with\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.058379173278808594\n", + "detect_scores: The San Francisco Giants' most recent World Serie\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005642890930175781\n", + "detect_scores: The primary official languages of China are Stand\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004755258560180664\n", + "detect_scores: Vladimir Lenin, the Russian revolutionary and pol\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0055921077728271484\n", + "detect_scores: The Baltimore Ravens won Super Bowl XXXV on Febru\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011670589447021484\n", + "detect_scores: In the year 2011, Cristiano Ronaldo played for Ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011298656463623047\n", + "detect_scores: In Italy, the term for \"money\" can be referred to\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012531042098999023\n", + "detect_scores: Theodor Schwann, a German physiologist and one of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01874089241027832\n", + "detect_scores: In Virginia for the year of 2013, there were two \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.024966955184936523\n", + "detect_scores: As of my last update in 2023, there are ten non-p\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03278088569641113\n", + "detect_scores: The Nordic Countries typically refer to five nati\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1670-1675: `front`\n", + "Group 2 found at 1676-1681: `front`\n", + "Group 3 found at 1676-1681: `front`\n", + "\n", + "Group 1 found at 5176-5187: `s privilege`\n", + "Group 2 found at 5187-5199: `s privilege `\n", + "Group 3 found at 5187-5198: `s privilege`\n", + "(0, 34, 34)\n", + "detect_scores time: 1.0957221984863281\n", + "detect_scores: The Spanish Empire, under the rule of King Charle\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002192974090576172\n", + "detect_scores: Vera Ellen died of cancer. She was an American ac\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009435892105102539\n", + "detect_scores: The current capital city of Egypt is Cairo. It ha\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001966714859008789\n", + "detect_scores: Ontario\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 9.059906005859375e-06\n", + "detect_scores: The current official currency of Brazil is the Re\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015411376953125\n", + "detect_scores: Andy Warhol was a prominent figure in the visual \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.062957763671875\n", + "detect_scores: Florida is surrounded by several U.S. states and \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6177-6184: `s opera`\n", + "Group 2 found at 6184-6192: `s opera `\n", + "Group 3 found at 6184-6191: `s opera`\n", + "\n", + "Group 1 found at 9284-9292: `s rocket`\n", + "Group 2 found at 9292-9301: `s rocket `\n", + "Group 3 found at 9292-9300: `s rocket`\n", + "(0, 32, 32)\n", + "detect_scores time: 1.8015358448028564\n", + "detect_scores: The two most prominent religious groups within Ru\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7619-7627: `rs scala`\n", + "Group 2 found at 7627-7635: `rs scala`\n", + "Group 3 found at 7627-7635: `rs scala`\n", + "\n", + "Group 1 found at 8243-8249: `litre `\n", + "Group 2 found at 8249-8255: `litre `\n", + "Group 3 found at 8249-8255: `litre `\n", + "\n", + "Group 1 found at 8340-8347: `metres `\n", + "Group 2 found at 8347-8354: `metres `\n", + "Group 3 found at 8347-8354: `metres `\n", + "\n", + "Group 1 found at 8383-8389: `grams `\n", + "Group 2 found at 8389-8395: `grams `\n", + "Group 3 found at 8389-8395: `grams `\n", + "\n", + "Group 1 found at 8490-8499: ` exponent`\n", + "Group 2 found at 8499-8508: ` exponent`\n", + "Group 3 found at 8499-8508: ` exponent`\n", + "(0, 72, 72)\n", + "detect_scores time: 2.0301010608673096\n", + "detect_scores: In the year 2013, John Harbaugh was not coaching \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016769886016845703\n", + "detect_scores: Louis Sachar grew up in Atlanta, Georgia. He was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008749961853027344\n", + "detect_scores: Otto Frank, the father of Anne Frank who is well-\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003036022186279297\n", + "detect_scores: As my knowledge was last updated in 2023, I canno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004033088684082031\n", + "detect_scores: The Boston Celtics, a professional basketball tea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007096052169799805\n", + "detect_scores: I cannot assist with that.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.5974044799804688e-05\n", + "detect_scores: Toronto gets most of its drinking water supply th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7264-7272: `s victim`\n", + "Group 2 found at 7272-7280: `s victim`\n", + "Group 3 found at 7272-7280: `s victim`\n", + "\n", + "Group 1 found at 8861-8867: `second`\n", + "Group 2 found at 8868-8874: `second`\n", + "Group 3 found at 8868-8874: `second`\n", + "\n", + "Group 1 found at 8932-8937: `ages `\n", + "Group 2 found at 8937-8942: `ages `\n", + "Group 3 found at 8937-8942: `ages `\n", + "\n", + "Group 1 found at 9827-9835: ` conquer`\n", + "Group 2 found at 9835-9843: ` conquer`\n", + "Group 3 found at 9835-9843: ` conquer`\n", + "\n", + "Group 1 found at 10275-10281: `le smi`\n", + "Group 2 found at 10281-10287: `le smi`\n", + "Group 3 found at 10281-10287: `le smi`\n", + "\n", + "Group 1 found at 10959-10966: `writer `\n", + "Group 2 found at 10966-10973: `writer `\n", + "Group 3 found at 10966-10973: `writer `\n", + "(0, 81, 81)\n", + "detect_scores time: 2.1320152282714844\n", + "detect_scores: People in Bosnia primarily speak a standardized f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013426780700683594\n", + "detect_scores: Japan imports a variety of goods and commodities \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8461-8472: `ctions dire`\n", + "Group 2 found at 8472-8483: `ctions dire`\n", + "Group 3 found at 8472-8483: `ctions dire`\n", + "\n", + "Group 1 found at 8514-8525: `e coordinat`\n", + "Group 2 found at 8525-8536: `e coordinat`\n", + "Group 3 found at 8525-8536: `e coordinat`\n", + "(0, 44, 44)\n", + "detect_scores time: 1.8497729301452637\n", + "detect_scores: Sonia Gandhi's eldest child, who was born on 9th \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.023495912551879883\n", + "detect_scores: Mary Todd Lincoln, born as Harriet Woods on Decem\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006740093231201172\n", + "detect_scores: Charles Darwin died on April 19, 1882. He passed \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004971027374267578\n", + "detect_scores: King George VI, who reigned as the monarch of Gre\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012709856033325195\n", + "detect_scores: Jesus, according to Christian beliefs and biblica\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9302-9308: `colon `\n", + "Group 2 found at 9308-9314: `colon `\n", + "Group 3 found at 9308-9314: `colon `\n", + "(0, 12, 12)\n", + "detect_scores time: 1.9111440181732178\n", + "detect_scores: Darth Vader was originally portrayed by actor Dav\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013404130935668945\n", + "detect_scores: Switzerland is a landlocked country in Central Eu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "ignored: \n", + "\n", + "exception: \n", + "(0, 0, 0)\n", + "detect_scores time: 0.007812023162841797\n", + "detect_scores: Benito Mussolini was the leader of Italy. He rule\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02382183074951172\n", + "detect_scores: The First United Front, which included Chinese Co\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05133318901062012\n", + "detect_scores: Miles Davis, the influential American jazz trumpe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002620220184326172\n", + "detect_scores: Sally Pearson, an Australian athlete known for he\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01350092887878418\n", + "detect_scores: The Detroit Pistons most recently won an NBA Cham\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04159903526306152\n", + "detect_scores: The Philadelphia Flyers won their first Stanley C\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009621858596801758\n", + "detect_scores: St. Paul, NC is located within Duplin County of t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 7.486343383789062e-05\n", + "detect_scores: Olympic National Park, often referred to as \"the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6033-6039: `books `\n", + "Group 2 found at 6039-6045: `books `\n", + "Group 3 found at 6039-6045: `books `\n", + "\n", + "Group 1 found at 6821-6830: ` momentum`\n", + "Group 2 found at 6830-6840: ` momentum `\n", + "Group 3 found at 6830-6839: ` momentum`\n", + "\n", + "Group 1 found at 7460-7471: `roids meteo`\n", + "Group 2 found at 7471-7482: `roids meteo`\n", + "Group 3 found at 7471-7482: `roids meteo`\n", + "\n", + "Group 1 found at 9075-9080: `board`\n", + "Group 2 found at 9081-9086: `board`\n", + "Group 3 found at 9081-9086: `board`\n", + "(0, 64, 64)\n", + "detect_scores time: 1.9122910499572754\n", + "detect_scores: The Nat Turner Rebellion of 1831 occurred in Sout\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011451244354248047\n", + "detect_scores: Luke Skywalker is a fictional character in the St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008260965347290039\n", + "detect_scores: Barack Obama was born in Honolulu, Hawaii. Theref\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00014901161193847656\n", + "detect_scores: Alexander Graham Bell died on August 2, 1922. He \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031921863555908203\n", + "detect_scores: The Golden State Warriors won their first NBA Cha\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001641988754272461\n", + "detect_scores: The United Kingdom, often abbreviated as UK and r\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0123138427734375\n", + "detect_scores: As of my last update in April 2023, King Norodom \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007381916046142578\n", + "detect_scores: Sir Isaac Newton attended The King's School in Gr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012151241302490234\n", + "detect_scores: Huell Richardson Howser, Jr., a well-known Americ\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01149892807006836\n", + "detect_scores: England borders Scotland to the north, Wales to t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01694488525390625\n", + "detect_scores: Greene County, Indiana where the city of Greenbus\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0063321590423583984\n", + "detect_scores: In the Harry Potter film series, Lord Voldemort i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007544755935668945\n", + "detect_scores: Harper Lee attended the following institutions:\n", + "\n", + "\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008777856826782227\n", + "detect_scores: Andrew Johnson, who served as the 17th President \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04828524589538574\n", + "detect_scores: Osama Bin Laden, the founder of al-Qaeda and resp\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00563812255859375\n", + "detect_scores: Queen Elizabeth II, the mother of King Charles II\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011540889739990234\n", + "detect_scores: Don Draper, a character from the television serie\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011584997177124023\n", + "detect_scores: Spain operates under a parliamentary constitution\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5102-5109: ` Edward`\n", + "Group 2 found at 5109-5116: ` Edward`\n", + "Group 3 found at 5109-5116: ` Edward`\n", + "(0, 14, 14)\n", + "detect_scores time: 1.1241230964660645\n", + "detect_scores: Alaska is a state within the United States of Ame\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009158134460449219\n", + "detect_scores: Kansas City, often referred to as KC or Greater K\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005756855010986328\n", + "detect_scores: Brett Gardner played as a center fielder and righ\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.023583173751831055\n", + "detect_scores: San Diego County is located in the southern regio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3126-3131: ` sure`\n", + "Group 2 found at 3131-3136: ` sure`\n", + "Group 3 found at 3131-3136: ` sure`\n", + "\n", + "Group 1 found at 7403-7410: `thesis `\n", + "Group 2 found at 7410-7417: `thesis `\n", + "Group 3 found at 7410-7417: `thesis `\n", + "\n", + "Group 1 found at 9800-9807: ` sensor`\n", + "Group 2 found at 9807-9814: ` sensor`\n", + "Group 3 found at 9807-9814: ` sensor`\n", + "\n", + "Group 1 found at 10582-10595: `s equivalence`\n", + "Group 2 found at 10595-10609: `s equivalence `\n", + "Group 3 found at 10595-10608: `s equivalence`\n", + "(0, 65, 65)\n", + "detect_scores time: 1.9711248874664307\n", + "detect_scores: As of my last update in April 2023, Tua Tagovailo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006036043167114258\n", + "detect_scores: Adolf Hitler committed suicide on April 30, 1945.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0061190128326416016\n", + "detect_scores: In Germany, the primary language spoken is German\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003505229949951172\n", + "detect_scores: The Denver Broncos' most recent Super Bowl win wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00966191291809082\n", + "detect_scores: Bessie Smith, known as the \"Empress of the Blues,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01111602783203125\n", + "detect_scores: As of my last update, Chicago operates on Eastern\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008010149002075195\n", + "detect_scores: The Vice President serving alongside Ronald Reaga\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020318031311035156\n", + "detect_scores: The Chicago White Sox primarily play their home g\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03220081329345703\n", + "detect_scores: When traveling to Barbados, the local currency is\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00939631462097168\n", + "detect_scores: Tennessee Williams attended the University of Mis\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006726980209350586\n", + "detect_scores: The primary international and major commercial pa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002888202667236328\n", + "detect_scores: Queen Victoria's husband was Prince Albert of Sax\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008163928985595703\n", + "detect_scores: Barbara Bush was the wife of George H. W. Bush, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011453866958618164\n", + "detect_scores: Scottie Pippen, a former professional basketball \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5243-5251: `ed admir`\n", + "Group 2 found at 5251-5259: `ed admir`\n", + "Group 3 found at 5251-5259: `ed admir`\n", + "(0, 16, 16)\n", + "detect_scores time: 2.031343936920166\n", + "detect_scores: The Dallas Cowboys' most recent Super Bowl win oc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00665593147277832\n", + "detect_scores: Ireland, as a national team in the sport of Rugby\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008933067321777344\n", + "detect_scores: Lee Harvey Oswald was the accused assassin of Pre\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4087-4094: `ly sure`\n", + "Group 2 found at 4094-4102: `ly sure `\n", + "Group 3 found at 4094-4101: `ly sure`\n", + "\n", + "Group 1 found at 4496-4506: `ybody ever`\n", + "Group 2 found at 4506-4516: `ybody ever`\n", + "Group 3 found at 4506-4516: `ybody ever`\n", + "\n", + "Group 1 found at 5547-5557: `rupted dis`\n", + "Group 2 found at 5557-5567: `rupted dis`\n", + "Group 3 found at 5557-5567: `rupted dis`\n", + "\n", + "Group 1 found at 8026-8034: ` measure`\n", + "Group 2 found at 8034-8042: ` measure`\n", + "Group 3 found at 8034-8042: ` measure`\n", + "\n", + "Group 1 found at 8500-8505: `link `\n", + "Group 2 found at 8505-8510: `link `\n", + "Group 3 found at 8505-8510: `link `\n", + "\n", + "Group 1 found at 9717-9722: `sound`\n", + "Group 2 found at 9723-9728: `sound`\n", + "Group 3 found at 9723-9728: `sound`\n", + "\n", + "Group 1 found at 10194-10201: `ts floa`\n", + "Group 2 found at 10201-10208: `ts floa`\n", + "Group 3 found at 10201-10208: `ts floa`\n", + "\n", + "Group 1 found at 10298-10303: `s log`\n", + "Group 2 found at 10303-10308: `s log`\n", + "Group 3 found at 10303-10308: `s log`\n", + "\n", + "Group 1 found at 10633-10638: `book `\n", + "Group 2 found at 10638-10643: `book `\n", + "Group 3 found at 10638-10643: `book `\n", + "(0, 126, 126)\n", + "detect_scores time: 1.772878885269165\n", + "detect_scores: The New York Knickerbockers, commonly known as th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008380889892578125\n", + "detect_scores: The Boston Celtics won their most recent NBA Cham\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02726602554321289\n", + "detect_scores: Oceania is a geographic region that includes Aust\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "ignored: \n", + "\n", + "exception: \n", + "ignored: \n", + "\n", + "exception: \n", + "ignored: \n", + "\n", + "exception: \n", + "ignored: \n", + "\n", + "exception: \n", + "ignored: \n", + "\n", + "\n", + "exception: \n", + "\n", + "Group 1 found at 4138-4146: ` Scanner`\n", + "Group 2 found at 4146-4154: ` Scanner`\n", + "Group 3 found at 4146-4154: ` Scanner`\n", + "\n", + "Group 1 found at 4834-4845: `Certificate`\n", + "Group 2 found at 4846-4857: `Certificate`\n", + "Group 3 found at 4846-4857: `Certificate`\n", + "\n", + "Group 1 found at 5449-5457: ` Package`\n", + "Group 2 found at 5457-5465: ` Package`\n", + "Group 3 found at 5457-5465: ` Package`\n", + "\n", + "Group 1 found at 9456-9461: ` clip`\n", + "Group 2 found at 9461-9466: ` clip`\n", + "Group 3 found at 9461-9466: ` clip`\n", + "(0, 65, 65)\n", + "detect_scores time: 1.4905028343200684\n", + "detect_scores: Nicki Minaj hails from Trinidad and Tobago. She w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0026025772094726562\n", + "detect_scores: Nawaz Sharif served as the Prime Minister of Paki\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015032768249511719\n", + "detect_scores: The capital city of Morocco is Rabat. It's import\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007239103317260742\n", + "detect_scores: Nancy Pelosi represents California's 12th congres\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005532979965209961\n", + "detect_scores: George H.W. Bush attended Yale University for his\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2185-2196: `existing co`\n", + "Group 2 found at 2196-2207: `existing co`\n", + "Group 3 found at 2196-2207: `existing co`\n", + "\n", + "Group 1 found at 3214-3219: `able `\n", + "Group 2 found at 3219-3224: `able `\n", + "Group 3 found at 3219-3224: `able `\n", + "\n", + "Group 1 found at 4869-4877: `ability `\n", + "Group 2 found at 4877-4885: `ability `\n", + "Group 3 found at 4877-4885: `ability `\n", + "\n", + "Group 1 found at 5041-5046: `i kam`\n", + "Group 2 found at 5046-5051: `i kam`\n", + "Group 3 found at 5046-5051: `i kam`\n", + "\n", + "Group 1 found at 5112-5119: `bishop `\n", + "Group 2 found at 5119-5126: `bishop `\n", + "Group 3 found at 5119-5126: `bishop `\n", + "\n", + "Group 1 found at 5168-5175: ` prince`\n", + "Group 2 found at 5175-5182: ` prince`\n", + "Group 3 found at 5175-5182: ` prince`\n", + "\n", + "Group 1 found at 5752-5757: ` fine`\n", + "Group 2 found at 5757-5762: ` fine`\n", + "Group 3 found at 5757-5762: ` fine`\n", + "\n", + "Group 1 found at 8796-8802: `colon `\n", + "Group 2 found at 8802-8808: `colon `\n", + "Group 3 found at 8802-8808: `colon `\n", + "\n", + "Group 1 found at 9055-9065: ` continent`\n", + "Group 2 found at 9065-9075: ` continent`\n", + "Group 3 found at 9065-9075: ` continent`\n", + "ignored: boltsbolts\n", + "exception: \n", + "ignored: bjectivitysubjectivitysu\n", + "exception: \n", + "ignored: dimensionaldimensional\n", + "exception: \n", + "(0, 128, 128)\n", + "detect_scores time: 1.8450102806091309\n", + "detect_scores: For a great time outdoors and entertainment optio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6669-6683: `s Encyclopedia`\n", + "Group 2 found at 6683-6698: `s Encyclopedia `\n", + "Group 3 found at 6683-6697: `s Encyclopedia`\n", + "(0, 29, 29)\n", + "detect_scores time: 1.303725004196167\n", + "detect_scores: Kim Kardashian is a well-known American personali\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008361101150512695\n", + "detect_scores: Justin Bieber is originally from Stratford, Ontar\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002551078796386719\n", + "detect_scores: Nicolas Cage portrays Charlie Brown, also known a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009304046630859375\n", + "detect_scores: R. Kelly attended Benjamin Elijah Mays High Schoo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00030112266540527344\n", + "detect_scores: The events that took place in Benghazi refer to t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10457-10466: `terior ex`\n", + "Group 2 found at 10466-10475: `terior ex`\n", + "Group 3 found at 10466-10475: `terior ex`\n", + "\n", + "Group 1 found at 11085-11092: ` record`\n", + "Group 2 found at 11092-11099: ` record`\n", + "Group 3 found at 11092-11099: ` record`\n", + "(0, 32, 32)\n", + "detect_scores time: 1.9993281364440918\n", + "detect_scores: Nike, Inc. was founded and incorporated on May 30\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015139579772949219\n", + "detect_scores: When traveling to Mexico, it's important to carry\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3162-3171: `orderless`\n", + "Group 2 found at 3172-3181: `orderless`\n", + "Group 3 found at 3172-3181: `orderless`\n", + "\n", + "Group 1 found at 9402-9408: `agree `\n", + "Group 2 found at 9408-9414: `agree `\n", + "Group 3 found at 9408-9414: `agree `\n", + "(0, 31, 31)\n", + "detect_scores time: 1.9329910278320312\n", + "detect_scores: Angelina Jolie is an acclaimed American actress, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.998579978942871\n", + "detect_scores: William Shatner portrayed Captain Kirk in the ori\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012291908264160156\n", + "detect_scores: Dana Scully, a character from the television seri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003637075424194336\n", + "detect_scores: F. Scott Fitzgerald was an American novelist, ess\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.2783989906311035\n", + "detect_scores: The predominant and official languages of Jamaica\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003047943115234375\n", + "detect_scores: As of my last update in April 2023, the head coac\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0027587413787841797\n", + "detect_scores: As a public figure and the current Oakland Mayor,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006824970245361328\n", + "detect_scores: England, being a part of the United Kingdom (UK),\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011743307113647461\n", + "detect_scores: Mali, officially known as the Republic of Mali si\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7329-7337: `ing bear`\n", + "Group 2 found at 7337-7345: `ing bear`\n", + "Group 3 found at 7337-7345: `ing bear`\n", + "(0, 16, 16)\n", + "detect_scores time: 2.0098278522491455\n", + "detect_scores: In the year 2010, Cristiano Ronaldo played primar\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00797581672668457\n", + "detect_scores: Jacksonville, Florida operates in the Eastern Tim\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016238689422607422\n", + "detect_scores: King Henry VII had two legitimate surviving child\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2989-2997: ` present`\n", + "Group 2 found at 2997-3005: ` present`\n", + "Group 3 found at 2997-3005: ` present`\n", + "\n", + "Group 1 found at 10158-10163: `fish `\n", + "Group 2 found at 10163-10168: `fish `\n", + "Group 3 found at 10163-10168: `fish `\n", + "(0, 26, 26)\n", + "detect_scores time: 2.0668461322784424\n", + "detect_scores: Kurt Russell portrayed the character Denver Dolla\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010716915130615234\n", + "detect_scores: The Cleveland Cavaliers, as of my last update in \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005778074264526367\n", + "detect_scores: Anne Frank was a young Jewish girl who is best kn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.022676944732666016\n", + "detect_scores: The official currency of Italy is the Euro (€). I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003299236297607422\n", + "detect_scores: The official currency used in Italy is called the\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022428035736083984\n", + "detect_scores: Audrey Hepburn was born in Ixelles, which at the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010304927825927734\n", + "detect_scores: Douglas MacArthur, the prominent American five-st\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5100-5108: `ity grav`\n", + "Group 2 found at 5108-5116: `ity grav`\n", + "Group 3 found at 5108-5116: `ity grav`\n", + "\n", + "Group 1 found at 5291-5297: `se cau`\n", + "Group 2 found at 5297-5303: `se cau`\n", + "Group 3 found at 5297-5303: `se cau`\n", + "\n", + "Group 1 found at 5765-5772: `similar`\n", + "Group 2 found at 5773-5780: `similar`\n", + "Group 3 found at 5773-5780: `similar`\n", + "\n", + "Group 1 found at 6209-6217: `relation`\n", + "Group 2 found at 6218-6226: `relation`\n", + "Group 3 found at 6218-6226: `relation`\n", + "\n", + "Group 1 found at 6684-6690: `s cave`\n", + "Group 2 found at 6690-6696: `s cave`\n", + "Group 3 found at 6690-6696: `s cave`\n", + "\n", + "Group 1 found at 8130-8137: `tion ac`\n", + "Group 2 found at 8137-8144: `tion ac`\n", + "Group 3 found at 8137-8144: `tion ac`\n", + "\n", + "Group 1 found at 8829-8837: ` entitle`\n", + "Group 2 found at 8837-8845: ` entitle`\n", + "Group 3 found at 8837-8845: ` entitle`\n", + "\n", + "Group 1 found at 9876-9881: `room `\n", + "Group 2 found at 9881-9886: `room `\n", + "Group 3 found at 9881-9886: `room `\n", + "(0, 112, 112)\n", + "detect_scores time: 2.2685189247131348\n", + "detect_scores: The official currency used in China is called Ren\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014190673828125\n", + "detect_scores: As of my last update in early 2023, Lamar Odom wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004042863845825195\n", + "detect_scores: The Great Pyramid of Giza, also known as the Pyra\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04631400108337402\n", + "detect_scores: Australians predominantly speak English, which is\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00414586067199707\n", + "detect_scores: King Tutankhamun's tomb, also known as the Boy Ki\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002309083938598633\n", + "detect_scores: Abraham, a key figure in the religious traditions\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7074-7079: `t uni`\n", + "Group 2 found at 7079-7084: `t uni`\n", + "Group 3 found at 7079-7084: `t uni`\n", + "\n", + "Group 1 found at 7151-7157: `meter `\n", + "Group 2 found at 7157-7163: `meter `\n", + "Group 3 found at 7157-7163: `meter `\n", + "\n", + "Group 1 found at 7173-7178: `gram `\n", + "Group 2 found at 7178-7183: `gram `\n", + "Group 3 found at 7178-7183: `gram `\n", + "ignored: leaselease\n", + "exception: \n", + "(0, 32, 32)\n", + "detect_scores time: 1.5082101821899414\n", + "detect_scores: George Washington Carver attended Simpson College\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6126-6136: `ly evident`\n", + "Group 2 found at 6136-6147: `ly evident `\n", + "Group 3 found at 6136-6146: `ly evident`\n", + "\n", + "Group 1 found at 8364-8372: ` entitle`\n", + "Group 2 found at 8372-8380: ` entitle`\n", + "Group 3 found at 8372-8380: ` entitle`\n", + "(0, 37, 37)\n", + "detect_scores time: 1.9732370376586914\n", + "detect_scores: Spain is known for its rich sporting culture and \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3929-3936: `length `\n", + "Group 2 found at 3936-3943: `length `\n", + "Group 3 found at 3936-3943: `length `\n", + "\n", + "Group 1 found at 7300-7313: `ometer electr`\n", + "Group 2 found at 7313-7326: `ometer electr`\n", + "Group 3 found at 7313-7326: `ometer electr`\n", + "\n", + "Group 1 found at 8360-8365: ` safe`\n", + "Group 2 found at 8365-8370: ` safe`\n", + "Group 3 found at 8365-8370: ` safe`\n", + "\n", + "Group 1 found at 9215-9222: `fields `\n", + "Group 2 found at 9222-9229: `fields `\n", + "Group 3 found at 9222-9229: `fields `\n", + "(0, 64, 64)\n", + "detect_scores time: 1.832261085510254\n", + "detect_scores: Barack Obama, the 44th President of the United St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.033986806869506836\n", + "detect_scores: In Poland, a variety of popular and traditional s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4715-4722: ` marine`\n", + "Group 2 found at 4722-4729: ` marine`\n", + "Group 3 found at 4722-4729: ` marine`\n", + "\n", + "Group 1 found at 5043-5055: ` philosopher`\n", + "Group 2 found at 5055-5067: ` philosopher`\n", + "Group 3 found at 5055-5067: ` philosopher`\n", + "\n", + "Group 1 found at 5068-5077: ` logician`\n", + "Group 2 found at 5077-5086: ` logician`\n", + "Group 3 found at 5077-5086: ` logician`\n", + "\n", + "Group 1 found at 8936-8943: `letter `\n", + "Group 2 found at 8943-8950: `letter `\n", + "Group 3 found at 8943-8950: `letter `\n", + "(0, 70, 70)\n", + "detect_scores time: 1.5736303329467773\n", + "detect_scores: I'm sorry, but your question about Demi Lovato is\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030078887939453125\n", + "detect_scores: Scarlett Johansson is a versatile actress with nu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9024-9032: ` control`\n", + "Group 2 found at 9032-9040: ` control`\n", + "Group 3 found at 9032-9040: ` control`\n", + "\n", + "Group 1 found at 9090-9095: ` ipod`\n", + "Group 2 found at 9095-9101: ` ipod `\n", + "Group 3 found at 9095-9100: ` ipod`\n", + "\n", + "Group 1 found at 9400-9406: ` cover`\n", + "Group 2 found at 9406-9412: ` cover`\n", + "Group 3 found at 9406-9412: ` cover`\n", + "(0, 39, 39)\n", + "detect_scores time: 2.04484486579895\n", + "detect_scores: Amy Squires is a character from the movie \"Bad Te\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004469871520996094\n", + "detect_scores: Boeing Corporation, one of the largest aerospace \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00593113899230957\n", + "detect_scores: Viggo Mortenson played the character Aragorn, als\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00997614860534668\n", + "detect_scores: Sir Isaac Newton, born on January 4th (December 2\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3694-3699: ` wait`\n", + "Group 2 found at 3699-3704: ` wait`\n", + "Group 3 found at 3699-3704: ` wait`\n", + "\n", + "Group 1 found at 5943-5950: `meters `\n", + "Group 2 found at 5950-5957: `meters `\n", + "Group 3 found at 5950-5957: `meters `\n", + "\n", + "Group 1 found at 6187-6193: `meter `\n", + "Group 2 found at 6193-6199: `meter `\n", + "Group 3 found at 6193-6199: `meter `\n", + "\n", + "Group 1 found at 6241-6246: ` ohms`\n", + "Group 2 found at 6246-6251: ` ohms`\n", + "Group 3 found at 6246-6251: ` ohms`\n", + "\n", + "Group 1 found at 8991-8998: ` clergy`\n", + "Group 2 found at 8998-9005: ` clergy`\n", + "Group 3 found at 8998-9005: ` clergy`\n", + "\n", + "Group 1 found at 10352-10362: `dependent `\n", + "Group 2 found at 10362-10372: `dependent `\n", + "Group 3 found at 10362-10372: `dependent `\n", + "\n", + "Group 1 found at 10411-10421: `certainty `\n", + "Group 2 found at 10421-10431: `certainty `\n", + "Group 3 found at 10421-10431: `certainty `\n", + "(0, 100, 100)\n", + "detect_scores time: 2.0233168601989746\n", + "detect_scores: William Shakespeare got married to Anne Hathaway.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031490325927734375\n", + "detect_scores: Michelle Obama, born Flavia Crépin and later know\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013489007949829102\n", + "detect_scores: Franz Liszt was a 19th-century Hungarian composer\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7300-7310: ` signature`\n", + "Group 2 found at 7310-7320: ` signature`\n", + "Group 3 found at 7310-7320: ` signature`\n", + "\n", + "Group 1 found at 8802-8815: `imates approx`\n", + "Group 2 found at 8815-8828: `imates approx`\n", + "Group 3 found at 8815-8828: `imates approx`\n", + "\n", + "Group 1 found at 10347-10357: `dependent `\n", + "Group 2 found at 10357-10367: `dependent `\n", + "Group 3 found at 10357-10367: `dependent `\n", + "\n", + "Group 1 found at 11007-11016: `finite in`\n", + "Group 2 found at 11016-11025: `finite in`\n", + "Group 3 found at 11016-11025: `finite in`\n", + "\n", + "Group 1 found at 11621-11630: `s program`\n", + "Group 2 found at 11630-11639: `s program`\n", + "Group 3 found at 11630-11639: `s program`\n", + "\n", + "Group 1 found at 11679-11689: ` remainder`\n", + "Group 2 found at 11689-11699: ` remainder`\n", + "Group 3 found at 11689-11699: ` remainder`\n", + "\n", + "Group 1 found at 11859-11867: `ons reas`\n", + "Group 2 found at 11867-11875: `ons reas`\n", + "Group 3 found at 11867-11875: `ons reas`\n", + "\n", + "Group 1 found at 11949-11958: `s routine`\n", + "Group 2 found at 11958-11968: `s routine `\n", + "Group 3 found at 11958-11967: `s routine`\n", + "(0, 157, 157)\n", + "detect_scores time: 2.3635170459747314\n", + "detect_scores: David Luíz currently plays soccer (football) in t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022118091583251953\n", + "detect_scores: Victoria, British Columbia can be found on the so\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012322187423706055\n", + "detect_scores: The official currency of France is called the Eur\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.021670103073120117\n", + "detect_scores: David Beckham played for the Los Angeles Galaxy d\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.036663055419921875\n", + "detect_scores: WNYC, which stands for New York Public Radio (for\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006968975067138672\n", + "detect_scores: John Jay, an important figure in American history\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021331310272216797\n", + "detect_scores: Mount Fuji, also known as Fujisan in Japanese, is\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8381-8387: `metre `\n", + "Group 2 found at 8387-8393: `metre `\n", + "Group 3 found at 8387-8393: `metre `\n", + "\n", + "Group 1 found at 8428-8433: `gram `\n", + "Group 2 found at 8433-8438: `gram `\n", + "Group 3 found at 8433-8438: `gram `\n", + "\n", + "Group 1 found at 9366-9373: `es phas`\n", + "Group 2 found at 9373-9380: `es phas`\n", + "Group 3 found at 9373-9380: `es phas`\n", + "\n", + "Group 1 found at 10836-10841: `code `\n", + "Group 2 found at 10841-10846: `code `\n", + "Group 3 found at 10841-10846: `code `\n", + "(0, 46, 46)\n", + "detect_scores time: 2.0915377140045166\n", + "detect_scores: Toussaint L’Ouverture, the leader of Haiti during\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009064912796020508\n", + "detect_scores: The United Kingdom (UK) is made up of four consti\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03792595863342285\n", + "detect_scores: The answer to your query, according to Wikipedia \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005375862121582031\n", + "detect_scores: Before France adopted the Euro as its official cu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011802196502685547\n", + "detect_scores: The official motto of Kentucky, which also serves\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0025420188903808594\n", + "detect_scores: Samantha Stephenson is not a widely recognized ch\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010914087295532227\n", + "detect_scores: Sir Isaac Newton studied physics and mathematics.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010020971298217773\n", + "detect_scores: San Diego County is located on the southern borde\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015408039093017578\n", + "detect_scores: Canada, which lies to the North of Mexico and bor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017590761184692383\n", + "detect_scores: Santa Claus, also known as Saint Nicholas or Kris\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01578807830810547\n", + "detect_scores: Coretta Scott King, the wife of civil rights lead\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002032756805419922\n", + "detect_scores: Adolf Hitler was raised in a Roman Catholic famil\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004926919937133789\n", + "detect_scores: The Illinois River can be found in central United\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4565-4571: `ound s`\n", + "Group 2 found at 4571-4577: `ound s`\n", + "Group 3 found at 4571-4577: `ound s`\n", + "\n", + "Group 1 found at 7462-7471: `s formula`\n", + "Group 2 found at 7471-7480: `s formula`\n", + "Group 3 found at 7471-7480: `s formula`\n", + "(0, 30, 30)\n", + "detect_scores time: 1.9408540725708008\n", + "detect_scores: Honduras is a country located in Central America,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1411-1416: `e els`\n", + "Group 2 found at 1416-1421: `e els`\n", + "Group 3 found at 1416-1421: `e els`\n", + "\n", + "Group 1 found at 3000-3008: ` present`\n", + "Group 2 found at 3008-3016: ` present`\n", + "Group 3 found at 3008-3016: ` present`\n", + "\n", + "Group 1 found at 8384-8393: `tor credi`\n", + "Group 2 found at 8393-8402: `tor credi`\n", + "Group 3 found at 8393-8402: `tor credi`\n", + "\n", + "Group 1 found at 10341-10353: ` instruction`\n", + "Group 2 found at 10353-10365: ` instruction`\n", + "Group 3 found at 10353-10365: ` instruction`\n", + "\n", + "Group 1 found at 11274-11280: `ts uni`\n", + "Group 2 found at 11280-11286: `ts uni`\n", + "Group 3 found at 11280-11286: `ts uni`\n", + "\n", + "Group 1 found at 11363-11375: `s opposition`\n", + "Group 2 found at 11375-11388: `s opposition `\n", + "Group 3 found at 11375-11387: `s opposition`\n", + "(0, 105, 105)\n", + "detect_scores time: 1.813493013381958\n", + "detect_scores: As of my last update in April 2023, Ronaldho was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004202127456665039\n", + "detect_scores: Galileo Galilei, an Italian astronomer and physic\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6480-6491: `imeter mill`\n", + "Group 2 found at 6491-6502: `imeter mill`\n", + "Group 3 found at 6491-6502: `imeter mill`\n", + "\n", + "Group 1 found at 6624-6631: ` league`\n", + "Group 2 found at 6631-6638: ` league`\n", + "Group 3 found at 6631-6638: ` league`\n", + "\n", + "Group 1 found at 6650-6657: `meters `\n", + "Group 2 found at 6657-6664: `meters `\n", + "Group 3 found at 6657-6664: `meters `\n", + "\n", + "Group 1 found at 7259-7265: `plane `\n", + "Group 2 found at 7265-7271: `plane `\n", + "Group 3 found at 7265-7271: `plane `\n", + "\n", + "Group 1 found at 7343-7348: `d sle`\n", + "Group 2 found at 7348-7353: `d sle`\n", + "Group 3 found at 7348-7353: `d sle`\n", + "\n", + "Group 1 found at 7613-7618: `melon`\n", + "Group 2 found at 7619-7624: `melon`\n", + "Group 3 found at 7619-7624: `melon`\n", + "\n", + "Group 1 found at 9368-9374: ` cloth`\n", + "Group 2 found at 9374-9380: ` cloth`\n", + "Group 3 found at 9374-9380: ` cloth`\n", + "\n", + "Group 1 found at 9507-9513: `s suit`\n", + "Group 2 found at 9513-9520: `s suit `\n", + "Group 3 found at 9513-9519: `s suit`\n", + "(0, 108, 108)\n", + "detect_scores time: 1.9510908126831055\n", + "detect_scores: Germany's largest and most significant trade rela\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4876-4882: `aware `\n", + "Group 2 found at 4882-4888: `aware `\n", + "Group 3 found at 4882-4888: `aware `\n", + "\n", + "Group 1 found at 8519-8529: `magnetism `\n", + "Group 2 found at 8529-8539: `magnetism `\n", + "Group 3 found at 8529-8539: `magnetism `\n", + "(0, 32, 32)\n", + "detect_scores time: 2.0338222980499268\n", + "detect_scores: Mitt Romney, the former Governor of Massachusetts\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010820865631103516\n", + "detect_scores: Sean Hinton attended the University of Michigan. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0040340423583984375\n", + "detect_scores: Central America consists primarily of 7 countries\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6608-6619: `ness single`\n", + "Group 2 found at 6619-6630: `ness single`\n", + "Group 3 found at 6619-6630: `ness single`\n", + "\n", + "Group 1 found at 9175-9183: ` channel`\n", + "Group 2 found at 9183-9191: ` channel`\n", + "Group 3 found at 9183-9191: ` channel`\n", + "\n", + "Group 1 found at 11207-11212: `book `\n", + "Group 2 found at 11212-11217: `book `\n", + "Group 3 found at 11212-11217: `book `\n", + "(0, 48, 48)\n", + "detect_scores time: 2.153036594390869\n", + "detect_scores: I'm sorry, but there seems to be some confusion. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017785072326660156\n", + "detect_scores: The Amazon Rainforest, also known as Amazonia or \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03272700309753418\n", + "detect_scores: Claude Monet was a French painter and one of the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007337093353271484\n", + "detect_scores: Kurt Cobain, the lead vocalist and primary songwr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003425121307373047\n", + "detect_scores: Jennifer Lawrence played the character of \"Rebecc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03290128707885742\n", + "detect_scores: The Governor of Virginia in 2011 was Bob McDonnel\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003632068634033203\n", + "detect_scores: Jackie Kennedy, born Jacqueline Lee Bouvier and t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008491039276123047\n", + "detect_scores: Lauren Conrad Major graduated from the Fashion In\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.032644033432006836\n", + "detect_scores: Pennsylvania's current standard time would depend\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016643762588500977\n", + "detect_scores: Mario López is a Mexican actor, singer and model.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011399984359741211\n", + "detect_scores: Sarah Dessen's novels have been adapted into seve\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8666-8672: ` equal`\n", + "Group 2 found at 8672-8678: ` equal`\n", + "Group 3 found at 8672-8678: ` equal`\n", + "\n", + "Group 1 found at 10029-10037: `relation`\n", + "Group 2 found at 10038-10046: `relation`\n", + "Group 3 found at 10038-10046: `relation`\n", + "(0, 29, 29)\n", + "detect_scores time: 2.290541172027588\n", + "detect_scores: As an AI, I can't provide real-time data. However\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013168096542358398\n", + "detect_scores: Farrah Fawcett, the American actress and model kn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017559528350830078\n", + "detect_scores: John Steinbeck, the acclaimed American author and\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6502-6514: `tions estima`\n", + "Group 2 found at 6514-6526: `tions estima`\n", + "Group 3 found at 6514-6526: `tions estima`\n", + "\n", + "Group 1 found at 8691-8703: `e certificat`\n", + "Group 2 found at 8703-8715: `e certificat`\n", + "Group 3 found at 8703-8715: `e certificat`\n", + "(0, 48, 48)\n", + "detect_scores time: 1.918118953704834\n", + "detect_scores: As of my knowledge cutoff in 2023, Cuba operates \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007011890411376953\n", + "detect_scores: The current capital of Italy, as it has been sinc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019159317016601562\n", + "detect_scores: In The Bahamas, English is predominantly spoken a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002939939498901367\n", + "detect_scores: George Michael, the famous pop singer and musicia\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011747121810913086\n", + "detect_scores: In the year 2010, Cristiano Ronaldo played as a f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017015933990478516\n", + "detect_scores: The Bahamas operates on Atlantic Standard Time (A\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012798786163330078\n", + "detect_scores: In Brazil, the primary and official language spok\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018229484558105469\n", + "detect_scores: Samuel Taylor Coleridge was significantly influen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4271-4283: `osphere trop`\n", + "Group 2 found at 4283-4295: `osphere trop`\n", + "Group 3 found at 4283-4295: `osphere trop`\n", + "\n", + "Group 1 found at 9881-9888: ` virtue`\n", + "Group 2 found at 9888-9895: ` virtue`\n", + "Group 3 found at 9888-9895: ` virtue`\n", + "\n", + "Group 1 found at 10111-10122: `e preferenc`\n", + "Group 2 found at 10122-10133: `e preferenc`\n", + "Group 3 found at 10122-10133: `e preferenc`\n", + "(0, 60, 60)\n", + "detect_scores time: 1.8068671226501465\n", + "detect_scores: Kim Kardashian is best known for her career in me\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018994808197021484\n", + "detect_scores: The Mississippi River does not technically \"end\" \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008060216903686523\n", + "detect_scores: As of my last update in April 2023, the President\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018002986907958984\n", + "detect_scores: Harley Quinn is a character from DC Comics, and s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7826-7832: ` motto`\n", + "Group 2 found at 7832-7838: ` motto`\n", + "Group 3 found at 7832-7838: ` motto`\n", + "\n", + "Group 1 found at 7845-7852: `phrase `\n", + "Group 2 found at 7852-7859: `phrase `\n", + "Group 3 found at 7852-7859: `phrase `\n", + "\n", + "Group 1 found at 8359-8367: ` fortune`\n", + "Group 2 found at 8367-8375: ` fortune`\n", + "Group 3 found at 8367-8375: ` fortune`\n", + "\n", + "Group 1 found at 10039-10044: `clip `\n", + "Group 2 found at 10044-10049: `clip `\n", + "Group 3 found at 10044-10049: `clip `\n", + "\n", + "Group 1 found at 10528-10536: ` speaker`\n", + "Group 2 found at 10536-10544: ` speaker`\n", + "Group 3 found at 10536-10544: ` speaker`\n", + "(0, 68, 68)\n", + "detect_scores time: 1.8881709575653076\n", + "detect_scores: Ziva David began her tenure as an NCIS Special Ag\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005414009094238281\n", + "detect_scores: Canadian National Anthem\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.1920928955078125e-05\n", + "detect_scores: Mark Zuckerberg studied computer science and psyc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036001205444335938\n", + "detect_scores: Michael Jackson, the famous pop singer known as \"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013570785522460938\n", + "detect_scores: Stephen R. Covey was an American educator, author\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03566789627075195\n", + "detect_scores: Joseph Stalin, as a historical figure and leader \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007653713226318359\n", + "detect_scores: Monta Ellis's highest-achieving season in terms o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006778717041015625\n", + "detect_scores: Rihanna, whose full name is Robyn Rihanna Fenty, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028579235076904297\n", + "detect_scores: Joakim Noah attended the University of Florida, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0071277618408203125\n", + "detect_scores: The role of Billy Elliott in the original film \"B\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018122196197509766\n", + "detect_scores: Kourtney Kardashian has been in relationships wit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030090808868408203\n", + "detect_scores: Australia operates under a federal parliamentary \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6016-6023: `s token`\n", + "Group 2 found at 6023-6030: `s token`\n", + "Group 3 found at 6023-6030: `s token`\n", + "\n", + "Group 1 found at 9162-9177: `ostatics electr`\n", + "Group 2 found at 9177-9192: `ostatics electr`\n", + "Group 3 found at 9177-9192: `ostatics electr`\n", + "\n", + "Group 1 found at 10799-10805: `start `\n", + "Group 2 found at 10805-10811: `start `\n", + "Group 3 found at 10805-10811: `start `\n", + "(0, 56, 56)\n", + "detect_scores time: 2.1384470462799072\n", + "detect_scores: Howie Long played for several NFL teams throughou\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.025162935256958008\n", + "detect_scores: Elizabethtown, Kentucky operates in the Eastern T\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008029937744140625\n", + "detect_scores: Chris Paul, the professional basketball player kn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5109-5120: `variance co`\n", + "Group 2 found at 5120-5131: `variance co`\n", + "Group 3 found at 5120-5131: `variance co`\n", + "\n", + "Group 1 found at 6234-6240: `colon `\n", + "Group 2 found at 6240-6246: `colon `\n", + "Group 3 found at 6240-6246: `colon `\n", + "\n", + "Group 1 found at 6398-6405: ` screen`\n", + "Group 2 found at 6405-6412: ` screen`\n", + "Group 3 found at 6405-6412: ` screen`\n", + "\n", + "Group 1 found at 7764-7769: `list `\n", + "Group 2 found at 7769-7774: `list `\n", + "Group 3 found at 7769-7774: `list `\n", + "\n", + "Group 1 found at 10838-10843: ` pipe`\n", + "Group 2 found at 10843-10848: ` pipe`\n", + "Group 3 found at 10843-10848: ` pipe`\n", + "\n", + "Group 1 found at 11305-11312: `parent `\n", + "Group 2 found at 11312-11319: `parent `\n", + "Group 3 found at 11312-11319: `parent `\n", + "\n", + "Group 1 found at 11368-11376: `body any`\n", + "Group 2 found at 11376-11384: `body any`\n", + "Group 3 found at 11376-11384: `body any`\n", + "\n", + "Group 1 found at 11490-11495: ` soon`\n", + "Group 2 found at 11495-11500: ` soon`\n", + "Group 3 found at 11495-11500: ` soon`\n", + "\n", + "Group 1 found at 11706-11715: `nce comme`\n", + "Group 2 found at 11715-11724: `nce comme`\n", + "Group 3 found at 11715-11724: `nce comme`\n", + "(0, 126, 126)\n", + "detect_scores time: 1.9306747913360596\n", + "detect_scores: The New York Giants, a professional American foot\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018968582153320312\n", + "detect_scores: Sir Isaac Newton, primarily known for his groundb\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07795929908752441\n", + "detect_scores: Shaquille O'Neal, known as \"Shaq,\" was drafted by\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004142045974731445\n", + "detect_scores: The original Mickey Mouse character, created by W\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011587142944335938\n", + "detect_scores: Michael Vick was a professional American football\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00823974609375\n", + "detect_scores: The Columbia River starts in the Rocky Mountains \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6538-6548: ` implement`\n", + "Group 2 found at 6548-6558: ` implement`\n", + "Group 3 found at 6548-6558: ` implement`\n", + "\n", + "Group 1 found at 10519-10529: `agreement `\n", + "Group 2 found at 10529-10539: `agreement `\n", + "Group 3 found at 10529-10539: `agreement `\n", + "\n", + "Group 1 found at 10541-10550: `solution `\n", + "Group 2 found at 10550-10559: `solution `\n", + "Group 3 found at 10550-10559: `solution `\n", + "(0, 58, 58)\n", + "detect_scores time: 1.8914642333984375\n", + "detect_scores: The Harry Potter series, written by J.K. Rowling,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9511-9522: `conference `\n", + "Group 2 found at 9522-9533: `conference `\n", + "Group 3 found at 9522-9533: `conference `\n", + "(0, 22, 22)\n", + "detect_scores time: 1.6484200954437256\n", + "detect_scores: In Barbados, the official and legal tender is kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008718013763427734\n", + "detect_scores: Angelina Jolie, born Angela Evangeline Assad on J\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009730100631713867\n", + "detect_scores: Ninevah City does not exist as a recognized locat\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016195058822631836\n", + "detect_scores: Eowyn is a character from J.R.R. Tolkien's Middle\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012695074081420898\n", + "detect_scores: Eva Perón, also known as Evita and the First Lady\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0053920745849609375\n", + "detect_scores: The Baltimore Ravens won the Super Bowl in 2013. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0041751861572265625\n", + "detect_scores: Ohio is often regarded as a Midwestern state in t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6942-6950: `parents `\n", + "Group 2 found at 6950-6958: `parents `\n", + "Group 3 found at 6950-6958: `parents `\n", + "\n", + "Group 1 found at 8757-8766: `s formula`\n", + "Group 2 found at 8766-8776: `s formula `\n", + "Group 3 found at 8766-8775: `s formula`\n", + "\n", + "Group 1 found at 9412-9419: `l seque`\n", + "Group 2 found at 9419-9426: `l seque`\n", + "Group 3 found at 9419-9426: `l seque`\n", + "\n", + "Group 1 found at 9549-9564: `ation authentic`\n", + "Group 2 found at 9564-9579: `ation authentic`\n", + "Group 3 found at 9564-9579: `ation authentic`\n", + "(0, 79, 79)\n", + "detect_scores time: 2.00192928314209\n", + "detect_scores: Cristiano Ronaldo currently plays for the club Ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004602193832397461\n", + "detect_scores: As of my last update in 2023, Michigan operates o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00404810905456543\n", + "detect_scores: John Tyler served as the 10th President of the Un\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8114-8120: `about `\n", + "Group 2 found at 8120-8126: `about `\n", + "Group 3 found at 8120-8126: `about `\n", + "ignored: foreverforeverforever\n", + "exception: \n", + "(0, 12, 12)\n", + "detect_scores time: 2.0256950855255127\n", + "detect_scores: In Jamaica, the official and legal tender used fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013225793838500977\n", + "detect_scores: Jay Gould Jr., who was also known as \"Jungle Jim\"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008610010147094727\n", + "detect_scores: I'm sorry, but there are no public records or rep\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022063255310058594\n", + "detect_scores: The Carolina Panthers made it to the Super Bowl f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023589134216308594\n", + "detect_scores: As of my last update, there hasn't been a recent \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007628917694091797\n", + "detect_scores: Helen Flanagan is a former Irish television prese\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013756990432739258\n", + "detect_scores: The Tennessee River originates in the Appalachian\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00826406478881836\n", + "detect_scores: Corey Taylor, the lead vocalist of Slipknot and S\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0058002471923828125\n", + "detect_scores: The President of the United States who served imm\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004249095916748047\n", + "detect_scores: Kate Gosselin, known for her reality television s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011450767517089844\n", + "detect_scores: The United States Government operates under a fed\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008806228637695312\n", + "detect_scores: Mount Lassen, often referred to as simply \"Lassen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014863252639770508\n", + "detect_scores: The State Motto of Ohio is \"With God, all things \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003306865692138672\n", + "detect_scores: Wolfgang Amadeus Mozart, a prolific and influenti\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010334014892578125\n", + "detect_scores: The Kennedy Family, as commonly known due to its \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 2.1999449729919434\n", + "detect_scores: The Barcelona Airport that's nearest to Port of B\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018532752990722656\n", + "detect_scores: Adolf Hitler, the leader of Nazi Germany, initiat\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012650489807128906\n", + "detect_scores: Canada is part of the North American continent. I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0035512447357177734\n", + "detect_scores: George Wilson is best known as the character from\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007431983947753906\n", + "detect_scores: Adolf Hitler, born on April 20th, 1889 in Braunau\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08914899826049805\n", + "detect_scores: After the Iranian Revolution in 1979, Iran establ\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00799107551574707\n", + "detect_scores: Harper Lee attended Monroeville High School in Al\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022268295288085938\n", + "detect_scores: J.R.R. Tolkien attended Exeter College at the Uni\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033779144287109375\n", + "detect_scores: Wassily Kandinsky was a Russian painter and art t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013778209686279297\n", + "detect_scores: Antoni Gaudí, the renowned Catalan architect know\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06552600860595703\n", + "detect_scores: Paris offers an array of accommodation options to\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7426-7432: `watch `\n", + "Group 2 found at 7432-7438: `watch `\n", + "Group 3 found at 7432-7438: `watch `\n", + "\n", + "Group 1 found at 7543-7550: ` hammer`\n", + "Group 2 found at 7550-7557: ` hammer`\n", + "Group 3 found at 7550-7557: ` hammer`\n", + "\n", + "Group 1 found at 10151-10159: `rs scala`\n", + "Group 2 found at 10159-10167: `rs scala`\n", + "Group 3 found at 10159-10167: `rs scala`\n", + "\n", + "Group 1 found at 10279-10286: `meters `\n", + "Group 2 found at 10286-10293: `meters `\n", + "Group 3 found at 10286-10293: `meters `\n", + "(0, 56, 56)\n", + "detect_scores time: 1.9484291076660156\n", + "detect_scores: Benjamin Franklin's first wife was Deborah Read. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005067110061645508\n", + "detect_scores: The largest and most populous city in Spain is Ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020148754119873047\n", + "detect_scores: Pudge Rodriguez is a former professional baseball\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004792690277099609\n", + "detect_scores: The Milwaukee Brewers' home ballpark, as of my la\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009478330612182617\n", + "detect_scores: The Gallipoli Campaign, also known as the Battle \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.025097131729125977\n", + "detect_scores: Shakira Isabel Mebarak Ripoll, born on February 2\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 427-432: `Waka `\n", + "Group 2 found at 432-437: `Waka `\n", + "Group 3 found at 432-437: `Waka `\n", + "(0, 10, 10)\n", + "detect_scores time: 0.007094144821166992\n", + "detect_scores: Ian Holm portrayed Bilbo Baggins, a central chara\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001361846923828125\n", + "detect_scores: The Tennessee River is a major waterway in the so\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015327930450439453\n", + "detect_scores: Utah's State Capitol, located in Salt Lake City, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016358137130737305\n", + "detect_scores: Benjamin Franklin, one of the Founding Fathers of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.8188598155975342\n", + "detect_scores: Jeremy Lin played for the Houston Rockets in the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0067179203033447266\n", + "detect_scores: Steve Nash was Canadian by birth. He holds both A\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006151199340820312\n", + "detect_scores: As my knowledge is current only up to early 2023,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00464630126953125\n", + "detect_scores: France primarily speaks French, which is a Romanc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05524802207946777\n", + "detect_scores: Martin Luther King Jr. earned a doctorate in syst\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019431114196777344\n", + "detect_scores: St. Louis, often referred to as Saint Louie or Th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003326892852783203\n", + "detect_scores: Peyton Manning's father, John Henry \"Jack\" Mannin\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2319-2329: ` identical`\n", + "Group 2 found at 2329-2339: ` identical`\n", + "Group 3 found at 2329-2339: ` identical`\n", + "\n", + "Group 1 found at 2364-2370: ` equal`\n", + "Group 2 found at 2370-2376: ` equal`\n", + "Group 3 found at 2370-2376: ` equal`\n", + "\n", + "Group 1 found at 5115-5124: `s concept`\n", + "Group 2 found at 5124-5133: `s concept`\n", + "Group 3 found at 5124-5133: `s concept`\n", + "\n", + "Group 1 found at 5685-5690: `e hat`\n", + "Group 2 found at 5690-5695: `e hat`\n", + "Group 3 found at 5690-5695: `e hat`\n", + "\n", + "Group 1 found at 10186-10194: `ity grav`\n", + "Group 2 found at 10194-10202: `ity grav`\n", + "Group 3 found at 10194-10202: `ity grav`\n", + "\n", + "Group 1 found at 10224-10233: `magnetic `\n", + "Group 2 found at 10233-10242: `magnetic `\n", + "Group 3 found at 10233-10242: `magnetic `\n", + "(0, 94, 94)\n", + "detect_scores time: 2.206829071044922\n", + "detect_scores: The official currency used in Peru is called the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00013494491577148438\n", + "detect_scores: The United Kingdom is comprised of four constitue\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4480-4486: ` plain`\n", + "Group 2 found at 4486-4492: ` plain`\n", + "Group 3 found at 4486-4492: ` plain`\n", + "\n", + "Group 1 found at 7402-7408: `hills `\n", + "Group 2 found at 7408-7414: `hills `\n", + "Group 3 found at 7408-7414: `hills `\n", + "(0, 24, 24)\n", + "detect_scores time: 1.7586069107055664\n", + "detect_scores: Robert F. Kennedy attended several educational in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03196287155151367\n", + "detect_scores: The Fukushima Daiichi Nuclear Power Station, also\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8131-8137: ` popup`\n", + "Group 2 found at 8137-8144: ` popup `\n", + "Group 3 found at 8137-8143: ` popup`\n", + "\n", + "Group 1 found at 8187-8195: `loading `\n", + "Group 2 found at 8195-8203: `loading `\n", + "Group 3 found at 8195-8203: `loading `\n", + "\n", + "Group 1 found at 8306-8313: `tion ac`\n", + "Group 2 found at 8313-8320: `tion ac`\n", + "Group 3 found at 8313-8320: `tion ac`\n", + "(0, 43, 43)\n", + "detect_scores time: 2.0882961750030518\n", + "detect_scores: Los Angeles, California operates in the Pacific T\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005672931671142578\n", + "detect_scores: If you are planning a trip from the United States\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8857-8863: `laces `\n", + "Group 2 found at 8863-8869: `laces `\n", + "Group 3 found at 8863-8869: `laces `\n", + "\n", + "Group 1 found at 9639-9649: ` dimension`\n", + "Group 2 found at 9649-9659: ` dimension`\n", + "Group 3 found at 9649-9659: ` dimension`\n", + "\n", + "Group 1 found at 10609-10616: ` parsec`\n", + "Group 2 found at 10616-10623: ` parsec`\n", + "Group 3 found at 10616-10623: ` parsec`\n", + "\n", + "Group 1 found at 10743-10749: `e Tonn`\n", + "Group 2 found at 10749-10755: `e Tonn`\n", + "Group 3 found at 10749-10755: `e Tonn`\n", + "(0, 58, 58)\n", + "detect_scores time: 1.9654262065887451\n", + "detect_scores: As my knowledge was last updated in 2023, I canno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002835988998413086\n", + "detect_scores: In Scotland, the primary language spoken is Engli\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002235889434814453\n", + "detect_scores: John Dalton was an English chemist, physicist and\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01995706558227539\n", + "detect_scores: Glastonbury, England can be found in Somerset. It\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029420852661132812\n", + "detect_scores: The American Federation of Labor (AFL) was founde\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0325779914855957\n", + "detect_scores: Thomas Hobbes, the influential English philosophe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8544-8550: ` orbit`\n", + "Group 2 found at 8550-8556: ` orbit`\n", + "Group 3 found at 8550-8556: ` orbit`\n", + "\n", + "Group 1 found at 8838-8845: `second `\n", + "Group 2 found at 8845-8852: `second `\n", + "Group 3 found at 8845-8852: `second `\n", + "\n", + "Group 1 found at 11422-11431: `er debugg`\n", + "Group 2 found at 11431-11440: `er debugg`\n", + "Group 3 found at 11431-11440: `er debugg`\n", + "(0, 44, 44)\n", + "detect_scores time: 2.2994461059570312\n", + "detect_scores: John F. Kennedy, the 35th President of the United\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5121-5128: ` effect`\n", + "Group 2 found at 5128-5135: ` effect`\n", + "Group 3 found at 5128-5135: ` effect`\n", + "\n", + "Group 1 found at 7047-7055: `ability `\n", + "Group 2 found at 7055-7063: `ability `\n", + "Group 3 found at 7055-7063: `ability `\n", + "\n", + "Group 1 found at 8144-8149: `e rat`\n", + "Group 2 found at 8149-8154: `e rat`\n", + "Group 3 found at 8149-8154: `e rat`\n", + "\n", + "Group 1 found at 8230-8241: ` coordinate`\n", + "Group 2 found at 8241-8252: ` coordinate`\n", + "Group 3 found at 8241-8252: ` coordinate`\n", + "\n", + "Group 1 found at 9361-9367: ` loose`\n", + "Group 2 found at 9367-9373: ` loose`\n", + "Group 3 found at 9367-9373: ` loose`\n", + "\n", + "Group 1 found at 9544-9551: `e petit`\n", + "Group 2 found at 9551-9558: `e petit`\n", + "Group 3 found at 9551-9558: `e petit`\n", + "\n", + "Group 1 found at 9611-9620: `division `\n", + "Group 2 found at 9620-9629: `division `\n", + "Group 3 found at 9620-9629: `division `\n", + "\n", + "Group 1 found at 10947-10958: ` substitute`\n", + "Group 2 found at 10958-10970: ` substitute `\n", + "Group 3 found at 10958-10969: ` substitute`\n", + "(0, 129, 129)\n", + "detect_scores time: 1.720034122467041\n", + "detect_scores: Montreal is a city in the Canadian province of Qu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004026889801025391\n", + "detect_scores: Franz Liszt, the renowned 19th-century Hungarian \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06019997596740723\n", + "detect_scores: Argentina shares its borders with five South Amer\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002110004425048828\n", + "detect_scores: The primary official language spoken by the major\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005544900894165039\n", + "detect_scores: The predominant religion in Israel is Judaism. Ap\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006448030471801758\n", + "detect_scores: As of my last update in April 2023, Rodney Harris\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01109766960144043\n", + "detect_scores: Toronto operates on Eastern Standard Time (EST) d\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018800973892211914\n", + "detect_scores: Robert Burns, also known as Rabbie Burns and the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8063-8068: `verb `\n", + "Group 2 found at 8068-8073: `verb `\n", + "Group 3 found at 8068-8073: `verb `\n", + "\n", + "Group 1 found at 9257-9265: `relation`\n", + "Group 2 found at 9266-9274: `relation`\n", + "Group 3 found at 9266-9274: `relation`\n", + "\n", + "Group 1 found at 9311-9317: ` route`\n", + "Group 2 found at 9317-9323: ` route`\n", + "Group 3 found at 9317-9323: ` route`\n", + "(0, 39, 39)\n", + "detect_scores time: 1.663855791091919\n", + "detect_scores: As of my last update in April 2023, the Utah Atto\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001986980438232422\n", + "detect_scores: The Carolina Panthers are coached by Pat McAfee a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0047910213470458984\n", + "detect_scores: South Africa shares its international land bounda\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.050383806228637695\n", + "detect_scores: Mark Hamill reprised his role as Darth Vader in \"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02241802215576172\n", + "detect_scores: The Kentucky State Bird is the Northern Cardinal.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006549358367919922\n", + "detect_scores: The Canadian Prime Minister in the year 1993 was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003779172897338867\n", + "detect_scores: I cannot respond to questions on election-related\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003108978271484375\n", + "detect_scores: The United Kingdom is a multilingual country with\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3889-3899: `tability s`\n", + "Group 2 found at 3899-3909: `tability s`\n", + "Group 3 found at 3899-3909: `tability s`\n", + "\n", + "Group 1 found at 8479-8485: `metre `\n", + "Group 2 found at 8485-8491: `metre `\n", + "Group 3 found at 8485-8491: `metre `\n", + "\n", + "Group 1 found at 8589-8595: ` arrow`\n", + "Group 2 found at 8595-8601: ` arrow`\n", + "Group 3 found at 8595-8601: ` arrow`\n", + "\n", + "Group 1 found at 10472-10480: `e entitl`\n", + "Group 2 found at 10480-10488: `e entitl`\n", + "Group 3 found at 10480-10488: `e entitl`\n", + "(0, 60, 60)\n", + "detect_scores time: 2.2260968685150146\n", + "detect_scores: Pope John Paul II, born Karol Józef Wojtyła on Ma\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02472710609436035\n", + "detect_scores: Franklin Pierce, who served as the 14th President\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9018-9024: `cycle `\n", + "Group 2 found at 9024-9030: `cycle `\n", + "Group 3 found at 9024-9030: `cycle `\n", + "\n", + "Group 1 found at 9486-9494: `ity grav`\n", + "Group 2 found at 9494-9502: `ity grav`\n", + "Group 3 found at 9494-9502: `ity grav`\n", + "\n", + "Group 1 found at 10047-10052: `mail `\n", + "Group 2 found at 10052-10057: `mail `\n", + "Group 3 found at 10052-10057: `mail `\n", + "\n", + "Group 1 found at 10677-10683: `magnet`\n", + "Group 2 found at 10684-10690: `magnet`\n", + "Group 3 found at 10684-10690: `magnet`\n", + "\n", + "Group 1 found at 11654-11662: ` feeling`\n", + "Group 2 found at 11662-11670: ` feeling`\n", + "Group 3 found at 11662-11670: ` feeling`\n", + "(0, 67, 67)\n", + "detect_scores time: 2.333153009414673\n", + "detect_scores: As of my knowledge cutoff in early 2023, the most\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010693073272705078\n", + "detect_scores: Michelangelo Buonarroti, one of the most prominen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8984-8995: `variance co`\n", + "Group 2 found at 8995-9006: `variance co`\n", + "Group 3 found at 8995-9006: `variance co`\n", + "\n", + "Group 1 found at 11553-11558: `venge`\n", + "Group 2 found at 11559-11564: `venge`\n", + "Group 3 found at 11559-11564: `venge`\n", + "(0, 33, 33)\n", + "detect_scores time: 1.818864107131958\n", + "detect_scores: Monsanto, now owned by Bayer since its acquisitio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014922142028808594\n", + "detect_scores: Woody Harrelson played the character \"Steve Holt\"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014729499816894531\n", + "detect_scores: In Sweden, the primary languages spoken are Swedi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009179115295410156\n", + "detect_scores: The Philippines operates under a democratic and c\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002089977264404297\n", + "detect_scores: Mitt Romney attended Brigham Young University (BY\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02767777442932129\n", + "detect_scores: Ibrahim Afellay hails from Tétouan, which is a ci\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0027008056640625\n", + "detect_scores: In New Zealand, the official currencies are the N\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008220195770263672\n", + "detect_scores: When planning activities for children visiting As\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8615-8620: ` sand`\n", + "Group 2 found at 8620-8625: ` sand`\n", + "Group 3 found at 8620-8625: ` sand`\n", + "\n", + "Group 1 found at 9311-9320: `magnetic `\n", + "Group 2 found at 9320-9329: `magnetic `\n", + "Group 3 found at 9320-9329: `magnetic `\n", + "\n", + "Group 1 found at 10777-10784: `en elev`\n", + "Group 2 found at 10784-10791: `en elev`\n", + "Group 3 found at 10784-10791: `en elev`\n", + "(0, 42, 42)\n", + "detect_scores time: 2.035583972930908\n", + "detect_scores: Kurt Russell played the character named \"Kurt War\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2294-2301: `s exist`\n", + "Group 2 found at 2301-2308: `s exist`\n", + "Group 3 found at 2301-2308: `s exist`\n", + "\n", + "Group 1 found at 6956-6963: ` anchor`\n", + "Group 2 found at 6963-6970: ` anchor`\n", + "Group 3 found at 6963-6970: ` anchor`\n", + "\n", + "Group 1 found at 8249-8255: ` aware`\n", + "Group 2 found at 8255-8261: ` aware`\n", + "Group 3 found at 8255-8261: ` aware`\n", + "(0, 40, 40)\n", + "detect_scores time: 2.060027837753296\n", + "detect_scores: Pablo Picasso, the renowned Spanish painter and s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2774-2782: ` perfect`\n", + "Group 2 found at 2782-2790: ` perfect`\n", + "Group 3 found at 2782-2790: ` perfect`\n", + "\n", + "Group 1 found at 8030-8039: `s upgrade`\n", + "Group 2 found at 8039-8049: `s upgrade `\n", + "Group 3 found at 8039-8048: `s upgrade`\n", + "\n", + "Group 1 found at 8180-8191: `evolution r`\n", + "Group 2 found at 8191-8202: `evolution r`\n", + "Group 3 found at 8191-8202: `evolution r`\n", + "\n", + "Group 1 found at 10808-10813: `chip `\n", + "Group 2 found at 10813-10818: `chip `\n", + "Group 3 found at 10813-10818: `chip `\n", + "(0, 67, 67)\n", + "detect_scores time: 2.0408332347869873\n", + "detect_scores: When traveling from the United States or most oth\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012356042861938477\n", + "detect_scores: As of my last update in April 2023, Raúl Ibañez w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008431196212768555\n", + "detect_scores: Actor Samuel L. Jackson portrays the character of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020639896392822266\n", + "detect_scores: As of my last update in early 2023, Michelle Pfei\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005743980407714844\n", + "detect_scores: Laura Ingalls Wilder is most famously known as an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04538226127624512\n", + "detect_scores: As of my last update in April 2023, Dwyane Wade r\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007847309112548828\n", + "detect_scores: I'm sorry, but as a large language model develope\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007482051849365234\n", + "detect_scores: Madonna Louise Ciccone, known professionally as M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.020015716552734375\n", + "detect_scores: The capital city of Brazil is Brasília. It was of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003281116485595703\n", + "detect_scores: John Stockton, the legendary basketball player kn\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.029191017150878906\n", + "detect_scores: Mexico uses the Mexican Peso as its official curr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00304412841796875\n", + "detect_scores: As of my knowledge cutoff in early 2023, Chrysler\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018714189529418945\n", + "detect_scores: Gregor Mendel, often referred to as the \"Father o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08496689796447754\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002875089645385742\n", + "detect_scores: Joe Biden was the individual who ran as Barack Ob\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00024008750915527344\n", + "detect_scores: People in the UK primarily speak English. However\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007856130599975586\n", + "detect_scores: South Korea operates under a presidential represe\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0242459774017334\n", + "detect_scores: Ben Franklin, one of the Founding Fathers of the \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00086212158203125\n", + "detect_scores: The Sri Lankan capital is Colombo. It serves as t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009912252426147461\n", + "detect_scores: Cyprus uses the Euro (€) as its official currency\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001104116439819336\n", + "detect_scores: Johnny Depp is known for playing a variety of gui\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003365755081176758\n", + "detect_scores: Dustin Johnson, born on February 20, 1987, in Edm\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0074541568756103516\n", + "detect_scores: I'm sorry, but as of my last update in 2023, Cher\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029070377349853516\n", + "detect_scores: The University of Oregon State, often referred to\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08700799942016602\n", + "detect_scores: The official currency of Turkey is named as Turki\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017218589782714844\n", + "detect_scores: Mark Zuckerberg attended Hillside Elementary Scho\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010440826416015625\n", + "detect_scores: As of my knowledge cutoff in March 2023, Kate Mid\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03836178779602051\n", + "detect_scores: Marc Chagall was a Russian-French artist renowned\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010934829711914062\n", + "detect_scores: Billy Dee Williams played the role of Lando Calri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007088184356689453\n", + "detect_scores: Wilfred Owen, the renowned British poet known for\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "ignored: eighteight\n", + "exception: \n", + "ignored: cancelcancel\n", + "exception: \n", + "(0, 0, 0)\n", + "detect_scores time: 1.805366039276123\n", + "detect_scores: AirTran Airways, which operated from 1971 until i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009927034378051758\n", + "detect_scores: The City of Paris gets its name from several poss\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6517-6524: `measure`\n", + "Group 2 found at 6525-6532: `measure`\n", + "Group 3 found at 6525-6532: `measure`\n", + "\n", + "Group 1 found at 8791-8799: `ability `\n", + "Group 2 found at 8799-8807: `ability `\n", + "Group 3 found at 8799-8807: `ability `\n", + "(0, 31, 31)\n", + "detect_scores time: 1.8169670104980469\n", + "detect_scores: Sandra Bullock, the acclaimed actress and filmmak\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006516218185424805\n", + "detect_scores: Olympic National Park, often referred to as the \"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3790-3798: `ability `\n", + "Group 2 found at 3798-3806: `ability `\n", + "Group 3 found at 3798-3806: `ability `\n", + "\n", + "Group 1 found at 4469-4478: ` commence`\n", + "Group 2 found at 4478-4487: ` commence`\n", + "Group 3 found at 4478-4487: ` commence`\n", + "\n", + "Group 1 found at 6568-6575: `avour s`\n", + "Group 2 found at 6575-6582: `avour s`\n", + "Group 3 found at 6575-6582: `avour s`\n", + "(0, 48, 48)\n", + "detect_scores time: 0.7996110916137695\n", + "detect_scores: Yale University is located in New Haven, Connecti\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 4.291534423828125e-05\n", + "detect_scores: Thomas Paine died on June 8, 1799. He passed away\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0063550472259521484\n", + "detect_scores: Barack Hussein Obama Sr. was born on December 1, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005252361297607422\n", + "detect_scores: The New England Patriots' current home field as o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029900074005126953\n", + "detect_scores: Kate Chopin, born Katherine O'Flaherty on Februar\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.043767690658569336\n", + "detect_scores: Bill Clinton attended Georgetown University for h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0056400299072265625\n", + "detect_scores: Staffordshire Terrier, also known as the American\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3929-3938: `e retriev`\n", + "Group 2 found at 3938-3947: `e retriev`\n", + "Group 3 found at 3938-3947: `e retriev`\n", + "\n", + "Group 1 found at 6109-6115: `cards `\n", + "Group 2 found at 6115-6121: `cards `\n", + "Group 3 found at 6115-6121: `cards `\n", + "\n", + "Group 1 found at 7240-7246: `system`\n", + "Group 2 found at 7247-7253: `system`\n", + "Group 3 found at 7247-7253: `system`\n", + "(0, 43, 43)\n", + "detect_scores time: 1.7462432384490967\n", + "detect_scores: Michael J. Fox's biological mother was Phyllis An\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00486302375793457\n", + "detect_scores: Sanjaya Gupta attended medical schools and reside\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008669137954711914\n", + "detect_scores: The North American Free Trade Agreement (NAFTA) o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.019342899322509766\n", + "detect_scores: The Cayman Islands are not a part of any continen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00894784927368164\n", + "detect_scores: In Brazil, the primary official and national lang\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003202676773071289\n", + "detect_scores: The Pittsburgh Steelers' most recent Super Bowl w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0043430328369140625\n", + "detect_scores: Switzerland is a multilingual country with four o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04295516014099121\n", + "detect_scores: Barack Obama represents the Democratic Party in A\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0035867691040039062\n", + "detect_scores: Emperor Constantine, also known as Constantius Ch\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03104400634765625\n", + "detect_scores: Mali, often spelled \"Mali,\" is a landlocked count\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007153034210205078\n", + "detect_scores: As of my last update in 2023, I cannot provide re\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00733494758605957\n", + "detect_scores: The very first Microsoft Headquarters, known as M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01317596435546875\n", + "detect_scores: John Steinbeck, the acclaimed American author kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0059201717376708984\n", + "detect_scores: Niels Bohr, a Danish physicist who made foundatio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017724990844726562\n", + "detect_scores: Ryan Reynold, the well-known actor and comedian, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004674196243286133\n", + "detect_scores: Newt Gingrich's ex-wife, whom he was married to f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001157999038696289\n", + "detect_scores: Antonio Vivaldi was a Baroque composer and violin\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011843204498291016\n", + "detect_scores: As of my last update in April 2023, specific pers\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0075070858001708984\n", + "detect_scores: Samuel Langhorne Clemens, better recognized by hi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4085-4092: ` decent`\n", + "Group 2 found at 4092-4099: ` decent`\n", + "Group 3 found at 4092-4099: ` decent`\n", + "\n", + "Group 1 found at 8601-8606: `a vit`\n", + "Group 2 found at 8606-8611: `a vit`\n", + "Group 3 found at 8606-8611: `a vit`\n", + "(0, 24, 24)\n", + "detect_scores time: 1.362173080444336\n", + "detect_scores: After William Henry Harrison, the 9th President o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011792182922363281\n", + "detect_scores: George W. Bush's memoir, titled \"Decision Points,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003156900405883789\n", + "detect_scores: Antoine Lavoisier, often regarded as the father o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009486198425292969\n", + "detect_scores: The Queen consort to King George VI was Elizabeth\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004878044128417969\n", + "detect_scores: The Seattle Seahawks went to their first Super Bo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018303394317626953\n", + "detect_scores: Sami Yusuf, a well-known British singer and music\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012181997299194336\n", + "detect_scores: The official languages of Brazil are Portuguese a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022797584533691406\n", + "detect_scores: The New York Mets' most recent World Series win w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0038950443267822266\n", + "detect_scores: Florida Panther National Wildlife Refuge, which i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01503896713256836\n", + "detect_scores: New York University (NYU) was not the brainchild \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3948-3956: `fense de`\n", + "Group 2 found at 3956-3964: `fense de`\n", + "Group 3 found at 3956-3964: `fense de`\n", + "\n", + "Group 1 found at 3996-4003: `action `\n", + "Group 2 found at 4003-4010: `action `\n", + "Group 3 found at 4003-4010: `action `\n", + "\n", + "Group 1 found at 5337-5345: `onym hyp`\n", + "Group 2 found at 5345-5353: `onym hyp`\n", + "Group 3 found at 5345-5353: `onym hyp`\n", + "\n", + "Group 1 found at 6528-6539: `s mechanism`\n", + "Group 2 found at 6539-6551: `s mechanism `\n", + "Group 3 found at 6539-6550: `s mechanism`\n", + "\n", + "Group 1 found at 6694-6701: `s rival`\n", + "Group 2 found at 6701-6709: `s rival `\n", + "Group 3 found at 6701-6708: `s rival`\n", + "\n", + "Group 1 found at 7887-7894: ` heaven`\n", + "Group 2 found at 7894-7901: ` heaven`\n", + "Group 3 found at 7894-7901: ` heaven`\n", + "\n", + "Group 1 found at 9104-9111: `dermis `\n", + "Group 2 found at 9111-9118: `dermis `\n", + "Group 3 found at 9111-9118: `dermis `\n", + "\n", + "Group 1 found at 9459-9468: ` rotation`\n", + "Group 2 found at 9468-9477: ` rotation`\n", + "Group 3 found at 9468-9477: ` rotation`\n", + "ignored: tytwentytwen\n", + "exception: \n", + "\n", + "Group 1 found at 10683-10692: `particle `\n", + "Group 2 found at 10692-10701: `particle `\n", + "Group 3 found at 10692-10701: `particle `\n", + "(0, 148, 148)\n", + "detect_scores time: 1.870455026626587\n", + "detect_scores: North Africa comprises several countries along it\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6315-6325: `s gradient`\n", + "Group 2 found at 6325-6336: `s gradient `\n", + "Group 3 found at 6325-6335: `s gradient`\n", + "\n", + "Group 1 found at 6826-6833: `s tempo`\n", + "Group 2 found at 6833-6841: `s tempo `\n", + "Group 3 found at 6833-6840: `s tempo`\n", + "\n", + "Group 1 found at 9647-9653: ` locks`\n", + "Group 2 found at 9653-9659: ` locks`\n", + "Group 3 found at 9653-9659: ` locks`\n", + "(0, 48, 48)\n", + "detect_scores time: 1.8820137977600098\n", + "detect_scores: John Mayer is a talented American singer-songwrit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6861-6868: `meters `\n", + "Group 2 found at 6868-6875: `meters `\n", + "Group 3 found at 6868-6875: `meters `\n", + "\n", + "Group 1 found at 7725-7730: `fire `\n", + "Group 2 found at 7730-7735: `fire `\n", + "Group 3 found at 7730-7735: `fire `\n", + "(0, 24, 24)\n", + "detect_scores time: 1.8663251399993896\n", + "detect_scores: Patrick Swayze, the acclaimed actor known for his\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011649131774902344\n", + "detect_scores: Barack Obama is a distinguished alumnus of the Un\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016337871551513672\n", + "detect_scores: The Jamaican currency is known as the Jamaican Do\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023827552795410156\n", + "detect_scores: The Arizona Cardinals Stadium, known as State Far\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003171205520629883\n", + "detect_scores: Sir Isaac Newton's theories primarily revolve aro\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9163-9174: `s alignment`\n", + "Group 2 found at 9174-9186: `s alignment `\n", + "Group 3 found at 9174-9185: `s alignment`\n", + "\n", + "Group 1 found at 9490-9502: `s allocation`\n", + "Group 2 found at 9502-9515: `s allocation `\n", + "Group 3 found at 9502-9514: `s allocation`\n", + "\n", + "Group 1 found at 9715-9721: `s flow`\n", + "Group 2 found at 9721-9728: `s flow `\n", + "Group 3 found at 9721-9727: `s flow`\n", + "\n", + "Group 1 found at 9829-9835: `s sign`\n", + "Group 2 found at 9835-9841: `s sign`\n", + "Group 3 found at 9835-9841: `s sign`\n", + "(0, 73, 73)\n", + "detect_scores time: 2.1831979751586914\n", + "detect_scores: Pablo Picasso, one of the most influential artist\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09862685203552246\n", + "detect_scores: As of the knowledge cutoff date, Pennsylvania's p\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009112119674682617\n", + "detect_scores: I cannot provide real-time or current event infor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004129171371459961\n", + "detect_scores: Queen Isabella I of Castile's (Isabella the Catho\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02088022232055664\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft, I\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005407094955444336\n", + "detect_scores: As of my last update, Judaism remains by far Isra\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3606-3615: ` definite`\n", + "Group 2 found at 3615-3624: ` definite`\n", + "Group 3 found at 3615-3624: ` definite`\n", + "\n", + "Group 1 found at 3628-3637: ` absolute`\n", + "Group 2 found at 3637-3646: ` absolute`\n", + "Group 3 found at 3637-3646: ` absolute`\n", + "\n", + "Group 1 found at 7077-7085: `relation`\n", + "Group 2 found at 7086-7094: `relation`\n", + "Group 3 found at 7086-7094: `relation`\n", + "\n", + "Group 1 found at 7613-7626: `conductivity `\n", + "Group 2 found at 7626-7639: `conductivity `\n", + "Group 3 found at 7626-7639: `conductivity `\n", + "\n", + "Group 1 found at 8595-8606: `components `\n", + "Group 2 found at 8606-8617: `components `\n", + "Group 3 found at 8606-8617: `components `\n", + "\n", + "Group 1 found at 9022-9032: `planes air`\n", + "Group 2 found at 9032-9042: `planes air`\n", + "Group 3 found at 9032-9042: `planes air`\n", + "(0, 121, 121)\n", + "detect_scores time: 1.8822319507598877\n", + "detect_scores: The Thames River, known as one of London's most i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6595-6601: `lists `\n", + "Group 2 found at 6601-6607: `lists `\n", + "Group 3 found at 6601-6607: `lists `\n", + "\n", + "Group 1 found at 7569-7578: `mum extre`\n", + "Group 2 found at 7578-7587: `mum extre`\n", + "Group 3 found at 7578-7587: `mum extre`\n", + "\n", + "Group 1 found at 8097-8102: `bench`\n", + "Group 2 found at 8103-8108: `bench`\n", + "Group 3 found at 8103-8108: `bench`\n", + "(0, 41, 41)\n", + "detect_scores time: 1.6799108982086182\n", + "detect_scores: In Pakistan, the primary languages spoken are Urd\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00879216194152832\n", + "detect_scores: Kim Jong-il, the former leader of North Korea, di\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008256912231445312\n", + "detect_scores: The FedEx Cup was awarded to Rickie Fowler in the\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.052187204360961914\n", + "detect_scores: The main languages officially recognized and wide\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00498199462890625\n", + "detect_scores: The character Alf from the TV Show \"Frasier\" was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016608238220214844\n", + "detect_scores: Gerald Ford served as the Vice President of the U\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012628316879272461\n", + "detect_scores: Raphael Sanzio, known simply as Raffaello or more\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017035961151123047\n", + "detect_scores: In Malta, the primary languages spoken are Maltes\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07581114768981934\n", + "detect_scores: King Louis XIV of France, also known as the Sun K\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008393049240112305\n", + "detect_scores: Shane Douglas \"Shannon\" Hoon died on April 14, 20\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004274845123291016\n", + "detect_scores: Nicholas Copernicus was a Renaissance-era mathema\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02605295181274414\n", + "detect_scores: Manny Ramírez, a professional baseball player kno\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8728-8739: `variance co`\n", + "Group 2 found at 8739-8750: `variance co`\n", + "Group 3 found at 8739-8750: `variance co`\n", + "\n", + "Group 1 found at 9851-9863: `es eigenvalu`\n", + "Group 2 found at 9863-9875: `es eigenvalu`\n", + "Group 3 found at 9863-9875: `es eigenvalu`\n", + "\n", + "Group 1 found at 10630-10638: `s meteor`\n", + "Group 2 found at 10638-10646: `s meteor`\n", + "Group 3 found at 10638-10646: `s meteor`\n", + "(0, 62, 62)\n", + "detect_scores time: 1.9332191944122314\n", + "detect_scores: The Appalachian Mountains, often referred to as t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5134-5139: ` cove`\n", + "Group 2 found at 5139-5144: ` cove`\n", + "Group 3 found at 5139-5144: ` cove`\n", + "\n", + "Group 1 found at 7551-7561: `ers debugg`\n", + "Group 2 found at 7561-7571: `ers debugg`\n", + "Group 3 found at 7561-7571: `ers debugg`\n", + "\n", + "Group 1 found at 9494-9500: `s talk`\n", + "Group 2 found at 9500-9507: `s talk `\n", + "Group 3 found at 9500-9506: `s talk`\n", + "\n", + "Group 1 found at 10036-10051: `ation exponenti`\n", + "Group 2 found at 10051-10066: `ation exponenti`\n", + "Group 3 found at 10051-10066: `ation exponenti`\n", + "(0, 73, 73)\n", + "detect_scores time: 1.9948699474334717\n", + "detect_scores: Jerry Brown, who served as the Governor of Califo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013396978378295898\n", + "detect_scores: The Pacific Ocean surrounds Hawaii. Specifically,\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009989738464355469\n", + "detect_scores: The most commonly spoken native language in Argen\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0055119991302490234\n", + "detect_scores: Tunisia is a country located in North Africa, bor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011540889739990234\n", + "detect_scores: St. Trinian's is a series of British comic books \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011590957641601562\n", + "detect_scores: Mexico operates under a federal presidential repr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007353782653808594\n", + "detect_scores: The Dominican Republic uses the Dominican Peso as\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0004889965057373047\n", + "detect_scores: Michael Jackson, known as the \"King of Pop,\" was \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6648-6654: ` loose`\n", + "Group 2 found at 6654-6660: ` loose`\n", + "Group 3 found at 6654-6660: ` loose`\n", + "\n", + "Group 1 found at 6876-6881: `owed `\n", + "Group 2 found at 6881-6886: `owed `\n", + "Group 3 found at 6881-6886: `owed `\n", + "(0, 22, 22)\n", + "detect_scores time: 2.089207887649536\n", + "detect_scores: I cannot respond to questions on identities. Plea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003120899200439453\n", + "detect_scores: The three official languages of Belgium are Dutch\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5451-5456: `s god`\n", + "Group 2 found at 5456-5461: `s god`\n", + "Group 3 found at 5456-5461: `s god`\n", + "ignored: \n", + "exception: \n", + "(0, 10, 10)\n", + "detect_scores time: 1.585008144378662\n", + "detect_scores: Frank Baum, the author famous for writing \"The Wo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005351066589355469\n", + "detect_scores: Tunis, also known as Tunisia's capital city and l\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004654884338378906\n", + "detect_scores: Mary Wollstonecraft was a pioneering advocate of \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017295122146606445\n", + "detect_scores: Icelanders primarily speak Icelandic, which is a \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0068972110748291016\n", + "detect_scores: In Scotland, the primary languages spoken are Eng\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005146026611328125\n", + "detect_scores: Mark Zuckerberg attended the private, co-educatio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017170906066894531\n", + "detect_scores: Shaquille O'Neal, known as \"Shaq,\" entered the NB\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002546072006225586\n", + "detect_scores: The character Darth Vader, a central figure from \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005945682525634766\n", + "detect_scores: Louis Armstrong was a legendary jazz trumpeter, c\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2922-2931: `e infinit`\n", + "Group 2 found at 2931-2940: `e infinit`\n", + "Group 3 found at 2931-2940: `e infinit`\n", + "\n", + "Group 1 found at 6798-6803: `s sea`\n", + "Group 2 found at 6803-6809: `s sea `\n", + "Group 3 found at 6803-6808: `s sea`\n", + "\n", + "Group 1 found at 6891-6897: `es cav`\n", + "Group 2 found at 6897-6903: `es cav`\n", + "Group 3 found at 6897-6903: `es cav`\n", + "\n", + "Group 1 found at 7329-7334: `shop `\n", + "Group 2 found at 7334-7339: `shop `\n", + "Group 3 found at 7334-7339: `shop `\n", + "\n", + "Group 1 found at 8205-8211: `staff `\n", + "Group 2 found at 8211-8217: `staff `\n", + "Group 3 found at 8211-8217: `staff `\n", + "(0, 63, 63)\n", + "detect_scores time: 1.707468032836914\n", + "detect_scores: Germany uses the Euro (€) as its official and leg\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029277801513671875\n", + "detect_scores: King Solomon, known for his wisdom and as a ruler\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.025629043579101562\n", + "detect_scores: Andy Irvine, the Irish musician known for his wor\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010470867156982422\n", + "detect_scores: Adolf Hitler, the infamous dictator of Germany du\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007903099060058594\n", + "detect_scores: As an AI developed by Microsoft, I cannot provide\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005475044250488281\n", + "detect_scores: The Appalachian Mountains, often referred to as t\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "ignored: greatgreat\n", + "exception: \n", + "\n", + "Group 1 found at 5753-5758: `child`\n", + "Group 2 found at 5759-5764: `child`\n", + "Group 3 found at 5759-5764: `child`\n", + "\n", + "Group 1 found at 6765-6776: `scension de`\n", + "Group 2 found at 6776-6787: `scension de`\n", + "Group 3 found at 6776-6787: `scension de`\n", + "\n", + "Group 1 found at 7953-7959: `cycle `\n", + "Group 2 found at 7959-7965: `cycle `\n", + "Group 3 found at 7959-7965: `cycle `\n", + "\n", + "Group 1 found at 9023-9030: `tion ac`\n", + "Group 2 found at 9030-9037: `tion ac`\n", + "Group 3 found at 9030-9037: `tion ac`\n", + "\n", + "Group 1 found at 10276-10281: `safe `\n", + "Group 2 found at 10281-10286: `safe `\n", + "Group 3 found at 10281-10286: `safe `\n", + "\n", + "Group 1 found at 10907-10915: `s figure`\n", + "Group 2 found at 10915-10923: `s figure`\n", + "Group 3 found at 10915-10923: `s figure`\n", + "(0, 85, 85)\n", + "detect_scores time: 2.1303551197052\n", + "detect_scores: Spain uses the Euro (€) as its official currency.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010839700698852539\n", + "detect_scores: As of my knowledge cutoff in 2023, Major League B\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030510425567626953\n", + "detect_scores: I'm sorry, but as a language model developed by O\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00827789306640625\n", + "detect_scores: The most common official and spoken language in N\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008852005004882812\n", + "detect_scores: Benjamin Franklin attended the Boston Latin Schoo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008143186569213867\n", + "detect_scores: ElectroLUX Corporation, known for its brand of ho\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02683424949645996\n", + "detect_scores: The Houston Time Zone corresponds to the Central \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006654977798461914\n", + "detect_scores: Shakespeare's first wife, Anne Hathaway, is not a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0075130462646484375\n", + "detect_scores: Mount St. Helens, an active stratovolcano situate\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013691902160644531\n", + "detect_scores: St. Paul, Minnesota is located within Ramsey Coun\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005136966705322266\n", + "detect_scores: King Henry VIII's only legitimate male heir, who \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5468-5474: `laces `\n", + "Group 2 found at 5474-5480: `laces `\n", + "Group 3 found at 5474-5480: `laces `\n", + "\n", + "Group 1 found at 5532-5539: `s clasp`\n", + "Group 2 found at 5539-5547: `s clasp `\n", + "Group 3 found at 5539-5546: `s clasp`\n", + "(0, 27, 27)\n", + "detect_scores time: 1.2029869556427002\n", + "detect_scores: In the television series Smallville, Lex Luthor i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009999275207519531\n", + "detect_scores: The official currency of the Czech Republic is th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0049669742584228516\n", + "detect_scores: The LA Kings' most recent win in a postseason ser\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010667800903320312\n", + "detect_scores: Spencer Pratt attended several educational instit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014256000518798828\n", + "detect_scores: Abraham Lincoln, the 16th President of the United\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 469-474: `or po`\n", + "Group 2 found at 474-479: `or po`\n", + "Group 3 found at 474-479: `or po`\n", + "\n", + "Group 1 found at 6559-6568: ` hangover`\n", + "Group 2 found at 6568-6577: ` hangover`\n", + "Group 3 found at 6568-6577: ` hangover`\n", + "\n", + "Group 1 found at 9563-9568: `null `\n", + "Group 2 found at 9568-9573: `null `\n", + "Group 3 found at 9568-9573: `null `\n", + "(0, 38, 38)\n", + "detect_scores time: 1.5332310199737549\n", + "detect_scores: The current head coach of the Vancouver Canucks, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013608932495117188\n", + "detect_scores: C.S. Lewis, whose full name is CS (Clive Staples)\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4712-4720: `e upgrad`\n", + "Group 2 found at 4720-4728: `e upgrad`\n", + "Group 3 found at 4720-4728: `e upgrad`\n", + "\n", + "Group 1 found at 5478-5488: `cessor suc`\n", + "Group 2 found at 5488-5498: `cessor suc`\n", + "Group 3 found at 5488-5498: `cessor suc`\n", + "\n", + "Group 1 found at 8449-8458: ` exponent`\n", + "Group 2 found at 8458-8467: ` exponent`\n", + "Group 3 found at 8458-8467: ` exponent`\n", + "\n", + "Group 1 found at 10890-10895: `here `\n", + "Group 2 found at 10895-10900: `here `\n", + "Group 3 found at 10895-10900: `here `\n", + "\n", + "Group 1 found at 10930-10937: `body no`\n", + "Group 2 found at 10937-10944: `body no`\n", + "Group 3 found at 10937-10944: `body no`\n", + "(0, 78, 78)\n", + "detect_scores time: 2.024623155593872\n", + "detect_scores: In Peru, the primary languages spoken are Spanish\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0045588016510009766\n", + "detect_scores: Arsenal Football Club, commonly known as Arsenal \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.024081945419311523\n", + "detect_scores: As of my last update, Phoenix, Arizona operates o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002918720245361328\n", + "detect_scores: South Portland, Maine refers to a city located in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0024499893188476562\n", + "detect_scores: Claudius Ptolemaeus, commonly known as Ptolemy, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3465-3470: `e cav`\n", + "Group 2 found at 3470-3475: `e cav`\n", + "Group 3 found at 3470-3475: `e cav`\n", + "(0, 10, 10)\n", + "detect_scores time: 1.7599449157714844\n", + "detect_scores: The name of Henry VIII's first wife was Catherine\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014279842376708984\n", + "detect_scores: The Paraná River is one of the principal rivers i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04014301300048828\n", + "detect_scores: Theodor Schwann, a renowned German physiologist a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 11236-11246: ` continent`\n", + "Group 2 found at 11246-11256: ` continent`\n", + "Group 3 found at 11246-11256: ` continent`\n", + "\n", + "Group 1 found at 11420-11433: `chemistry bio`\n", + "Group 2 found at 11433-11446: `chemistry bio`\n", + "Group 3 found at 11433-11446: `chemistry bio`\n", + "(0, 46, 46)\n", + "detect_scores time: 2.205827236175537\n", + "detect_scores: The Houston Rockets won their first NBA Champions\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001196146011352539\n", + "detect_scores: Most Russians reside within its European part, pa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009354829788208008\n", + "detect_scores: The Holy Roman Empire was not situated in a singl\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010241031646728516\n", + "detect_scores: In \"The Young And The Restless,\" Nicholas Newmann\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013859272003173828\n", + "detect_scores: The original creators and co-writers Matt Stone a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00714111328125\n", + "detect_scores: Angelina Jolie's biological sibling, as publicly \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3772-3779: `writer `\n", + "Group 2 found at 3779-3786: `writer `\n", + "Group 3 found at 3779-3786: `writer `\n", + "ignored: togethertogether\n", + "exception: \n", + "\n", + "Group 1 found at 5795-5801: ` cheer`\n", + "Group 2 found at 5801-5807: ` cheer`\n", + "Group 3 found at 5801-5807: ` cheer`\n", + "\n", + "Group 1 found at 7507-7518: `s neighbour`\n", + "Group 2 found at 7518-7529: `s neighbour`\n", + "Group 3 found at 7518-7529: `s neighbour`\n", + "\n", + "Group 1 found at 7670-7680: `roid meteo`\n", + "Group 2 found at 7680-7690: `roid meteo`\n", + "Group 3 found at 7680-7690: `roid meteo`\n", + "\n", + "Group 1 found at 7703-7713: ` satellite`\n", + "Group 2 found at 7713-7723: ` satellite`\n", + "Group 3 found at 7713-7723: ` satellite`\n", + "\n", + "Group 1 found at 7724-7731: ` rocket`\n", + "Group 2 found at 7731-7738: ` rocket`\n", + "Group 3 found at 7731-7738: ` rocket`\n", + "\n", + "Group 1 found at 8073-8080: `er soon`\n", + "Group 2 found at 8080-8088: `er soon `\n", + "Group 3 found at 8080-8087: `er soon`\n", + "\n", + "Group 1 found at 8361-8369: ` similar`\n", + "Group 2 found at 8369-8377: ` similar`\n", + "Group 3 found at 8369-8377: ` similar`\n", + "\n", + "Group 1 found at 8921-8927: ` total`\n", + "Group 2 found at 8927-8933: ` total`\n", + "Group 3 found at 8927-8933: ` total`\n", + "\n", + "Group 1 found at 11182-11191: `es pictur`\n", + "Group 2 found at 11191-11200: `es pictur`\n", + "Group 3 found at 11191-11200: `es pictur`\n", + "(0, 163, 163)\n", + "detect_scores time: 2.118988037109375\n", + "detect_scores: The headquarters of Bank of America are located i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00722503662109375\n", + "detect_scores: Japan operates under a parliamentary system and i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2117-2128: ` Geographic`\n", + "Group 2 found at 2128-2139: ` Geographic`\n", + "Group 3 found at 2128-2139: ` Geographic`\n", + "\n", + "Group 1 found at 8612-8624: `eitschrift Z`\n", + "Group 2 found at 8624-8636: `eitschrift Z`\n", + "Group 3 found at 8624-8636: `eitschrift Z`\n", + "(0, 46, 46)\n", + "detect_scores time: 1.2323691844940186\n", + "detect_scores: As of my last update in April 2023, Josh Hamilton\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03262472152709961\n", + "detect_scores: Burundi is a small landlocked country in the Grea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6487-6494: `t rejec`\n", + "Group 2 found at 6494-6501: `t rejec`\n", + "Group 3 found at 6494-6501: `t rejec`\n", + "\n", + "Group 1 found at 8735-8743: `relation`\n", + "Group 2 found at 8744-8752: `relation`\n", + "Group 3 found at 8744-8752: `relation`\n", + "\n", + "Group 1 found at 9477-9487: `ance lumin`\n", + "Group 2 found at 9487-9497: `ance lumin`\n", + "Group 3 found at 9487-9497: `ance lumin`\n", + "\n", + "Group 1 found at 9879-9884: `verb `\n", + "Group 2 found at 9884-9889: `verb `\n", + "Group 3 found at 9884-9889: `verb `\n", + "\n", + "Group 1 found at 9900-9908: `article `\n", + "Group 2 found at 9908-9916: `article `\n", + "Group 3 found at 9908-9916: `article `\n", + "\n", + "Group 1 found at 10948-10959: ` arithmetic`\n", + "Group 2 found at 10959-10970: ` arithmetic`\n", + "Group 3 found at 10959-10970: ` arithmetic`\n", + "\n", + "Group 1 found at 11229-11236: `meters `\n", + "Group 2 found at 11236-11243: `meters `\n", + "Group 3 found at 11236-11243: `meters `\n", + "(0, 113, 113)\n", + "detect_scores time: 2.276771068572998\n", + "detect_scores: As of my last update, Paul Ryan lived in Janesvil\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0039670467376708984\n", + "detect_scores: Acadia University, known for its vibrant academic\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003385782241821289\n", + "detect_scores: F. Scott Fitzgerald was an American novelist and \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.023453235626220703\n", + "detect_scores: TomTom's Western Europe coverage typically includ\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1540-1545: ` safe`\n", + "Group 2 found at 1545-1550: ` safe`\n", + "Group 3 found at 1545-1550: ` safe`\n", + "\n", + "Group 1 found at 3098-3104: `acks h`\n", + "Group 2 found at 3104-3110: `acks h`\n", + "Group 3 found at 3104-3110: `acks h`\n", + "\n", + "Group 1 found at 6322-6328: `le smi`\n", + "Group 2 found at 6328-6334: `le smi`\n", + "Group 3 found at 6328-6334: `le smi`\n", + "\n", + "Group 1 found at 7395-7404: `ctivity a`\n", + "Group 2 found at 7404-7413: `ctivity a`\n", + "Group 3 found at 7404-7413: `ctivity a`\n", + "\n", + "Group 1 found at 7814-7819: ` talk`\n", + "Group 2 found at 7819-7824: ` talk`\n", + "Group 3 found at 7819-7824: ` talk`\n", + "\n", + "Group 1 found at 8402-8409: `s angle`\n", + "Group 2 found at 8409-8417: `s angle `\n", + "Group 3 found at 8409-8416: `s angle`\n", + "\n", + "Group 1 found at 8673-8679: `light `\n", + "Group 2 found at 8679-8685: `light `\n", + "Group 3 found at 8679-8685: `light `\n", + "(0, 89, 89)\n", + "detect_scores time: 2.0750732421875\n", + "detect_scores: The official and national languages recognized in\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007144927978515625\n", + "detect_scores: In Spain, the primary language spoken is Spanish \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8324-8331: ` marine`\n", + "Group 2 found at 8331-8338: ` marine`\n", + "Group 3 found at 8331-8338: ` marine`\n", + "(0, 14, 14)\n", + "detect_scores time: 1.744474172592163\n", + "detect_scores: Michael Crabtree is a former professional America\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3356-3361: `s con`\n", + "Group 2 found at 3361-3366: `s con`\n", + "Group 3 found at 3361-3366: `s con`\n", + "\n", + "Group 1 found at 6372-6377: ` none`\n", + "Group 2 found at 6377-6382: ` none`\n", + "Group 3 found at 6377-6382: ` none`\n", + "\n", + "Group 1 found at 8582-8590: ` measure`\n", + "Group 2 found at 8590-8598: ` measure`\n", + "Group 3 found at 8590-8598: ` measure`\n", + "\n", + "Group 1 found at 11311-11323: ` surrounding`\n", + "Group 2 found at 11323-11335: ` surrounding`\n", + "Group 3 found at 11323-11335: ` surrounding`\n", + "\n", + "Group 1 found at 11861-11867: ` crowd`\n", + "Group 2 found at 11867-11873: ` crowd`\n", + "Group 3 found at 11867-11873: ` crowd`\n", + "\n", + "Group 1 found at 11878-11889: ` photograph`\n", + "Group 2 found at 11889-11900: ` photograph`\n", + "Group 3 found at 11889-11900: ` photograph`\n", + "(0, 94, 94)\n", + "detect_scores time: 1.9131689071655273\n", + "detect_scores: The three U.S. states that share a boundary with \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7196-7207: `s algorithm`\n", + "Group 2 found at 7207-7218: `s algorithm`\n", + "Group 3 found at 7207-7218: `s algorithm`\n", + "\n", + "Group 1 found at 8850-8862: `e concentrat`\n", + "Group 2 found at 8862-8874: `e concentrat`\n", + "Group 3 found at 8862-8874: `e concentrat`\n", + "(0, 46, 46)\n", + "detect_scores time: 1.5806372165679932\n", + "detect_scores: The character Ziva David from NCIS is played by a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0035440921783447266\n", + "detect_scores: After the death of King Henry VIII in 1547, his o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00929713249206543\n", + "detect_scores: Argentina recognizes several indigenous and natio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6143-6148: ` zero`\n", + "Group 2 found at 6148-6153: ` zero`\n", + "Group 3 found at 6148-6153: ` zero`\n", + "\n", + "Group 1 found at 6437-6445: ` polygon`\n", + "Group 2 found at 6445-6453: ` polygon`\n", + "Group 3 found at 6445-6453: ` polygon`\n", + "\n", + "Group 1 found at 7276-7281: `case `\n", + "Group 2 found at 7281-7286: `case `\n", + "Group 3 found at 7281-7286: `case `\n", + "\n", + "Group 1 found at 8424-8429: ` cave`\n", + "Group 2 found at 8429-8434: ` cave`\n", + "Group 3 found at 8429-8434: ` cave`\n", + "\n", + "Group 1 found at 8530-8537: `phrase `\n", + "Group 2 found at 8537-8544: `phrase `\n", + "Group 3 found at 8537-8544: `phrase `\n", + "\n", + "Group 1 found at 9709-9716: `t silen`\n", + "Group 2 found at 9716-9723: `t silen`\n", + "Group 3 found at 9716-9723: `t silen`\n", + "\n", + "Group 1 found at 9759-9770: `ly thorough`\n", + "Group 2 found at 9770-9782: `ly thorough `\n", + "Group 3 found at 9770-9781: `ly thorough`\n", + "\n", + "Group 1 found at 10052-10062: `specially `\n", + "Group 2 found at 10062-10072: `specially `\n", + "Group 3 found at 10062-10072: `specially `\n", + "\n", + "Group 1 found at 10313-10319: ` cheer`\n", + "Group 2 found at 10319-10325: ` cheer`\n", + "Group 3 found at 10319-10325: ` cheer`\n", + "\n", + "Group 1 found at 10410-10415: `safe `\n", + "Group 2 found at 10415-10420: `safe `\n", + "Group 3 found at 10415-10420: `safe `\n", + "\n", + "Group 1 found at 10451-10458: `able st`\n", + "Group 2 found at 10458-10465: `able st`\n", + "Group 3 found at 10458-10465: `able st`\n", + "\n", + "Group 1 found at 10792-10800: `relation`\n", + "Group 2 found at 10801-10809: `relation`\n", + "Group 3 found at 10801-10809: `relation`\n", + "(0, 170, 170)\n", + "detect_scores time: 2.038638114929199\n", + "detect_scores: Rafael Nadal plays tennis professionally and repr\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0038080215454101562\n", + "detect_scores: The Prime Minister of Spain in 2011 was José Luis\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017124176025390625\n", + "detect_scores: The famous historical figure who fits this descri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03369021415710449\n", + "detect_scores: Judi Dench, the renowned British actress known fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.032659292221069336\n", + "detect_scores: In Spain, the official language is Spanish (Casti\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 653-660: `ound ar`\n", + "Group 2 found at 660-667: `ound ar`\n", + "Group 3 found at 660-667: `ound ar`\n", + "(0, 14, 14)\n", + "detect_scores time: 0.0243988037109375\n", + "detect_scores: The Sahara Desert is primarily situated in North \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09361505508422852\n", + "detect_scores: Michael Oher, who is well-known as the offensive \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02933979034423828\n", + "detect_scores: Albert Einstein, the theoretical physicist renown\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08037519454956055\n", + "detect_scores: Egypt is a significant player in the global trade\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7544-7551: ` patron`\n", + "Group 2 found at 7551-7558: ` patron`\n", + "Group 3 found at 7551-7558: ` patron`\n", + "\n", + "Group 1 found at 10005-10010: `block`\n", + "Group 2 found at 10011-10016: `block`\n", + "Group 3 found at 10011-10016: `block`\n", + "(0, 25, 25)\n", + "detect_scores time: 2.1045901775360107\n", + "detect_scores: The headquarters of the African Union (AU) are lo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001434326171875\n", + "detect_scores: Henri Rousseau was a French post-impressionist pa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015549898147583008\n", + "detect_scores: John Edwards was a former U.S. Senator and presid\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4199-4209: ` continent`\n", + "Group 2 found at 4209-4219: ` continent`\n", + "Group 3 found at 4209-4219: ` continent`\n", + "\n", + "Group 1 found at 7953-7964: ` Foundation`\n", + "Group 2 found at 7964-7975: ` Foundation`\n", + "Group 3 found at 7964-7975: ` Foundation`\n", + "(0, 42, 42)\n", + "detect_scores time: 1.5979502201080322\n", + "detect_scores: Huey Newton, one of the co-founders and a promine\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01069784164428711\n", + "detect_scores: Mitt Romneys' immediate family, which includes hi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010055065155029297\n", + "detect_scores: Michael Jackson, the renowned singer and entertai\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011599063873291016\n", + "detect_scores: The Battle of Vicksburg was a significant engagem\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8139-8144: `suit `\n", + "Group 2 found at 8144-8149: `suit `\n", + "Group 3 found at 8144-8149: `suit `\n", + "\n", + "Group 1 found at 9789-9800: ` instrument`\n", + "Group 2 found at 9800-9811: ` instrument`\n", + "Group 3 found at 9800-9811: ` instrument`\n", + "(0, 32, 32)\n", + "detect_scores time: 1.9814138412475586\n", + "detect_scores: Nikolái Gógol was a renowned Russian dramatist, n\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011756181716918945\n", + "detect_scores: The World Series, which is the annual championshi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008790016174316406\n", + "detect_scores: The character Simon Birch is played by actor Fore\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011279582977294922\n", + "detect_scores: In the United Kingdom, there are three main langu\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016663074493408203\n", + "detect_scores: In Jamaica, the primary language spoken is Englis\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006109952926635742\n", + "detect_scores: Wayne Gretzky's first professional hockey team wa\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5880-5885: ` sail`\n", + "Group 2 found at 5885-5890: ` sail`\n", + "Group 3 found at 5885-5890: ` sail`\n", + "\n", + "Group 1 found at 9687-9694: `stress `\n", + "Group 2 found at 9694-9701: `stress `\n", + "Group 3 found at 9694-9701: `stress `\n", + "\n", + "Group 1 found at 10519-10530: `ant contest`\n", + "Group 2 found at 10530-10541: `ant contest`\n", + "Group 3 found at 10530-10541: `ant contest`\n", + "(0, 46, 46)\n", + "detect_scores time: 1.8902690410614014\n", + "detect_scores: As of my last update in April 2023, Pedro Castill\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014729499816894531\n", + "detect_scores: Jerry Garcia, best known as a member and leader f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.021081924438476562\n", + "detect_scores: Leonardo di ser Piero da Vinci, commonly known as\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00441288948059082\n", + "detect_scores: Rihanna, born as Robyn Rachel Fenty on February 2\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036962032318115234\n", + "detect_scores: J.R.R. Tolkien, the famous author of \"The Hobbit\"\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2749-2756: ` stable`\n", + "Group 2 found at 2756-2763: ` stable`\n", + "Group 3 found at 2756-2763: ` stable`\n", + "(0, 14, 14)\n", + "detect_scores time: 1.0574860572814941\n", + "detect_scores: Saint Louis University (SLU) is located in the ci\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010561943054199219\n", + "detect_scores: Canada is a country with diverse religious belief\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006319999694824219\n", + "detect_scores: In Spain, the official and legal tender used for \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007055044174194336\n", + "detect_scores: Anders Celsius, the Swedish astronomer known for \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008648157119750977\n", + "detect_scores: France primarily accepts the Euro (€) as its offi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018472909927368164\n", + "detect_scores: Massachusetts, particularly in its early colonial\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 2.0684010982513428\n", + "detect_scores: Brazil operates under a federal presidential cons\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3230-3236: `s fini`\n", + "Group 2 found at 3236-3242: `s fini`\n", + "Group 3 found at 3236-3242: `s fini`\n", + "\n", + "Group 1 found at 6234-6243: `e schedul`\n", + "Group 2 found at 6243-6252: `e schedul`\n", + "Group 3 found at 6243-6252: `e schedul`\n", + "\n", + "Group 1 found at 7019-7030: `ation valid`\n", + "Group 2 found at 7030-7042: `ation valid `\n", + "Group 3 found at 7030-7041: `ation valid`\n", + "(0, 53, 53)\n", + "detect_scores time: 0.8239102363586426\n", + "detect_scores: Gregor Mendel lived during the 19th century, and \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012356042861938477\n", + "detect_scores: Laura Ingall Wilder, the author of \"Little House \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 11059-11071: `iasis Candid`\n", + "Group 2 found at 11071-11083: `iasis Candid`\n", + "Group 3 found at 11071-11083: `iasis Candid`\n", + "(0, 24, 24)\n", + "detect_scores time: 1.9615280628204346\n", + "detect_scores: Your current time zone can be determined by your \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01736307144165039\n", + "detect_scores: In Norway, the primary language spoken is Norwegi\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004054069519042969\n", + "detect_scores: Singapore uses the Singdollar as its official cur\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0032842159271240234\n", + "detect_scores: The Blackfeet Indians, also known as Amskapipikun\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0060732364654541016\n", + "detect_scores: In the movie \"Prince of Thieves,\" which was relea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011620521545410156\n", + "detect_scores: Texas observes Central Standard Time (CST) during\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018576860427856445\n", + "detect_scores: Louis Armstrong was a renowned American trumpeter\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004240989685058594\n", + "detect_scores: Madonna, the stage name for American singer-songw\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004869699478149414\n", + "detect_scores: Egypt is situated in the northeastern corner of A\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5841-5847: `fires `\n", + "Group 2 found at 5847-5853: `fires `\n", + "Group 3 found at 5847-5853: `fires `\n", + "\n", + "Group 1 found at 8144-8154: ` continent`\n", + "Group 2 found at 8154-8164: ` continent`\n", + "Group 3 found at 8154-8164: ` continent`\n", + "\n", + "Group 1 found at 8616-8624: `time any`\n", + "Group 2 found at 8624-8632: `time any`\n", + "Group 3 found at 8624-8632: `time any`\n", + "\n", + "Group 1 found at 8913-8920: `filled `\n", + "Group 2 found at 8920-8927: `filled `\n", + "Group 3 found at 8920-8927: `filled `\n", + "\n", + "Group 1 found at 9024-9035: ` successful`\n", + "Group 2 found at 9035-9046: ` successful`\n", + "Group 3 found at 9035-9046: ` successful`\n", + "\n", + "Group 1 found at 10990-10999: `solution `\n", + "Group 2 found at 10999-11008: `solution `\n", + "Group 3 found at 10999-11008: `solution `\n", + "(0, 102, 102)\n", + "detect_scores time: 2.1151180267333984\n", + "detect_scores: Richard Hammond is a well-known British televisio\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03235793113708496\n", + "detect_scores: You would typically land at Charles de Gaulle Air\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0034627914428710938\n", + "detect_scores: Galileo made several significant discoveries that\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.627931833267212\n", + "detect_scores: The character Tony Dinozzo, who is part of NCIS (\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0043032169342041016\n", + "detect_scores: Jesus, a central figure in Christianity and the s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2821-2826: `e pur`\n", + "Group 2 found at 2826-2831: `e pur`\n", + "Group 3 found at 2826-2831: `e pur`\n", + "\n", + "Group 1 found at 6998-7006: ` journal`\n", + "Group 2 found at 7006-7014: ` journal`\n", + "Group 3 found at 7006-7014: ` journal`\n", + "(0, 26, 26)\n", + "detect_scores time: 1.6539702415466309\n", + "detect_scores: The State Name for New York City, which serves as\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02124309539794922\n", + "detect_scores: Portugal trades globally, engaging in commerce an\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012956857681274414\n", + "detect_scores: Brazil operates under a federal presidential cons\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015702247619628906\n", + "detect_scores: The Ancient Babylonian civilization primarily spo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0077250003814697266\n", + "detect_scores: Wassily Kandinsky was a Russian-born abstract art\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00906515121459961\n", + "detect_scores: Cuba uses the Cuban Convertible Peso (CUC) and, s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4936-4943: `linear `\n", + "Group 2 found at 4943-4950: `linear `\n", + "Group 3 found at 4943-4950: `linear `\n", + "\n", + "Group 1 found at 5874-5883: `body some`\n", + "Group 2 found at 5883-5892: `body some`\n", + "Group 3 found at 5883-5892: `body some`\n", + "\n", + "Group 1 found at 5929-5934: `here `\n", + "Group 2 found at 5934-5939: `here `\n", + "Group 3 found at 5934-5939: `here `\n", + "\n", + "Group 1 found at 5973-5978: `ever `\n", + "Group 2 found at 5978-5983: `ever `\n", + "Group 3 found at 5978-5983: `ever `\n", + "\n", + "Group 1 found at 8130-8136: `ed fac`\n", + "Group 2 found at 8136-8142: `ed fac`\n", + "Group 3 found at 8136-8142: `ed fac`\n", + "\n", + "Group 1 found at 8255-8266: `e coordinat`\n", + "Group 2 found at 8266-8277: `e coordinat`\n", + "Group 3 found at 8266-8277: `e coordinat`\n", + "\n", + "Group 1 found at 8990-8998: `s person`\n", + "Group 2 found at 8998-9007: `s person `\n", + "Group 3 found at 8998-9006: `s person`\n", + "\n", + "Group 1 found at 10586-10598: `electronics `\n", + "Group 2 found at 10598-10610: `electronics `\n", + "Group 3 found at 10598-10610: `electronics `\n", + "\n", + "Group 1 found at 11344-11352: `writing `\n", + "Group 2 found at 11352-11360: `writing `\n", + "Group 3 found at 11352-11360: `writing `\n", + "(0, 143, 143)\n", + "detect_scores time: 2.3203651905059814\n", + "detect_scores: Sweden primarily operates on Central European Tim\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.026311159133911133\n", + "detect_scores: Robert Downey Jr. has not served time in prison f\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009749889373779297\n", + "detect_scores: Barack Obama earned a Bachelor of Arts (B.A.) deg\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003803730010986328\n", + "detect_scores: God Shiva, also known as Mahadeva in Hinduism, re\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7786-7793: ` intent`\n", + "Group 2 found at 7793-7800: ` intent`\n", + "Group 3 found at 7793-7800: ` intent`\n", + "ignored: greatgreat\n", + "exception: \n", + "ignored: greatgreat\n", + "exception: \n", + "\n", + "Group 1 found at 10370-10380: ` continent`\n", + "Group 2 found at 10380-10390: ` continent`\n", + "Group 3 found at 10380-10390: ` continent`\n", + "(0, 34, 34)\n", + "detect_scores time: 2.103677988052368\n", + "detect_scores: Benjamin Franklin, one of the Founding Fathers of\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7279-7286: ` anchor`\n", + "Group 2 found at 7286-7293: ` anchor`\n", + "Group 3 found at 7286-7293: ` anchor`\n", + "\n", + "Group 1 found at 9479-9486: ` quiver`\n", + "Group 2 found at 9486-9493: ` quiver`\n", + "Group 3 found at 9486-9493: ` quiver`\n", + "\n", + "Group 1 found at 10133-10142: `er measur`\n", + "Group 2 found at 10142-10151: `er measur`\n", + "Group 3 found at 10142-10151: `er measur`\n", + "\n", + "Group 1 found at 10364-10370: `meter `\n", + "Group 2 found at 10370-10376: `meter `\n", + "Group 3 found at 10370-10376: `meter `\n", + "(0, 58, 58)\n", + "detect_scores time: 1.6509203910827637\n", + "detect_scores: The official currency used in Switzerland is call\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0040378570556640625\n", + "detect_scores: The Milwaukee Brewers, known as such since their \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02750420570373535\n", + "detect_scores: The Vice President who served alongside Bill Clin\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016379356384277344\n", + "detect_scores: The Los Angeles Kings won their first Stanley Cup\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10127-10138: `s statistic`\n", + "Group 2 found at 10138-10149: `s statistic`\n", + "Group 3 found at 10138-10149: `s statistic`\n", + "\n", + "Group 1 found at 10616-10626: `dependent `\n", + "Group 2 found at 10626-10636: `dependent `\n", + "Group 3 found at 10626-10636: `dependent `\n", + "\n", + "Group 1 found at 10693-10704: `ses hypothe`\n", + "Group 2 found at 10704-10715: `ses hypothe`\n", + "Group 3 found at 10704-10715: `ses hypothe`\n", + "\n", + "Group 1 found at 11007-11017: `ons relati`\n", + "Group 2 found at 11017-11027: `ons relati`\n", + "Group 3 found at 11017-11027: `ons relati`\n", + "\n", + "Group 1 found at 11254-11261: `s photo`\n", + "Group 2 found at 11261-11268: `s photo`\n", + "Group 3 found at 11261-11268: `s photo`\n", + "\n", + "Group 1 found at 11656-11666: `magnetism `\n", + "Group 2 found at 11666-11676: `magnetism `\n", + "Group 3 found at 11666-11676: `magnetism `\n", + "(0, 118, 118)\n", + "detect_scores time: 2.5462636947631836\n", + "detect_scores: Egypt operates with its own currency, the Egyptia\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0027570724487304688\n", + "detect_scores: The St. Lawrence River flows into the Atlantic Oc\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003531932830810547\n", + "detect_scores: William McKinley, the 25th President of the Unite\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02186870574951172\n", + "detect_scores: Darth Vader was portrayed by actor David Prowse, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007106781005859375\n", + "detect_scores: Kevin James attended Fordham University, where he\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005012989044189453\n", + "detect_scores: Auschwitz Concentration Camp, one of the most not\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012510299682617188\n", + "detect_scores: The Dominican Republic uses the Dominican Peso as\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019440650939941406\n", + "detect_scores: In the Czech Republic, people speak Czech. It's a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030100345611572266\n", + "detect_scores: William Shakespeare, the renowned English playwri\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8028-8038: `ment imple`\n", + "Group 2 found at 8038-8048: `ment imple`\n", + "Group 3 found at 8038-8048: `ment imple`\n", + "\n", + "Group 1 found at 9186-9191: ` term`\n", + "Group 2 found at 9191-9196: ` term`\n", + "Group 3 found at 9191-9196: ` term`\n", + "\n", + "Group 1 found at 9793-9799: ` lyric`\n", + "Group 2 found at 9799-9805: ` lyric`\n", + "Group 3 found at 9799-9805: ` lyric`\n", + "(0, 42, 42)\n", + "detect_scores time: 1.9465861320495605\n", + "detect_scores: Scott Fitzgerald attended the Princeton Universit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006265163421630859\n", + "detect_scores: Joan Crawford, the American actress known for her\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006432056427001953\n", + "detect_scores: Rob Kardashian attended Northwestern University, \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002003908157348633\n", + "detect_scores: Allen Iverson won the NBA Most Valuable Player (M\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018270015716552734\n", + "detect_scores: Harry S. Truman, the 33rd President of the United\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01664900779724121\n", + "detect_scores: Utica, NY is located within Oneida County.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 2.8848648071289062e-05\n", + "detect_scores: Charles Babbage is often referred to as the \"fath\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04151010513305664\n", + "detect_scores: In the animated television series \"King Julien,\" \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00078582763671875\n", + "detect_scores: Rick Scott is an American businessman and politic\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010213851928710938\n", + "detect_scores: Diana Taurasi plays for the Phoenix Mercury in th\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00013637542724609375\n", + "detect_scores: In Canada, it is not just one individual who make\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5771-5782: `similarity `\n", + "Group 2 found at 5782-5793: `similarity `\n", + "Group 3 found at 5782-5793: `similarity `\n", + "\n", + "Group 1 found at 6117-6126: ` definite`\n", + "Group 2 found at 6126-6135: ` definite`\n", + "Group 3 found at 6126-6135: ` definite`\n", + "(0, 40, 40)\n", + "detect_scores time: 2.110654830932617\n", + "detect_scores: Adam Morrison was selected in the 2006 NBA Draft \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008270740509033203\n", + "detect_scores: Michael Jackson was an American singer, songwrite\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4418-4426: ` speaker`\n", + "Group 2 found at 4426-4434: ` speaker`\n", + "Group 3 found at 4426-4434: ` speaker`\n", + "\n", + "Group 1 found at 5659-5665: `s file`\n", + "Group 2 found at 5665-5672: `s file `\n", + "Group 3 found at 5665-5671: `s file`\n", + "\n", + "Group 1 found at 6909-6919: `reference `\n", + "Group 2 found at 6919-6929: `reference `\n", + "Group 3 found at 6919-6929: `reference `\n", + "\n", + "Group 1 found at 8529-8540: `s privilege`\n", + "Group 2 found at 8540-8552: `s privilege `\n", + "Group 3 found at 8540-8551: `s privilege`\n", + "\n", + "Group 1 found at 9746-9751: `ash h`\n", + "Group 2 found at 9751-9756: `ash h`\n", + "Group 3 found at 9751-9756: `ash h`\n", + "\n", + "Group 1 found at 10194-10201: `fix pre`\n", + "Group 2 found at 10201-10208: `fix pre`\n", + "Group 3 found at 10201-10208: `fix pre`\n", + "(0, 96, 96)\n", + "detect_scores time: 2.0558981895446777\n", + "detect_scores: Maya Moore attended the University of Missouri, w\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014459848403930664\n", + "detect_scores: The Los Angeles Dodgers most recently secured the\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004539966583251953\n", + "detect_scores: Robin Williams got married twice in his lifetime.\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6679-6686: `groups `\n", + "Group 2 found at 6686-6693: `groups `\n", + "Group 3 found at 6686-6693: `groups `\n", + "\n", + "Group 1 found at 7943-7948: `book `\n", + "Group 2 found at 7948-7953: `book `\n", + "Group 3 found at 7948-7953: `book `\n", + "(0, 24, 24)\n", + "detect_scores time: 2.1314640045166016\n", + "detect_scores: Canada operates under a parliamentary democracy a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2072-2080: `t presen`\n", + "Group 2 found at 2080-2088: `t presen`\n", + "Group 3 found at 2080-2088: `t presen`\n", + "\n", + "Group 1 found at 6764-6773: `nts insta`\n", + "Group 2 found at 6773-6782: `nts insta`\n", + "Group 3 found at 6773-6782: `nts insta`\n", + "ignored: forgottenforgotten\n", + "exception: \n", + "ignored: dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd\n", + "exception: \n", + "Group 1 found at 2149-2160: `tions itera`\n", + "Group 2 found at 2160-2171: `tions itera`\n", + "Group 3 found at 2160-2171: `tions itera`\n", + "\n", + "Group 1 found at 3606-3616: `cognition `\n", + "Group 2 found at 3616-3626: `cognition `\n", + "Group 3 found at 3616-3626: `cognition `\n", + "\n", + "Group 1 found at 4116-4121: `s sea`\n", + "Group 2 found at 4121-4127: `s sea `\n", + "Group 3 found at 4121-4126: `s sea`\n", + "\n", + "Group 1 found at 4186-4192: `s cave`\n", + "Group 2 found at 4192-4198: `s cave`\n", + "Group 3 found at 4192-4198: `s cave`\n", + "ignored: foreverforever\n", + "exception: \n", + "ignored: alwaysalways\n", + "exception: \n", + "ignored: morrowmorrow\n", + "exception: \n", + "ignored: \t\n", + "exception: \n", + "(0, 65, 65)\n", + "detect_scores time: 1.168950080871582\n", + "detect_scores: The American Federation of Labor (AFL) was co-fou\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013031959533691406\n", + "detect_scores: Diego Rivera, the famous Mexican painter known fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005051851272583008\n", + "detect_scores: Switzerland primarily uses the Swiss Franc (CHF) \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004762887954711914\n", + "detect_scores: President John F. Kennedy, the 35th President of \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6924-6936: `s challenger`\n", + "Group 2 found at 6936-6949: `s challenger `\n", + "Group 3 found at 6936-6948: `s challenger`\n", + "\n", + "Group 1 found at 7361-7369: `s senior`\n", + "Group 2 found at 7369-7378: `s senior `\n", + "Group 3 found at 7369-7377: `s senior`\n", + "\n", + "Group 1 found at 7798-7803: `s bed`\n", + "Group 2 found at 7803-7808: `s bed`\n", + "Group 3 found at 7803-7808: `s bed`\n", + "\n", + "Group 1 found at 8217-8224: ` garden`\n", + "Group 2 found at 8224-8231: ` garden`\n", + "Group 3 found at 8224-8231: ` garden`\n", + "\n", + "Group 1 found at 9370-9375: ` lamp`\n", + "Group 2 found at 9375-9380: ` lamp`\n", + "Group 3 found at 9375-9380: ` lamp`\n", + "\n", + "Group 1 found at 9422-9428: `s gate`\n", + "Group 2 found at 9428-9434: `s gate`\n", + "Group 3 found at 9428-9434: `s gate`\n", + "\n", + "Group 1 found at 10627-10632: ` term`\n", + "Group 2 found at 10632-10637: ` term`\n", + "Group 3 found at 10632-10637: ` term`\n", + "(0, 98, 98)\n", + "detect_scores time: 2.2118828296661377\n", + "detect_scores: Prophet Muhammad, known as the last messenger in \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06364202499389648\n", + "detect_scores: Russia is a transcontinental nation spanning East\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6020-6026: `s cave`\n", + "Group 2 found at 6026-6032: `s cave`\n", + "Group 3 found at 6026-6032: `s cave`\n", + "\n", + "Group 1 found at 7495-7503: `relation`\n", + "Group 2 found at 7504-7512: `relation`\n", + "Group 3 found at 7504-7512: `relation`\n", + "\n", + "Group 1 found at 7797-7805: `ability `\n", + "Group 2 found at 7805-7813: `ability `\n", + "Group 3 found at 7805-7813: `ability `\n", + "\n", + "Group 1 found at 8727-8732: ` pack`\n", + "Group 2 found at 8732-8737: ` pack`\n", + "Group 3 found at 8732-8737: ` pack`\n", + "\n", + "Group 1 found at 10701-10711: `thing some`\n", + "Group 2 found at 10711-10721: `thing some`\n", + "Group 3 found at 10711-10721: `thing some`\n", + "\n", + "Group 1 found at 10749-10754: `where`\n", + "Group 2 found at 10755-10760: `where`\n", + "Group 3 found at 10755-10760: `where`\n", + "(0, 86, 86)\n", + "detect_scores time: 2.017839193344116\n", + "detect_scores: Chris Rock was born on October 7, 1965, in Brookl\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004609823226928711\n", + "detect_scores: The Toronto Maple Leafs most recently won their 1\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002382993698120117\n", + "detect_scores: Lola Bunny is a character from Warner Bros.' Loon\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012305021286010742\n", + "detect_scores: As of my last update in April 2023, Kris Humphrie\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005586862564086914\n", + "detect_scores: John Franklin was a British explorer, and there a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01316213607788086\n", + "detect_scores: Sean Connery's final film role before his retirem\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014343976974487305\n", + "detect_scores: Crabtree attended the University of Washington fo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014137029647827148\n", + "detect_scores: Fredrik Ljungberg, commonly known as \"Freddie,\" i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005059242248535156\n", + "detect_scores: As an AI developed by Microsoft, I don't have rea\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009348869323730469\n", + "detect_scores: John Adams, the second President of the United St\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3270-3277: `essence`\n", + "Group 2 found at 3278-3285: `essence`\n", + "Group 3 found at 3278-3285: `essence`\n", + "\n", + "Group 1 found at 6174-6182: ` killing`\n", + "Group 2 found at 6182-6190: ` killing`\n", + "Group 3 found at 6182-6190: ` killing`\n", + "\n", + "Group 1 found at 6266-6276: `rs predato`\n", + "Group 2 found at 6276-6286: `rs predato`\n", + "Group 3 found at 6276-6286: `rs predato`\n", + "\n", + "Group 1 found at 6463-6470: ` heaven`\n", + "Group 2 found at 6470-6477: ` heaven`\n", + "Group 3 found at 6470-6477: ` heaven`\n", + "\n", + "Group 1 found at 6497-6503: `space `\n", + "Group 2 found at 6503-6509: `space `\n", + "Group 3 found at 6503-6509: `space `\n", + "\n", + "Group 1 found at 6695-6707: `ncorporeal i`\n", + "Group 2 found at 6707-6719: `ncorporeal i`\n", + "Group 3 found at 6707-6719: `ncorporeal i`\n", + "\n", + "Group 1 found at 7757-7768: ` resistance`\n", + "Group 2 found at 7768-7779: ` resistance`\n", + "Group 3 found at 7768-7779: ` resistance`\n", + "\n", + "Group 1 found at 7953-7961: `rs scala`\n", + "Group 2 found at 7961-7969: `rs scala`\n", + "Group 3 found at 7961-7969: `rs scala`\n", + "\n", + "Group 1 found at 8374-8380: `laces `\n", + "Group 2 found at 8380-8386: `laces `\n", + "Group 3 found at 8380-8386: `laces `\n", + "\n", + "Group 1 found at 8817-8825: `currant `\n", + "Group 2 found at 8825-8833: `currant `\n", + "Group 3 found at 8825-8833: `currant `\n", + "\n", + "Group 1 found at 9682-9687: `fish `\n", + "Group 2 found at 9687-9692: `fish `\n", + "Group 3 found at 9687-9692: `fish `\n", + "(0, 177, 177)\n", + "detect_scores time: 1.6271512508392334\n", + "detect_scores: Mike Fisher is a professional ice hockey player. \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023889541625976562\n", + "detect_scores: Eduard Paolezzi, a renowned Scottish artist and s\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7236-7242: `notes `\n", + "Group 2 found at 7242-7248: `notes `\n", + "Group 3 found at 7242-7248: `notes `\n", + "\n", + "Group 1 found at 8549-8554: ` data`\n", + "Group 2 found at 8554-8559: ` data`\n", + "Group 3 found at 8554-8559: ` data`\n", + "(0, 22, 22)\n", + "detect_scores time: 1.8337090015411377\n", + "detect_scores: Joe Biden studied political science at the Univer\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036950111389160156\n", + "detect_scores: Ohio is located in the Midwestern region of the U\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5771-5781: `ers debugg`\n", + "Group 2 found at 5781-5791: `ers debugg`\n", + "Group 3 found at 5781-5791: `ers debugg`\n", + "\n", + "Group 1 found at 10476-10481: `s Map`\n", + "Group 2 found at 10481-10486: `s Map`\n", + "Group 3 found at 10481-10486: `s Map`\n", + "(0, 30, 30)\n", + "detect_scores time: 1.9363081455230713\n", + "detect_scores: Kailua is not an \"island\" in the traditional sens\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006802082061767578\n", + "detect_scores: Whoopi Goldberg received her first Grammy Award i\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.028225183486938477\n", + "detect_scores: Thomas Jefferson, the third President of the Unit\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7234-7244: ` continent`\n", + "Group 2 found at 7244-7254: ` continent`\n", + "Group 3 found at 7244-7254: ` continent`\n", + "\n", + "Group 1 found at 8515-8523: ` immense`\n", + "Group 2 found at 8523-8531: ` immense`\n", + "Group 3 found at 8523-8531: ` immense`\n", + "\n", + "Group 1 found at 9461-9469: `servant `\n", + "Group 2 found at 9469-9477: `servant `\n", + "Group 3 found at 9469-9477: `servant `\n", + "(0, 52, 52)\n", + "detect_scores time: 1.9285669326782227\n", + "detect_scores: In France, several religious traditions coexist a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8945-8950: ` cave`\n", + "Group 2 found at 8950-8955: ` cave`\n", + "Group 3 found at 8950-8955: ` cave`\n", + "(0, 10, 10)\n", + "detect_scores time: 2.1547210216522217\n", + "detect_scores: Manchester United, managed by Sir Alex Ferguson a\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00689697265625\n", + "detect_scores: The primary timezone used throughout Japan is JST\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008134126663208008\n", + "detect_scores: In the Czech Republic, the primary language spoke\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030281543731689453\n", + "detect_scores: Tim Cook is the CEO of Apple Inc., and as such, h\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0032927989959716797\n", + "detect_scores: London operates in the Greenwich Mean Time (GMT) \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006556987762451172\n", + "detect_scores: Sheryl Crow was diagnosed with stage IIIC invasiv\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009289979934692383\n", + "detect_scores: Argentina currently operates under a presidential\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02565789222717285\n", + "detect_scores: Fabio Capello is originally from Italy. He was bo\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012386798858642578\n", + "detect_scores: Abraham Lincoln, the 16th President of the United\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0076122283935546875\n", + "detect_scores: John Steinbeck was greatly inspired by his own li\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018076181411743164\n", + "detect_scores: Dwyane Wade, the former professional basketball p\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0059680938720703125\n", + "detect_scores: The Zambezia River flows eastward and empties its\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0067539215087890625\n", + "detect_scores: Before David Beckham joined LA Galaxy, he played \n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.025021076202392578\n", + "detect_scores: As of my knowledge cutoff in early 2023, Emmanuel\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007325887680053711\n", + "detect_scores: The Palace of Knossos is situated on the island o\n", + "----detect abnormal newlines----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007858753204345703\n", + "CPU times: user 7min 2s, sys: 566 ms, total: 7min 3s\n", + "Wall time: 7min 4s\n" + ] + }, + { + "data": { + "text/plain": [ + "2.5462636947631836" + ] + }, + "execution_count": 80, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "\n", + "longest_time = 0\n", + "df_v3 = df.copy()\n", + "df_v3[[\"newline_score\", \"repetition_score\", \"total_repetitions\"]] = df[\"answer\"].apply(\n", + " lambda x: detect_scores(detect_repetitions_v3, x)\n", + ")\n", + "longest_time" + ] + }, + { + "cell_type": "code", + "execution_count": 81, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
token_countnewline_scorerepetition_scoretotal_repetitionsadjusted_precisionadjusted_recallword_countprecisionrecallf1
count1008.0000001008.01008.0000001008.0000001008.0000001008.0000001008.0000001008.0000001008.0000001008.000000
mean385.2470240.013.16369013.1636900.4273220.536768385.2470240.4577620.5669430.463820
std500.0550330.031.82555531.8255550.4038310.450413500.0550330.4203160.4584990.400647
min1.0000000.00.0000000.0000000.0000000.0000001.0000000.0000000.0000000.000000
25%92.0000000.00.0000000.0000000.0000000.00000092.0000000.0000000.0000000.000000
50%132.5000000.00.0000000.0000000.3333330.556836132.5000000.3818180.7500000.500000
75%263.0000000.00.0000000.0000001.0000001.000000263.0000001.0000001.0000000.861607
max1485.0000000.0259.000000259.0000001.0000001.0000001485.0000001.0000001.0000001.000000
\n", + "
" + ], + "text/plain": [ + " token_count newline_score repetition_score total_repetitions \\\n", + "count 1008.000000 1008.0 1008.000000 1008.000000 \n", + "mean 385.247024 0.0 13.163690 13.163690 \n", + "std 500.055033 0.0 31.825555 31.825555 \n", + "min 1.000000 0.0 0.000000 0.000000 \n", + "25% 92.000000 0.0 0.000000 0.000000 \n", + "50% 132.500000 0.0 0.000000 0.000000 \n", + "75% 263.000000 0.0 0.000000 0.000000 \n", + "max 1485.000000 0.0 259.000000 259.000000 \n", + "\n", + " adjusted_precision adjusted_recall word_count precision \\\n", + "count 1008.000000 1008.000000 1008.000000 1008.000000 \n", + "mean 0.427322 0.536768 385.247024 0.457762 \n", + "std 0.403831 0.450413 500.055033 0.420316 \n", + "min 0.000000 0.000000 1.000000 0.000000 \n", + "25% 0.000000 0.000000 92.000000 0.000000 \n", + "50% 0.333333 0.556836 132.500000 0.381818 \n", + "75% 1.000000 1.000000 263.000000 1.000000 \n", + "max 1.000000 1.000000 1485.000000 1.000000 \n", + "\n", + " recall f1 \n", + "count 1008.000000 1008.000000 \n", + "mean 0.566943 0.463820 \n", + "std 0.458499 0.400647 \n", + "min 0.000000 0.000000 \n", + "25% 0.000000 0.000000 \n", + "50% 0.750000 0.500000 \n", + "75% 1.000000 0.861607 \n", + "max 1.000000 1.000000 " + ] + }, + "execution_count": 81, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_v3.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 82, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "detect_scores: Jamaicans primarily speak English, which is the o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4469-4476: `able st`\n", + "Group 2 found at 4476-4483: `able st`\n", + "Group 3 found at 4476-4483: `able st`\n", + "\n", + "Group 1 found at 6377-6390: ` distribution`\n", + "Group 2 found at 6390-6403: ` distribution`\n", + "Group 3 found at 6390-6403: ` distribution`\n", + "\n", + "Group 1 found at 6688-6700: `s coordinate`\n", + "Group 2 found at 6700-6713: `s coordinate `\n", + "Group 3 found at 6700-6712: `s coordinate`\n", + "(0, 65, 65)\n", + "detect_scores time: 2.095999002456665\n", + "detect_scores: Jamarius Russell was born in Lafayette, Louisiana\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 664-669: `date `\n", + "Group 2 found at 669-674: `date `\n", + "Group 3 found at 669-674: `date `\n", + "(0, 10, 10)\n", + "detect_scores time: 0.008641242980957031\n", + "detect_scores: George Washington Carver was born into slavery in\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007987737655639648\n", + "detect_scores: Benjamin Franklin was a prolific individual with \n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 11\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5584-5591: `second `\n", + "Group 2 found at 5591-5598: `second `\n", + "Group 3 found at 5591-5598: `second `\n", + "\n", + "Group 1 found at 6227-6241: `polation inter`\n", + "Group 2 found at 6241-6255: `polation inter`\n", + "Group 3 found at 6241-6255: `polation inter`\n", + "\n", + "Group 1 found at 6268-6279: `imation est`\n", + "Group 2 found at 6279-6290: `imation est`\n", + "Group 3 found at 6279-6290: `imation est`\n", + "\n", + "Group 1 found at 6449-6461: `variances co`\n", + "Group 2 found at 6461-6473: `variances co`\n", + "Group 3 found at 6461-6473: `variances co`\n", + "\n", + "Group 1 found at 8897-8906: `thalamus `\n", + "Group 2 found at 8906-8915: `thalamus `\n", + "Group 3 found at 8906-8915: `thalamus `\n", + "\n", + "Group 1 found at 9454-9463: `solution `\n", + "Group 2 found at 9463-9472: `solution `\n", + "Group 3 found at 9463-9472: `solution `\n", + "\n", + "Group 1 found at 9544-9550: ` phase`\n", + "Group 2 found at 9550-9556: ` phase`\n", + "Group 3 found at 9550-9556: ` phase`\n", + "(11, 136, 147)\n", + "detect_scores time: 1.7812952995300293\n", + "detect_scores: Richard Nixon, the 37th President of the United S\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "\n", + "removed excessive whitespaces: 45\n", + "----detect text repetitions----\n", + "(45, 0, 45)\n", + "detect_scores time: 0.16402196884155273\n", + "detect_scores: John R. Kasich served as the Governor of Ohio fro\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023860931396484375\n", + "detect_scores: Lyndon B. Johnson became the Vice President of th\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011019706726074219\n", + "detect_scores: The Fukushima Daiichi Nuclear Power Plant was ori\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013900041580200195\n", + "detect_scores: The United Kingdom (UK) is composed of four const\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 11\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5886-5891: `gods `\n", + "Group 2 found at 5891-5896: `gods `\n", + "Group 3 found at 5891-5896: `gods `\n", + "\n", + "Group 1 found at 9841-9847: `ls too`\n", + "Group 2 found at 9847-9853: `ls too`\n", + "Group 3 found at 9847-9853: `ls too`\n", + "\n", + "Group 1 found at 10523-10529: `on rad`\n", + "Group 2 found at 10529-10535: `on rad`\n", + "Group 3 found at 10529-10535: `on rad`\n", + "(11, 34, 45)\n", + "detect_scores time: 1.9406201839447021\n", + "detect_scores: To determine your current time zone, you would ne\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4669-4678: ` prospect`\n", + "Group 2 found at 4678-4687: ` prospect`\n", + "Group 3 found at 4678-4687: ` prospect`\n", + "\n", + "Group 1 found at 7161-7168: `charts `\n", + "Group 2 found at 7168-7175: `charts `\n", + "Group 3 found at 7168-7175: `charts `\n", + "\n", + "Group 1 found at 10609-10614: `e els`\n", + "Group 2 found at 10614-10619: `e els`\n", + "Group 3 found at 10614-10619: `e els`\n", + "\n", + "Group 1 found at 10635-10640: `ever `\n", + "Group 2 found at 10640-10645: `ever `\n", + "Group 3 found at 10640-10645: `ever `\n", + "(0, 52, 52)\n", + "detect_scores time: 1.607733964920044\n", + "detect_scores: St. Augustine, also known as Aurelius Augustinus \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03585410118103027\n", + "detect_scores: Egypt operates under a semi-presidential republic\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4085-4092: `writer `\n", + "Group 2 found at 4092-4099: `writer `\n", + "Group 3 found at 4092-4099: `writer `\n", + "\n", + "Group 1 found at 6400-6407: `either `\n", + "Group 2 found at 6407-6414: `either `\n", + "Group 3 found at 6407-6414: `either `\n", + "\n", + "Group 1 found at 8133-8142: `s numeric`\n", + "Group 2 found at 8142-8151: `s numeric`\n", + "Group 3 found at 8142-8151: `s numeric`\n", + "\n", + "Group 1 found at 9804-9810: `plane `\n", + "Group 2 found at 9810-9816: `plane `\n", + "Group 3 found at 9810-9816: `plane `\n", + "\n", + "Group 1 found at 10689-10695: `paper `\n", + "Group 2 found at 10695-10701: `paper `\n", + "Group 3 found at 10695-10701: `paper `\n", + "(0, 70, 70)\n", + "detect_scores time: 1.7868578433990479\n", + "detect_scores: Martin Luther King Jr. was tragically assassinate\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021932125091552734\n", + "detect_scores: Edgar Allan Poe, the famous American writer known\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006431102752685547\n", + "detect_scores: Anna Bligh, a member of the Australian Labor Part\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01737499237060547\n", + "detect_scores: Sweden primarily operates on Central European Tim\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0042400360107421875\n", + "detect_scores: As of my last update in April 2023, there is no w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003998994827270508\n", + "detect_scores: Frederick County is located within the state of M\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011011123657226562\n", + "detect_scores: Harper Lee, the author famous for her novel \"To K\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015769004821777344\n", + "detect_scores: Utah operates on Mountain Time, which includes Pa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016460418701171875\n", + "detect_scores: George W. Bush ran for his second presidential te\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003378152847290039\n", + "detect_scores: As of my last update in early 2023, Niall Ferguso\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002103090286254883\n", + "detect_scores: The Galápagos Islands are an archipelago of volca\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0077817440032958984\n", + "detect_scores: Rihanna, whose full name is Robyn Rihannon Fenty \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005375862121582031\n", + "detect_scores: Samsung, being a multinational conglomerate compa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03124523162841797\n", + "detect_scores: As of my last update, I cannot provide real-time \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0058939456939697266\n", + "detect_scores: George Orwell, the English novelist and essayist \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004254817962646484\n", + "detect_scores: Adolf Hitler was the leader of Nazi Germany. Duri\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017328977584838867\n", + "detect_scores: Kansas City, often referred to as KC or the \"Moth\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01677107810974121\n", + "detect_scores: Jackie Robinson played his professional baseball \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007978677749633789\n", + "detect_scores: Eleanor Roosevelt, the former First Lady of the U\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003032207489013672\n", + "detect_scores: Indonesia is known for its religious diversity an\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4277-4284: ` prince`\n", + "Group 2 found at 4284-4291: ` prince`\n", + "Group 3 found at 4284-4291: ` prince`\n", + "\n", + "Group 1 found at 6062-6067: `zetta`\n", + "Group 2 found at 6067-6072: `zetta`\n", + "Group 3 found at 6067-6072: `zetta`\n", + "\n", + "Group 1 found at 8630-8638: `s animal`\n", + "Group 2 found at 8638-8647: `s animal `\n", + "Group 3 found at 8638-8646: `s animal`\n", + "\n", + "Group 1 found at 9520-9527: `s proof`\n", + "Group 2 found at 9527-9534: `s proof`\n", + "Group 3 found at 9527-9534: `s proof`\n", + "(0, 55, 55)\n", + "detect_scores time: 1.7457430362701416\n", + "detect_scores: I cannot assist you with that. It's important to \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012240409851074219\n", + "detect_scores: The title \"dictator\" in its original Roman contex\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4198-4206: `ability `\n", + "Group 2 found at 4206-4214: `ability `\n", + "Group 3 found at 4206-4214: `ability `\n", + "\n", + "Group 1 found at 4814-4823: `commerce `\n", + "Group 2 found at 4823-4832: `commerce `\n", + "Group 3 found at 4823-4832: `commerce `\n", + "\n", + "Group 1 found at 8224-8230: `s meme`\n", + "Group 2 found at 8230-8237: `s meme `\n", + "Group 3 found at 8230-8236: `s meme`\n", + "\n", + "Group 1 found at 8493-8503: `duction in`\n", + "Group 2 found at 8503-8513: `duction in`\n", + "Group 3 found at 8503-8513: `duction in`\n", + "(0, 67, 67)\n", + "detect_scores time: 1.7996819019317627\n", + "detect_scores: The official currency of Puerto Rico is called th\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0035638809204101562\n", + "detect_scores: I'm sorry, but as a matter of privacy and confide\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.029536962509155273\n", + "detect_scores: The character K.I.T.T., which stands for Knight I\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009943723678588867\n", + "detect_scores: Brentwood, Tennessee lies within Williamson Count\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3231-3242: `s threshold`\n", + "Group 2 found at 3242-3254: `s threshold `\n", + "Group 3 found at 3242-3253: `s threshold`\n", + "\n", + "Group 1 found at 3764-3775: ` photograph`\n", + "Group 2 found at 3775-3786: ` photograph`\n", + "Group 3 found at 3775-3786: ` photograph`\n", + "\n", + "Group 1 found at 3898-3905: `letter `\n", + "Group 2 found at 3905-3912: `letter `\n", + "Group 3 found at 3905-3912: `letter `\n", + "\n", + "Group 1 found at 4470-4477: `writer `\n", + "Group 2 found at 4477-4484: `writer `\n", + "Group 3 found at 4477-4484: `writer `\n", + "\n", + "Group 1 found at 5603-5614: `directed un`\n", + "Group 2 found at 5614-5625: `directed un`\n", + "Group 3 found at 5614-5625: `directed un`\n", + "\n", + "Group 1 found at 6869-6875: `l meta`\n", + "Group 2 found at 6875-6881: `l meta`\n", + "Group 3 found at 6875-6881: `l meta`\n", + "\n", + "Group 1 found at 10494-10499: `milk `\n", + "Group 2 found at 10499-10504: `milk `\n", + "Group 3 found at 10499-10504: `milk `\n", + "(0, 117, 117)\n", + "detect_scores time: 1.589752197265625\n", + "detect_scores: Michael Jackson, often confused with the famous e\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.029334068298339844\n", + "detect_scores: Stonewall Jackson, a Confederate general during t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3455-3463: `ability `\n", + "Group 2 found at 3463-3471: `ability `\n", + "Group 3 found at 3463-3471: `ability `\n", + "\n", + "Group 1 found at 6922-6928: `y happ`\n", + "Group 2 found at 6928-6934: `y happ`\n", + "Group 3 found at 6928-6934: `y happ`\n", + "\n", + "Group 1 found at 8115-8125: ` continent`\n", + "Group 2 found at 8125-8135: ` continent`\n", + "Group 3 found at 8125-8135: ` continent`\n", + "\n", + "Group 1 found at 8631-8638: ` league`\n", + "Group 2 found at 8638-8645: ` league`\n", + "Group 3 found at 8638-8645: ` league`\n", + "\n", + "Group 1 found at 8778-8786: `seconds `\n", + "Group 2 found at 8786-8794: `seconds `\n", + "Group 3 found at 8786-8794: `seconds `\n", + "(0, 78, 78)\n", + "detect_scores time: 1.7870640754699707\n", + "detect_scores: Benjamin Franklin got married twice over the cour\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.019387245178222656\n", + "detect_scores: Patrick Swayze tragically passed away on Septembe\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004099130630493164\n", + "detect_scores: The capital of Austria is Vienna, also known as W\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003773212432861328\n", + "detect_scores: Eva Perón, also known as Evita and originally nam\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0041158199310302734\n", + "detect_scores: Buddha, also known as Siddhartha Gautama before h\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009572982788085938\n", + "detect_scores: Greeley, Colorado, lies within Weld County. It se\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008480548858642578\n", + "detect_scores: John Lennon, a member of The Beatles and later as\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011651039123535156\n", + "detect_scores: As of my last update in 2023, Colorado has severa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012193918228149414\n", + "detect_scores: Greenland is an autonomous territory within the K\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00657200813293457\n", + "detect_scores: I'm sorry, but as of my last update in April 2023\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006097316741943359\n", + "detect_scores: Armenia is a country located in the South Caucasu\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01580500602722168\n", + "detect_scores: Randy Savage, the professional wrestler known for\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008168220520019531\n", + "detect_scores: Richard Nixon died at a hospital in New York City\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4325-4332: `able st`\n", + "Group 2 found at 4332-4339: `able st`\n", + "Group 3 found at 4332-4339: `able st`\n", + "\n", + "Group 1 found at 5804-5813: `s mission`\n", + "Group 2 found at 5813-5823: `s mission `\n", + "Group 3 found at 5813-5822: `s mission`\n", + "\n", + "Group 1 found at 6344-6354: `economics `\n", + "Group 2 found at 6354-6364: `economics `\n", + "Group 3 found at 6354-6364: `economics `\n", + "\n", + "Group 1 found at 7871-7876: `fight`\n", + "Group 2 found at 7876-7882: `fight `\n", + "Group 3 found at 7876-7881: `fight`\n", + "\n", + "Group 1 found at 9405-9416: ` difference`\n", + "Group 2 found at 9416-9427: ` difference`\n", + "Group 3 found at 9416-9427: ` difference`\n", + "\n", + "Group 1 found at 9851-9865: `ly approximate`\n", + "Group 2 found at 9865-9880: `ly approximate `\n", + "Group 3 found at 9865-9879: `ly approximate`\n", + "\n", + "Group 1 found at 10389-10394: `e idl`\n", + "Group 2 found at 10394-10399: `e idl`\n", + "Group 3 found at 10394-10399: `e idl`\n", + "\n", + "Group 1 found at 10432-10438: ` sport`\n", + "Group 2 found at 10438-10444: ` sport`\n", + "Group 3 found at 10438-10444: ` sport`\n", + "\n", + "Group 1 found at 10582-10590: ` attempt`\n", + "Group 2 found at 10590-10598: ` attempt`\n", + "Group 3 found at 10590-10598: ` attempt`\n", + "\n", + "Group 1 found at 11135-11143: ` entitle`\n", + "Group 2 found at 11143-11151: ` entitle`\n", + "Group 3 found at 11143-11151: ` entitle`\n", + "\n", + "Group 1 found at 11159-11164: ` hold`\n", + "Group 2 found at 11164-11169: ` hold`\n", + "Group 3 found at 11164-11169: ` hold`\n", + "(0, 179, 179)\n", + "detect_scores time: 1.9853830337524414\n", + "detect_scores: Lyndon B. Johnson served as the Vice President un\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001477956771850586\n", + "detect_scores: The primary languages spoken in Haiti are French \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011830329895019531\n", + "detect_scores: Jay Leno was born in Columbus, Ohio. He grew up t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3957-3965: `s meteor`\n", + "Group 2 found at 3965-3973: `s meteor`\n", + "Group 3 found at 3965-3973: `s meteor`\n", + "\n", + "Group 1 found at 5730-5735: `e mov`\n", + "Group 2 found at 5735-5740: `e mov`\n", + "Group 3 found at 5735-5740: `e mov`\n", + "\n", + "Group 1 found at 7450-7460: `s favorite`\n", + "Group 2 found at 7460-7471: `s favorite `\n", + "Group 3 found at 7460-7470: `s favorite`\n", + "\n", + "Group 1 found at 9710-9716: `books `\n", + "Group 2 found at 9716-9722: `books `\n", + "Group 3 found at 9716-9722: `books `\n", + "(0, 59, 59)\n", + "detect_scores time: 1.9406630992889404\n", + "detect_scores: Armie Hammer portrayed Chip Bingley, who is a cha\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006255149841308594\n", + "detect_scores: Tim Tebow played collegiate football at the Unive\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6465-6470: ` park`\n", + "Group 2 found at 6470-6475: ` park`\n", + "Group 3 found at 6470-6475: ` park`\n", + "\n", + "Group 1 found at 9840-9846: `ns sig`\n", + "Group 2 found at 9846-9852: `ns sig`\n", + "Group 3 found at 9846-9852: `ns sig`\n", + "\n", + "Group 1 found at 10993-11008: `s approximation`\n", + "Group 2 found at 11008-11024: `s approximation `\n", + "Group 3 found at 11008-11023: `s approximation`\n", + "\n", + "Group 1 found at 11415-11425: `gments fra`\n", + "Group 2 found at 11425-11435: `gments fra`\n", + "Group 3 found at 11425-11435: `gments fra`\n", + "(0, 73, 73)\n", + "detect_scores time: 2.1640660762786865\n", + "detect_scores: Peyton Manning played professional American footb\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0047681331634521484\n", + "detect_scores: The Carpathian Mountains are a range of mountains\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004685878753662109\n", + "detect_scores: Robert Burns, also known as Rabbie Burns and the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5701-5711: `s tutorial`\n", + "Group 2 found at 5711-5722: `s tutorial `\n", + "Group 3 found at 5711-5721: `s tutorial`\n", + "(0, 21, 21)\n", + "detect_scores time: 1.9957880973815918\n", + "detect_scores: The iconic character Darth Vader was voiced by Ja\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006453037261962891\n", + "detect_scores: Peyton Manning won Super Bowl 50 with the Denver \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0069179534912109375\n", + "detect_scores: Justin Bieber was not actually \"born\" anywhere, a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001954793930053711\n", + "detect_scores: London Tipton is a character from the television \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011401176452636719\n", + "detect_scores: In the year 2011, David Beckham played as a playe\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2815-2826: ` occurrence`\n", + "Group 2 found at 2826-2837: ` occurrence`\n", + "Group 3 found at 2826-2837: ` occurrence`\n", + "\n", + "Group 1 found at 5088-5095: `possum `\n", + "Group 2 found at 5095-5102: `possum `\n", + "Group 3 found at 5095-5102: `possum `\n", + "\n", + "Group 1 found at 10176-10184: ` Airline`\n", + "Group 2 found at 10184-10192: ` Airline`\n", + "Group 3 found at 10184-10192: ` Airline`\n", + "(0, 52, 52)\n", + "detect_scores time: 1.773893117904663\n", + "detect_scores: Francisco Coronado was a Spanish conquistador and\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0077250003814697266\n", + "detect_scores: Gilda Radner, the beloved comedian and actress kn\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021560192108154297\n", + "detect_scores: Barack Obama, the 44th President of the United St\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1996-2001: `ever `\n", + "Group 2 found at 2001-2006: `ever `\n", + "Group 3 found at 2001-2006: `ever `\n", + "\n", + "Group 1 found at 2095-2106: `possible im`\n", + "Group 2 found at 2106-2117: `possible im`\n", + "Group 3 found at 2106-2117: `possible im`\n", + "\n", + "Group 1 found at 5042-5050: ` archive`\n", + "Group 2 found at 5050-5058: ` archive`\n", + "Group 3 found at 5050-5058: ` archive`\n", + "\n", + "Group 1 found at 5757-5765: `relation`\n", + "Group 2 found at 5766-5774: `relation`\n", + "Group 3 found at 5766-5774: `relation`\n", + "\n", + "Group 1 found at 7534-7546: `tion distinc`\n", + "Group 2 found at 7546-7558: `tion distinc`\n", + "Group 3 found at 7546-7558: `tion distinc`\n", + "\n", + "Group 1 found at 8392-8403: ` instrument`\n", + "Group 2 found at 8403-8414: ` instrument`\n", + "Group 3 found at 8403-8414: ` instrument`\n", + "\n", + "Group 1 found at 9159-9167: `terbium `\n", + "Group 2 found at 9167-9175: `terbium `\n", + "Group 3 found at 9167-9175: `terbium `\n", + "\n", + "Group 1 found at 9557-9566: `ons nucle`\n", + "Group 2 found at 9566-9575: `ons nucle`\n", + "Group 3 found at 9566-9575: `ons nucle`\n", + "(0, 145, 145)\n", + "detect_scores time: 1.8329598903656006\n", + "detect_scores: Michael J. Fox's public personal life, including \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0035698413848876953\n", + "detect_scores: Dolley Madison, often associated with the term \"D\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.035711050033569336\n", + "detect_scores: Agatha Christie, an acclaimed British author know\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "removed excessive whitespaces: 56\n", + "----detect text repetitions----\n", + "(56, 0, 56)\n", + "detect_scores time: 0.010256052017211914\n", + "detect_scores: The four primary official and widely recognized l\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1424-1429: ` them`\n", + "Group 2 found at 1429-1434: ` them`\n", + "Group 3 found at 1429-1434: ` them`\n", + "\n", + "Group 1 found at 2544-2552: `relation`\n", + "Group 2 found at 2553-2561: `relation`\n", + "Group 3 found at 2553-2561: `relation`\n", + "\n", + "Group 1 found at 6927-6939: `ation comput`\n", + "Group 2 found at 6939-6951: `ation comput`\n", + "Group 3 found at 6939-6951: `ation comput`\n", + "\n", + "Group 1 found at 7215-7222: ` shadow`\n", + "Group 2 found at 7222-7229: ` shadow`\n", + "Group 3 found at 7222-7229: ` shadow`\n", + "\n", + "Group 1 found at 7960-7965: ` bolt`\n", + "Group 2 found at 7965-7970: ` bolt`\n", + "Group 3 found at 7965-7970: ` bolt`\n", + "\n", + "Group 1 found at 8763-8775: `ed entertain`\n", + "Group 2 found at 8775-8787: `ed entertain`\n", + "Group 3 found at 8775-8787: `ed entertain`\n", + "\n", + "Group 1 found at 9425-9433: `ly exact`\n", + "Group 2 found at 9433-9442: `ly exact `\n", + "Group 3 found at 9433-9441: `ly exact`\n", + "(0, 116, 116)\n", + "detect_scores time: 1.9644808769226074\n", + "detect_scores: The National Rifle Association (NRA) Headquarters\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021028518676757812\n", + "detect_scores: Albert Einstein attended the Polytechnic School i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002373933792114258\n", + "detect_scores: As of my last update in April 2023, Bill Lee was \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014579296112060547\n", + "detect_scores: Louis Armstrong was a legendary jazz musician ren\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013735294342041016\n", + "detect_scores: You are currently located within the Pacific Time\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004372358322143555\n", + "detect_scores: As of my last update, Hawaii Island (also known a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004823207855224609\n", + "detect_scores: Rudolf Virchow, a renowned German physician and p\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5101-5111: ` continent`\n", + "Group 2 found at 5111-5121: ` continent`\n", + "Group 3 found at 5111-5121: ` continent`\n", + "\n", + "Group 1 found at 6103-6112: `s erratic`\n", + "Group 2 found at 6112-6122: `s erratic `\n", + "Group 3 found at 6112-6121: `s erratic`\n", + "\n", + "Group 1 found at 8137-8148: ` photograph`\n", + "Group 2 found at 8148-8159: ` photograph`\n", + "Group 3 found at 8148-8159: ` photograph`\n", + "\n", + "Group 1 found at 10114-10123: `finite in`\n", + "Group 2 found at 10123-10132: `finite in`\n", + "Group 3 found at 10123-10132: `finite in`\n", + "\n", + "Group 1 found at 10299-10306: `though `\n", + "Group 2 found at 10306-10313: `though `\n", + "Group 3 found at 10306-10313: `though `\n", + "\n", + "Group 1 found at 10561-10569: `ability `\n", + "Group 2 found at 10569-10577: `ability `\n", + "Group 3 found at 10569-10577: `ability `\n", + "\n", + "Group 1 found at 10828-10835: `parent `\n", + "Group 2 found at 10835-10842: `parent `\n", + "Group 3 found at 10835-10842: `parent `\n", + "\n", + "Group 1 found at 10902-10907: `great`\n", + "Group 2 found at 10907-10912: `great`\n", + "Group 3 found at 10907-10912: `great`\n", + "\n", + "Group 1 found at 10988-10998: `rs neighbo`\n", + "Group 2 found at 10998-11008: `rs neighbo`\n", + "Group 3 found at 10998-11008: `rs neighbo`\n", + "(0, 153, 153)\n", + "detect_scores time: 2.144622802734375\n", + "detect_scores: Gordon Brown attended the University of Edinburgh\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006536006927490234\n", + "detect_scores: Greece shares its land border to the north and we\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4943-4951: `rs scala`\n", + "Group 2 found at 4951-4959: `rs scala`\n", + "Group 3 found at 4951-4959: `rs scala`\n", + "\n", + "Group 1 found at 5192-5198: `units `\n", + "Group 2 found at 5198-5204: `units `\n", + "Group 3 found at 5198-5204: `units `\n", + "\n", + "Group 1 found at 5541-5552: `space hyper`\n", + "Group 2 found at 5552-5563: `space hyper`\n", + "Group 3 found at 5552-5563: `space hyper`\n", + "\n", + "Group 1 found at 9444-9450: `light `\n", + "Group 2 found at 9450-9456: `light `\n", + "Group 3 found at 9450-9456: `light `\n", + "(0, 62, 62)\n", + "detect_scores time: 1.8599750995635986\n", + "detect_scores: The Seattle Seahawks won Super Bowl XLVIII in 201\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006997585296630859\n", + "detect_scores: The character Donna Noble, who is a companion of \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00900411605834961\n", + "detect_scores: Dr. Seuss Education, also known as the Houghton M\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5410-5415: `roach`\n", + "Group 2 found at 5416-5421: `roach`\n", + "Group 3 found at 5416-5421: `roach`\n", + "\n", + "Group 1 found at 6541-6547: `sheet `\n", + "Group 2 found at 6547-6553: `sheet `\n", + "Group 3 found at 6547-6553: `sheet `\n", + "\n", + "Group 1 found at 7617-7623: `s star`\n", + "Group 2 found at 7623-7630: `s star `\n", + "Group 3 found at 7623-7629: `s star`\n", + "\n", + "Group 1 found at 8205-8213: `speaker `\n", + "Group 2 found at 8213-8221: `speaker `\n", + "Group 3 found at 8213-8221: `speaker `\n", + "\n", + "Group 1 found at 8945-8955: `thing some`\n", + "Group 2 found at 8955-8965: `thing some`\n", + "Group 3 found at 8955-8965: `thing some`\n", + "\n", + "Group 1 found at 8969-8978: `something`\n", + "Group 2 found at 8978-8988: `something `\n", + "Group 3 found at 8978-8987: `something`\n", + "\n", + "Group 1 found at 8990-9000: `ybody ever`\n", + "Group 2 found at 9000-9010: `ybody ever`\n", + "Group 3 found at 9000-9010: `ybody ever`\n", + "\n", + "Group 1 found at 9270-9276: ` after`\n", + "Group 2 found at 9276-9282: ` after`\n", + "Group 3 found at 9276-9282: ` after`\n", + "\n", + "Group 1 found at 9409-9415: ` dozen`\n", + "Group 2 found at 9415-9422: ` dozen `\n", + "Group 3 found at 9415-9421: ` dozen`\n", + "\n", + "Group 1 found at 9726-9732: `round `\n", + "Group 2 found at 9732-9738: `round `\n", + "Group 3 found at 9732-9738: `round `\n", + "\n", + "Group 1 found at 9996-10002: `diver `\n", + "Group 2 found at 10002-10008: `diver `\n", + "Group 3 found at 10002-10008: `diver `\n", + "(0, 160, 160)\n", + "detect_scores time: 1.4329090118408203\n", + "detect_scores: Queensland, a state in Australia's northeast regi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6646-6652: `stone `\n", + "Group 2 found at 6652-6658: `stone `\n", + "Group 3 found at 6652-6658: `stone `\n", + "(0, 12, 12)\n", + "detect_scores time: 1.7613229751586914\n", + "detect_scores: The three official languages of Belgium are Dutch\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4108-4117: `employed `\n", + "Group 2 found at 4117-4126: `employed `\n", + "Group 3 found at 4117-4126: `employed `\n", + "\n", + "Group 1 found at 9485-9492: `table s`\n", + "Group 2 found at 9492-9499: `table s`\n", + "Group 3 found at 9492-9499: `table s`\n", + "(0, 32, 32)\n", + "detect_scores time: 1.7850618362426758\n", + "detect_scores: To find out which airport one would arrive at whe\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2270-2275: `bound`\n", + "Group 2 found at 2276-2281: `bound`\n", + "Group 3 found at 2276-2281: `bound`\n", + "\n", + "Group 1 found at 4414-4427: `condition pre`\n", + "Group 2 found at 4427-4440: `condition pre`\n", + "Group 3 found at 4427-4440: `condition pre`\n", + "\n", + "Group 1 found at 4440-4449: `requisite`\n", + "Group 2 found at 4450-4459: `requisite`\n", + "Group 3 found at 4450-4459: `requisite`\n", + "\n", + "Group 1 found at 5345-5355: `ed expedit`\n", + "Group 2 found at 5355-5365: `ed expedit`\n", + "Group 3 found at 5355-5365: `ed expedit`\n", + "\n", + "Group 1 found at 7705-7714: `yone ever`\n", + "Group 2 found at 7714-7723: `yone ever`\n", + "Group 3 found at 7714-7723: `yone ever`\n", + "\n", + "Group 1 found at 7724-7731: `body no`\n", + "Group 2 found at 7731-7738: `body no`\n", + "Group 3 found at 7731-7738: `body no`\n", + "\n", + "Group 1 found at 8135-8140: ` chat`\n", + "Group 2 found at 8140-8145: ` chat`\n", + "Group 3 found at 8140-8145: ` chat`\n", + "\n", + "Group 1 found at 11104-11110: `or min`\n", + "Group 2 found at 11110-11116: `or min`\n", + "Group 3 found at 11110-11116: `or min`\n", + "(0, 130, 130)\n", + "detect_scores time: 2.0006277561187744\n", + "detect_scores: As of my knowledge cutoff in 2023, Collin Kaepern\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012603044509887695\n", + "detect_scores: Joe Flacco attended the University of Delaware, w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.033796072006225586\n", + "detect_scores: Theodore Roosevelt is not actually buried; instea\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.11206293106079102\n", + "detect_scores: The Missouri River concludes its journey in St. L\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6248-6257: ` definite`\n", + "Group 2 found at 6257-6266: ` definite`\n", + "Group 3 found at 6257-6266: ` definite`\n", + "\n", + "Group 1 found at 7610-7618: ` entitle`\n", + "Group 2 found at 7618-7626: ` entitle`\n", + "Group 3 found at 7618-7626: ` entitle`\n", + "\n", + "Group 1 found at 7635-7645: ` ownership`\n", + "Group 2 found at 7645-7656: ` ownership `\n", + "Group 3 found at 7645-7655: ` ownership`\n", + "\n", + "Group 1 found at 11251-11262: ` photograph`\n", + "Group 2 found at 11262-11273: ` photograph`\n", + "Group 3 found at 11262-11273: ` photograph`\n", + "(0, 77, 77)\n", + "detect_scores time: 2.146775007247925\n", + "detect_scores: In Thailand, the official and legal tender used f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00436091423034668\n", + "detect_scores: Khloé Kardashian's former husband was Lamar Odom.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.038863182067871094\n", + "detect_scores: Mitt Romney, the former Governor and U.S Senator \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019698143005371094\n", + "detect_scores: France operates under a semi-presidential represe\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014535903930664062\n", + "detect_scores: As of my last update in 2023, the current monarch\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023360252380371094\n", + "detect_scores: Stephen Hawking studied physics and mathematics a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.028942108154296875\n", + "detect_scores: Egypt is primarily associated with North Africa a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9221-9228: ` member`\n", + "Group 2 found at 9228-9235: ` member`\n", + "Group 3 found at 9228-9235: ` member`\n", + "\n", + "Group 1 found at 9820-9825: `span `\n", + "Group 2 found at 9825-9830: `span `\n", + "Group 3 found at 9825-9830: `span `\n", + "\n", + "Group 1 found at 11497-11503: `diver `\n", + "Group 2 found at 11503-11509: `diver `\n", + "Group 3 found at 11503-11509: `diver `\n", + "(0, 36, 36)\n", + "detect_scores time: 2.1395719051361084\n", + "detect_scores: Dr. Seuss, whose real name was Theodor Geisel, wa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009041786193847656\n", + "detect_scores: Ben Roethlisbergers attended McKeesport Area High\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001361846923828125\n", + "detect_scores: George Harrison, a member of The Beatles and an a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7677-7687: `rs neighbo`\n", + "Group 2 found at 7687-7697: `rs neighbo`\n", + "Group 3 found at 7687-7697: `rs neighbo`\n", + "\n", + "Group 1 found at 9281-9287: `check `\n", + "Group 2 found at 9287-9293: `check `\n", + "Group 3 found at 9287-9293: `check `\n", + "(0, 32, 32)\n", + "detect_scores time: 2.2138450145721436\n", + "detect_scores: New England is a region in the northeastern Unite\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 10\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8616-8632: `ions representat`\n", + "Group 2 found at 8632-8648: `ions representat`\n", + "Group 3 found at 8632-8648: `ions representat`\n", + "\n", + "Group 1 found at 8934-8940: `s idea`\n", + "Group 2 found at 8940-8946: `s idea`\n", + "Group 3 found at 8940-8946: `s idea`\n", + "\n", + "Group 1 found at 10092-10101: `t documen`\n", + "Group 2 found at 10101-10110: `t documen`\n", + "Group 3 found at 10101-10110: `t documen`\n", + "(10, 62, 72)\n", + "detect_scores time: 2.0597150325775146\n", + "detect_scores: The Vietnam War took place in Southeast Asia, pri\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0075800418853759766\n", + "detect_scores: Gerald Ford, who assumed the presidency after Ric\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00788569450378418\n", + "detect_scores: The official currency of Italy is the Euro (€). I\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006590843200683594\n", + "detect_scores: The current administrative, political, and cultur\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018090009689331055\n", + "detect_scores: Sir Ernest Rutherford attended several educationa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6284-6290: `s mace`\n", + "Group 2 found at 6290-6297: `s mace `\n", + "Group 3 found at 6290-6296: `s mace`\n", + "\n", + "Group 1 found at 6856-6862: `s cave`\n", + "Group 2 found at 6862-6868: `s cave`\n", + "Group 3 found at 6862-6868: `s cave`\n", + "(0, 25, 25)\n", + "detect_scores time: 2.0016961097717285\n", + "detect_scores: Brandon Roy is known to have played as a small fo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00344085693359375\n", + "detect_scores: Harvard University, an Ivy League research instit\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5494-5500: `day to`\n", + "Group 2 found at 5500-5506: `day to`\n", + "Group 3 found at 5500-5506: `day to`\n", + "\n", + "Group 1 found at 8313-8319: `storm `\n", + "Group 2 found at 8319-8325: `storm `\n", + "Group 3 found at 8319-8325: `storm `\n", + "\n", + "Group 1 found at 9346-9351: `venge`\n", + "Group 2 found at 9352-9357: `venge`\n", + "Group 3 found at 9352-9357: `venge`\n", + "(0, 35, 35)\n", + "detect_scores time: 1.7498350143432617\n", + "detect_scores: Laos, officially known as the Lao People's Democr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5949-5964: `ostatics electr`\n", + "Group 2 found at 5964-5979: `ostatics electr`\n", + "Group 3 found at 5964-5979: `ostatics electr`\n", + "\n", + "Group 1 found at 7644-7649: `s cup`\n", + "Group 2 found at 7649-7655: `s cup `\n", + "Group 3 found at 7649-7654: `s cup`\n", + "\n", + "Group 1 found at 9016-9028: `ing decompos`\n", + "Group 2 found at 9028-9040: `ing decompos`\n", + "Group 3 found at 9028-9040: `ing decompos`\n", + "(0, 65, 65)\n", + "detect_scores time: 1.8416731357574463\n", + "detect_scores: Tyrese Gibson hails from Atlanta, Georgia in the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006072044372558594\n", + "detect_scores: Italy is a country located in Southern Europe, an\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 15\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2148-2156: `s reform`\n", + "Group 2 found at 2156-2164: `s reform`\n", + "Group 3 found at 2156-2164: `s reform`\n", + "\n", + "Group 1 found at 2359-2367: ` upgrade`\n", + "Group 2 found at 2367-2375: ` upgrade`\n", + "Group 3 found at 2367-2375: ` upgrade`\n", + "\n", + "Group 1 found at 4867-4875: `way rail`\n", + "Group 2 found at 4875-4883: `way rail`\n", + "Group 3 found at 4875-4883: `way rail`\n", + "\n", + "Group 1 found at 4951-4957: `cycle `\n", + "Group 2 found at 4957-4963: `cycle `\n", + "Group 3 found at 4957-4963: `cycle `\n", + "\n", + "Group 1 found at 5396-5403: `market `\n", + "Group 2 found at 5403-5410: `market `\n", + "Group 3 found at 5403-5410: `market `\n", + "\n", + "Group 1 found at 9058-9063: `e tim`\n", + "Group 2 found at 9063-9068: `e tim`\n", + "Group 3 found at 9063-9068: `e tim`\n", + "(15, 84, 99)\n", + "detect_scores time: 1.9128541946411133\n", + "detect_scores: The Colorado River runs primarily within five U.S\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4712-4721: `patience `\n", + "Group 2 found at 4721-4730: `patience `\n", + "Group 3 found at 4721-4730: `patience `\n", + "\n", + "Group 1 found at 7199-7205: `pocket`\n", + "Group 2 found at 7206-7212: `pocket`\n", + "Group 3 found at 7206-7212: `pocket`\n", + "\n", + "Group 1 found at 7404-7412: `glasses `\n", + "Group 2 found at 7412-7420: `glasses `\n", + "Group 3 found at 7412-7420: `glasses `\n", + "\n", + "Group 1 found at 7760-7765: `e cav`\n", + "Group 2 found at 7765-7770: `e cav`\n", + "Group 3 found at 7765-7770: `e cav`\n", + "\n", + "Group 1 found at 8730-8739: `nts insta`\n", + "Group 2 found at 8739-8748: `nts insta`\n", + "Group 3 found at 8739-8748: `nts insta`\n", + "\n", + "Group 1 found at 8800-8806: `watch `\n", + "Group 2 found at 8806-8812: `watch `\n", + "Group 3 found at 8806-8812: `watch `\n", + "\n", + "Group 1 found at 9556-9563: `flower `\n", + "Group 2 found at 9563-9570: `flower `\n", + "Group 3 found at 9563-9570: `flower `\n", + "(0, 101, 101)\n", + "detect_scores time: 1.5949740409851074\n", + "detect_scores: I'm sorry, but as a source of information and in \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013492107391357422\n", + "detect_scores: Elvis Costello, the acclaimed English singer-song\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7663-7672: `e opposit`\n", + "Group 2 found at 7672-7681: `e opposit`\n", + "Group 3 found at 7672-7681: `e opposit`\n", + "\n", + "Group 1 found at 10301-10310: `crease de`\n", + "Group 2 found at 10310-10319: `crease de`\n", + "Group 3 found at 10310-10319: `crease de`\n", + "\n", + "Group 1 found at 10400-10406: `meter `\n", + "Group 2 found at 10406-10412: `meter `\n", + "Group 3 found at 10406-10412: `meter `\n", + "\n", + "Group 1 found at 10559-10564: `byte `\n", + "Group 2 found at 10564-10569: `byte `\n", + "Group 3 found at 10564-10569: `byte `\n", + "\n", + "Group 1 found at 10821-10827: `oan gr`\n", + "Group 2 found at 10827-10833: `oan gr`\n", + "Group 3 found at 10827-10833: `oan gr`\n", + "\n", + "Group 1 found at 11152-11158: `colon `\n", + "Group 2 found at 11158-11164: `colon `\n", + "Group 3 found at 11158-11164: `colon `\n", + "(0, 82, 82)\n", + "detect_scores time: 2.0014231204986572\n", + "detect_scores: The Gobi Desert is primarily situated in northern\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012418746948242188\n", + "detect_scores: Germany is located in the continent of Europe. It\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003639698028564453\n", + "detect_scores: The primary languages spoken in Turkey are Turkis\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004003047943115234\n", + "detect_scores: Jeremy Lin currently plays basketball in the NBA \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005486011505126953\n", + "detect_scores: The Seychelles are an archipelago country located\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017447948455810547\n", + "detect_scores: William Morris attended Exeter College at the Uni\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004307985305786133\n", + "detect_scores: Mount St. Helens is located in the U.S. state of \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00127410888671875\n", + "detect_scores: Jimmy Savile was a British television presenter, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4745-4755: `duction in`\n", + "Group 2 found at 4755-4765: `duction in`\n", + "Group 3 found at 4755-4765: `duction in`\n", + "\n", + "Group 1 found at 9833-9841: `parents `\n", + "Group 2 found at 9841-9849: `parents `\n", + "Group 3 found at 9841-9849: `parents `\n", + "\n", + "Group 1 found at 10813-10822: `election `\n", + "Group 2 found at 10822-10831: `election `\n", + "Group 3 found at 10822-10831: `election `\n", + "(0, 54, 54)\n", + "detect_scores time: 1.9557909965515137\n", + "detect_scores: The Panama Canal is entirely within one country, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008858203887939453\n", + "detect_scores: Charlie Chaplin was a British actor, comedian, an\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4381-4390: ` discover`\n", + "Group 2 found at 4390-4399: ` discover`\n", + "Group 3 found at 4390-4399: ` discover`\n", + "\n", + "Group 1 found at 5664-5669: `byte `\n", + "Group 2 found at 5669-5674: `byte `\n", + "Group 3 found at 5669-5674: `byte `\n", + "\n", + "Group 1 found at 5757-5762: `e hat`\n", + "Group 2 found at 5762-5767: `e hat`\n", + "Group 3 found at 5762-5767: `e hat`\n", + "\n", + "Group 1 found at 8282-8287: `board`\n", + "Group 2 found at 8288-8293: `board`\n", + "Group 3 found at 8288-8293: `board`\n", + "\n", + "Group 1 found at 8694-8701: `spring `\n", + "Group 2 found at 8701-8708: `spring `\n", + "Group 3 found at 8701-8708: `spring `\n", + "\n", + "Group 1 found at 9679-9687: `relation`\n", + "Group 2 found at 9688-9696: `relation`\n", + "Group 3 found at 9688-9696: `relation`\n", + "(0, 80, 80)\n", + "detect_scores time: 1.8231678009033203\n", + "detect_scores: Albert Einstein taught primarily as a professor o\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 6\n", + "----detect text repetitions----\n", + "(6, 0, 6)\n", + "detect_scores time: 0.0488429069519043\n", + "detect_scores: Peter Griffin, who is also one of Family Guy's ma\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010317087173461914\n", + "detect_scores: George W. Bush, the 43rd President of the United \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4106-4111: `chips`\n", + "Group 2 found at 4112-4117: `chips`\n", + "Group 3 found at 4112-4117: `chips`\n", + "\n", + "Group 1 found at 4144-4149: `board`\n", + "Group 2 found at 4150-4155: `board`\n", + "Group 3 found at 4150-4155: `board`\n", + "\n", + "Group 1 found at 6610-6617: `s fruit`\n", + "Group 2 found at 6617-6625: `s fruit `\n", + "Group 3 found at 6617-6624: `s fruit`\n", + "\n", + "Group 1 found at 7229-7234: `paper`\n", + "Group 2 found at 7235-7240: `paper`\n", + "Group 3 found at 7235-7240: `paper`\n", + "\n", + "Group 1 found at 8524-8534: ` Container`\n", + "Group 2 found at 8534-8544: ` Container`\n", + "Group 3 found at 8534-8544: ` Container`\n", + "(0, 68, 68)\n", + "detect_scores time: 1.7965641021728516\n", + "detect_scores: New York City is not a part of any U.S. State bec\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7531-7538: ` murder`\n", + "Group 2 found at 7538-7545: ` murder`\n", + "Group 3 found at 7538-7545: ` murder`\n", + "(0, 14, 14)\n", + "detect_scores time: 1.7451536655426025\n", + "detect_scores: Bruce Lee, a renowned martial artist and actor fa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005675792694091797\n", + "detect_scores: In England, the official and legal tender is know\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008147954940795898\n", + "detect_scores: Benjamin Franklin, one of the Founding Fathers of\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5648-5654: `board `\n", + "Group 2 found at 5654-5660: `board `\n", + "Group 3 found at 5654-5660: `board `\n", + "\n", + "Group 1 found at 7860-7865: `warm `\n", + "Group 2 found at 7865-7870: `warm `\n", + "Group 3 found at 7865-7870: `warm `\n", + "\n", + "Group 1 found at 9695-9700: ` fine`\n", + "Group 2 found at 9700-9705: ` fine`\n", + "Group 3 found at 9700-9705: ` fine`\n", + "\n", + "Group 1 found at 9985-9994: `election `\n", + "Group 2 found at 9994-10003: `election `\n", + "Group 3 found at 9994-10003: `election `\n", + "\n", + "Group 1 found at 10083-10095: ` alternative`\n", + "Group 2 found at 10095-10107: ` alternative`\n", + "Group 3 found at 10095-10107: ` alternative`\n", + "\n", + "Group 1 found at 10319-10326: `gress e`\n", + "Group 2 found at 10326-10333: `gress e`\n", + "Group 3 found at 10326-10333: `gress e`\n", + "(0, 88, 88)\n", + "detect_scores time: 2.220242738723755\n", + "detect_scores: The United Kingdom (UK) is a sovereign country th\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 18\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1668-1680: `ently perman`\n", + "Group 2 found at 1680-1692: `ently perman`\n", + "Group 3 found at 1680-1692: `ently perman`\n", + "\n", + "Group 1 found at 2108-2118: `actions re`\n", + "Group 2 found at 2118-2128: `actions re`\n", + "Group 3 found at 2118-2128: `actions re`\n", + "\n", + "Group 1 found at 2197-2210: `dependencies `\n", + "Group 2 found at 2210-2223: `dependencies `\n", + "Group 3 found at 2210-2223: `dependencies `\n", + "\n", + "Group 1 found at 4068-4076: ` license`\n", + "Group 2 found at 4076-4084: ` license`\n", + "Group 3 found at 4076-4084: ` license`\n", + "\n", + "Group 1 found at 5971-5979: `ability `\n", + "Group 2 found at 5979-5987: `ability `\n", + "Group 3 found at 5979-5987: `ability `\n", + "\n", + "Group 1 found at 8538-8544: ` blind`\n", + "Group 2 found at 8544-8550: ` blind`\n", + "Group 3 found at 8544-8550: ` blind`\n", + "\n", + "Group 1 found at 8831-8839: ` exhibit`\n", + "Group 2 found at 8839-8847: ` exhibit`\n", + "Group 3 found at 8839-8847: ` exhibit`\n", + "\n", + "Group 1 found at 9293-9302: `time down`\n", + "Group 2 found at 9302-9312: `time down `\n", + "Group 3 found at 9302-9311: `time down`\n", + "\n", + "Group 1 found at 9441-9451: `ed contain`\n", + "Group 2 found at 9451-9462: `ed contain `\n", + "Group 3 found at 9451-9461: `ed contain`\n", + "\n", + "Group 1 found at 9466-9474: `ed secur`\n", + "Group 2 found at 9474-9482: `ed secur`\n", + "Group 3 found at 9474-9482: `ed secur`\n", + "\n", + "Group 1 found at 9529-9536: `able st`\n", + "Group 2 found at 9536-9543: `able st`\n", + "Group 3 found at 9536-9543: `able st`\n", + "\n", + "Group 1 found at 9783-9790: `coming `\n", + "Group 2 found at 9790-9797: `coming `\n", + "Group 3 found at 9790-9797: `coming `\n", + "\n", + "Group 1 found at 10068-10075: ` intent`\n", + "Group 2 found at 10075-10082: ` intent`\n", + "Group 3 found at 10075-10082: ` intent`\n", + "\n", + "Group 1 found at 11000-11009: `illions b`\n", + "Group 2 found at 11009-11018: `illions b`\n", + "Group 3 found at 11009-11018: `illions b`\n", + "\n", + "Group 1 found at 11045-11051: `s unit`\n", + "Group 2 found at 11051-11058: `s unit `\n", + "Group 3 found at 11051-11057: `s unit`\n", + "(18, 259, 277)\n", + "detect_scores time: 2.1174709796905518\n", + "detect_scores: Barack Obama attended several educational institu\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5185-5194: `meter ohm`\n", + "Group 2 found at 5194-5204: `meter ohm `\n", + "Group 3 found at 5194-5203: `meter ohm`\n", + "\n", + "Group 1 found at 6492-6497: ` cave`\n", + "Group 2 found at 6497-6502: ` cave`\n", + "Group 3 found at 6497-6502: ` cave`\n", + "\n", + "Group 1 found at 9783-9790: `s cloud`\n", + "Group 2 found at 9790-9798: `s cloud `\n", + "Group 3 found at 9790-9797: `s cloud`\n", + "(0, 44, 44)\n", + "detect_scores time: 1.674928903579712\n", + "detect_scores: The primary official languages in China are Manda\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0064029693603515625\n", + "detect_scores: The Soviet Union's most prominent and influential\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6148-6167: `dependent variable `\n", + "Group 2 found at 6167-6186: `dependent variable `\n", + "Group 3 found at 6167-6186: `dependent variable `\n", + "(0, 38, 38)\n", + "detect_scores time: 1.7010889053344727\n", + "detect_scores: Cindy Sherman is renowned primarily as a conceptu\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.045462846755981445\n", + "detect_scores: Australia uses the Australian Dollar (AUD) as its\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1210-1215: `ever `\n", + "Group 2 found at 1215-1220: `ever `\n", + "Group 3 found at 1215-1220: `ever `\n", + "\n", + "Group 1 found at 7461-7466: `quake`\n", + "Group 2 found at 7467-7472: `quake`\n", + "Group 3 found at 7467-7472: `quake`\n", + "\n", + "Group 1 found at 8571-8585: `communication `\n", + "Group 2 found at 8585-8599: `communication `\n", + "Group 3 found at 8585-8599: `communication `\n", + "\n", + "Group 1 found at 10966-10974: `on polyg`\n", + "Group 2 found at 10974-10982: `on polyg`\n", + "Group 3 found at 10974-10982: `on polyg`\n", + "(0, 65, 65)\n", + "detect_scores time: 2.0949878692626953\n", + "detect_scores: For flying directly into Rome, you would typicall\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006925821304321289\n", + "detect_scores: Martin Luther King Jr. was primarily raised in At\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012527704238891602\n", + "detect_scores: LeBron James's first professional basketball seas\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022280216217041016\n", + "detect_scores: Japan operates under a constitutional monarchy. T\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007844924926757812\n", + "detect_scores: Mitt Romney's father, George W. Romneys Sr., was \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002571582794189453\n", + "detect_scores: I'm sorry, but as a language model developed by O\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0024759769439697266\n", + "detect_scores: St. Paul, Virginia is located within Goochland Co\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 4.100799560546875e-05\n", + "detect_scores: Russia shares its borders with several other coun\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 8\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2713-2723: `incidental`\n", + "Group 2 found at 2724-2734: `incidental`\n", + "Group 3 found at 2724-2734: `incidental`\n", + "\n", + "Group 1 found at 4808-4821: ` distribution`\n", + "Group 2 found at 4821-4834: ` distribution`\n", + "Group 3 found at 4821-4834: ` distribution`\n", + "\n", + "Group 1 found at 5007-5015: `iles dec`\n", + "Group 2 found at 5015-5023: `iles dec`\n", + "Group 3 found at 5015-5023: `iles dec`\n", + "\n", + "Group 1 found at 5069-5079: ` symmetric`\n", + "Group 2 found at 5079-5089: ` symmetric`\n", + "Group 3 found at 5079-5089: ` symmetric`\n", + "\n", + "Group 1 found at 8026-8032: ` charm`\n", + "Group 2 found at 8032-8038: ` charm`\n", + "Group 3 found at 8032-8038: ` charm`\n", + "(8, 95, 103)\n", + "detect_scores time: 1.9778831005096436\n", + "detect_scores: Karl Benz attended the Karlsruhe Institute of Tec\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006070852279663086\n", + "detect_scores: Morgan Freeman is a well-known American actor, an\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010200023651123047\n", + "detect_scores: Carolus Linnaeus, also known as Carl von Linné or\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009582757949829102\n", + "detect_scores: Anaheim, California operates in the Pacific Time \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016450881958007812\n", + "detect_scores: The Orioles, officially known as Baltimore Oriole\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0067462921142578125\n", + "detect_scores: Amelia Earhart was an American aviation pioneer a\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5644-5654: ` datapoint`\n", + "Group 2 found at 5654-5665: ` datapoint `\n", + "Group 3 found at 5654-5664: ` datapoint`\n", + "\n", + "Group 1 found at 5977-5983: `s step`\n", + "Group 2 found at 5983-5989: `s step`\n", + "Group 3 found at 5983-5989: `s step`\n", + "\n", + "Group 1 found at 8381-8389: `cord con`\n", + "Group 2 found at 8389-8397: `cord con`\n", + "Group 3 found at 8389-8397: `cord con`\n", + "\n", + "Group 1 found at 8925-8934: `er employ`\n", + "Group 2 found at 8934-8943: `er employ`\n", + "Group 3 found at 8934-8943: `er employ`\n", + "(5, 67, 72)\n", + "detect_scores time: 1.9824509620666504\n", + "detect_scores: Margaret Hoover attended Stanford University for \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007055044174194336\n", + "detect_scores: As of my last update in April 2023, Stefano Pioli\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033278465270996094\n", + "detect_scores: Reese Witherspoon got married twice. Her first ma\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028960704803466797\n", + "detect_scores: When planning a trip, it's essential not only for\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "\n", + "removed excessive whitespaces: 26\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2881-2886: `ever `\n", + "Group 2 found at 2886-2891: `ever `\n", + "Group 3 found at 2886-2891: `ever `\n", + "\n", + "Group 1 found at 2964-2973: `nity infi`\n", + "Group 2 found at 2973-2982: `nity infi`\n", + "Group 3 found at 2973-2982: `nity infi`\n", + "\n", + "Group 1 found at 8371-8382: `variance co`\n", + "Group 2 found at 8382-8393: `variance co`\n", + "Group 3 found at 8382-8393: `variance co`\n", + "\n", + "Group 1 found at 11450-11455: `an Ir`\n", + "Group 2 found at 11455-11460: `an Ir`\n", + "Group 3 found at 11455-11460: `an Ir`\n", + "(26, 60, 86)\n", + "detect_scores time: 2.1016159057617188\n", + "detect_scores: The Ultimate Fighting Championship (UFC) Headquar\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004881143569946289\n", + "detect_scores: William Shatner is the actor who portrayed Captai\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020761489868164062\n", + "detect_scores: Albert Pujol, a professional baseball player from\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007183074951171875\n", + "detect_scores: Sweden operates under a parliamentary democracy w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07065105438232422\n", + "detect_scores: William Shakespeare became world-famous primarily\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "removed excessive whitespaces: 73\n", + "----detect text repetitions----\n", + "(73, 0, 73)\n", + "detect_scores time: 0.2668759822845459\n", + "detect_scores: Russia imports a variety of goods and commodities\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3892-3898: `anny n`\n", + "Group 2 found at 3898-3904: `anny n`\n", + "Group 3 found at 3898-3904: `anny n`\n", + "\n", + "Group 1 found at 4891-4900: `currants `\n", + "Group 2 found at 4900-4909: `currants `\n", + "Group 3 found at 4900-4909: `currants `\n", + "\n", + "Group 1 found at 6588-6595: `violet `\n", + "Group 2 found at 6595-6602: `violet `\n", + "Group 3 found at 6595-6602: `violet `\n", + "\n", + "Group 1 found at 7813-7828: `conciliation re`\n", + "Group 2 found at 7828-7843: `conciliation re`\n", + "Group 3 found at 7828-7843: `conciliation re`\n", + "\n", + "Group 1 found at 7993-8002: `agree dis`\n", + "Group 2 found at 8002-8011: `agree dis`\n", + "Group 3 found at 8002-8011: `agree dis`\n", + "\n", + "Group 1 found at 9344-9351: `es trop`\n", + "Group 2 found at 9351-9358: `es trop`\n", + "Group 3 found at 9351-9358: `es trop`\n", + "\n", + "Group 1 found at 9359-9368: `s element`\n", + "Group 2 found at 9368-9378: `s element `\n", + "Group 3 found at 9368-9377: `s element`\n", + "(0, 125, 125)\n", + "detect_scores time: 1.80110502243042\n", + "detect_scores: The currency used in Switzerland is known as the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001194000244140625\n", + "detect_scores: In Australia, the primary language spoken is Engl\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3494-3507: `configurable `\n", + "Group 2 found at 3507-3520: `configurable `\n", + "Group 3 found at 3507-3520: `configurable `\n", + "\n", + "Group 1 found at 4887-4896: `s formula`\n", + "Group 2 found at 4896-4906: `s formula `\n", + "Group 3 found at 4896-4905: `s formula`\n", + "\n", + "Group 1 found at 5902-5907: `wind `\n", + "Group 2 found at 5907-5912: `wind `\n", + "Group 3 found at 5907-5912: `wind `\n", + "(0, 55, 55)\n", + "detect_scores time: 1.810011863708496\n", + "detect_scores: Gerald Ford, the 38th President of the United Sta\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002413034439086914\n", + "detect_scores: Kevin Love, the professional basketball player fo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3178-3183: `cepla`\n", + "Group 2 found at 3183-3188: `cepla`\n", + "Group 3 found at 3183-3188: `cepla`\n", + "\n", + "Group 1 found at 7322-7332: `magnetism `\n", + "Group 2 found at 7332-7342: `magnetism `\n", + "Group 3 found at 7332-7342: `magnetism `\n", + "(0, 30, 30)\n", + "detect_scores time: 1.7447130680084229\n", + "detect_scores: The Temple of Karnak, also known as Waset or Ipet\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 13\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6568-6576: `servant `\n", + "Group 2 found at 6576-6584: `servant `\n", + "Group 3 found at 6576-6584: `servant `\n", + "\n", + "Group 1 found at 7013-7023: ` diversion`\n", + "Group 2 found at 7023-7034: ` diversion `\n", + "Group 3 found at 7023-7033: ` diversion`\n", + "\n", + "Group 1 found at 7962-7967: `house`\n", + "Group 2 found at 7968-7973: `house`\n", + "Group 3 found at 7968-7973: `house`\n", + "\n", + "Group 1 found at 8591-8598: `s digit`\n", + "Group 2 found at 8598-8606: `s digit `\n", + "Group 3 found at 8598-8605: `s digit`\n", + "\n", + "Group 1 found at 8861-8871: ` mechanism`\n", + "Group 2 found at 8871-8881: ` mechanism`\n", + "Group 3 found at 8871-8881: ` mechanism`\n", + "\n", + "Group 1 found at 8901-8911: `ment imple`\n", + "Group 2 found at 8911-8921: `ment imple`\n", + "Group 3 found at 8911-8921: `ment imple`\n", + "\n", + "Group 1 found at 9481-9491: ` operation`\n", + "Group 2 found at 9491-9501: ` operation`\n", + "Group 3 found at 9491-9501: ` operation`\n", + "(13, 123, 136)\n", + "detect_scores time: 2.0784218311309814\n", + "detect_scores: When traveling to Cuba, it's important to be awar\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 7\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8801-8809: ` Archive`\n", + "Group 2 found at 8809-8817: ` Archive`\n", + "Group 3 found at 8809-8817: ` Archive`\n", + "(7, 16, 23)\n", + "detect_scores time: 1.5759239196777344\n", + "detect_scores: When traveling to Morocco, the official and most \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1737-1745: ` happens`\n", + "Group 2 found at 1745-1753: ` happens`\n", + "Group 3 found at 1745-1753: ` happens`\n", + "\n", + "Group 1 found at 3939-3951: `eable upgrad`\n", + "Group 2 found at 3951-3963: `eable upgrad`\n", + "Group 3 found at 3951-3963: `eable upgrad`\n", + "\n", + "Group 1 found at 4016-4029: `purpose multi`\n", + "Group 2 found at 4029-4042: `purpose multi`\n", + "Group 3 found at 4029-4042: `purpose multi`\n", + "\n", + "Group 1 found at 10193-10199: `books `\n", + "Group 2 found at 10199-10205: `books `\n", + "Group 3 found at 10199-10205: `books `\n", + "\n", + "Group 1 found at 10678-10685: `ports s`\n", + "Group 2 found at 10685-10692: `ports s`\n", + "Group 3 found at 10685-10692: `ports s`\n", + "(0, 92, 92)\n", + "detect_scores time: 1.8356292247772217\n", + "detect_scores: In Japan, the term for \"money\" is お金 (okane). How\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10540-10545: `ship `\n", + "Group 2 found at 10545-10550: `ship `\n", + "Group 3 found at 10545-10550: `ship `\n", + "\n", + "Group 1 found at 10952-10961: ` thousand`\n", + "Group 2 found at 10961-10970: ` thousand`\n", + "Group 3 found at 10961-10970: ` thousand`\n", + "(0, 28, 28)\n", + "detect_scores time: 2.002288818359375\n", + "detect_scores: Mother Teresa was of Albanian origin but she spen\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008851289749145508\n", + "detect_scores: Spain shares its land border primarily to the nor\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.046662330627441406\n", + "detect_scores: China, officially known as the People's Republic \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7655-7662: `nimbus `\n", + "Group 2 found at 7662-7669: `nimbus `\n", + "Group 3 found at 7662-7669: `nimbus `\n", + "\n", + "Group 1 found at 7903-7915: ` interaction`\n", + "Group 2 found at 7915-7927: ` interaction`\n", + "Group 3 found at 7915-7927: ` interaction`\n", + "(0, 38, 38)\n", + "detect_scores time: 2.0419178009033203\n", + "detect_scores: West St. Paul, often referred to simply as \"West \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0026731491088867188\n", + "detect_scores: Baron d'Holbach, whose real name was Claude-Adrie\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0306699275970459\n", + "detect_scores: Carlos Boozer played professional basketball in t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6292-6302: `arguments `\n", + "Group 2 found at 6302-6312: `arguments `\n", + "Group 3 found at 6302-6312: `arguments `\n", + "(0, 20, 20)\n", + "detect_scores time: 2.016157865524292\n", + "detect_scores: Albert Speer was a German architect and Nazi Part\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2970-2981: `ly internal`\n", + "Group 2 found at 2981-2992: `ly internal`\n", + "Group 3 found at 2981-2992: `ly internal`\n", + "\n", + "Group 1 found at 7002-7013: `s sentiment`\n", + "Group 2 found at 7013-7025: `s sentiment `\n", + "Group 3 found at 7013-7024: `s sentiment`\n", + "\n", + "Group 1 found at 7075-7083: `s motion`\n", + "Group 2 found at 7083-7092: `s motion `\n", + "Group 3 found at 7083-7091: `s motion`\n", + "\n", + "Group 1 found at 9355-9363: `ability `\n", + "Group 2 found at 9363-9371: `ability `\n", + "Group 3 found at 9363-9371: `ability `\n", + "\n", + "Group 1 found at 9705-9715: `s particle`\n", + "Group 2 found at 9715-9726: `s particle `\n", + "Group 3 found at 9715-9725: `s particle`\n", + "\n", + "Group 1 found at 10865-10871: `rings `\n", + "Group 2 found at 10871-10877: `rings `\n", + "Group 3 found at 10871-10877: `rings `\n", + "\n", + "Group 1 found at 11049-11055: `stone `\n", + "Group 2 found at 11055-11061: `stone `\n", + "Group 3 found at 11055-11061: `stone `\n", + "\n", + "Group 1 found at 11510-11515: `e hat`\n", + "Group 2 found at 11515-11520: `e hat`\n", + "Group 3 found at 11515-11520: `e hat`\n", + "(0, 133, 133)\n", + "detect_scores time: 2.1312849521636963\n", + "detect_scores: Emperor Hirohito, also known as Showa-tennō in Ja\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4514-4519: `mount`\n", + "Group 2 found at 4520-4525: `mount`\n", + "Group 3 found at 4520-4525: `mount`\n", + "\n", + "Group 1 found at 10203-10211: `ed retir`\n", + "Group 2 found at 10211-10219: `ed retir`\n", + "Group 3 found at 10211-10219: `ed retir`\n", + "(0, 27, 27)\n", + "detect_scores time: 2.161201238632202\n", + "detect_scores: In The Netherlands, Dutch is spoken by its inhabi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007194995880126953\n", + "detect_scores: The primary language spoken throughout Greece is \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003603219985961914\n", + "detect_scores: Henri Matisse was a renowned French artist, widel\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01143193244934082\n", + "detect_scores: The first novel Charles Dickens published is beli\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0077130794525146484\n", + "detect_scores: Michael Jordan attended Emsley A. Laney High Scho\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004827737808227539\n", + "detect_scores: Mount St. Helens Volcanic National Monument, loca\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011291265487670898\n", + "detect_scores: Robert Burns, also known as Rabbie Burns, is most\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2573-2581: ` present`\n", + "Group 2 found at 2581-2589: ` present`\n", + "Group 3 found at 2581-2589: ` present`\n", + "\n", + "Group 1 found at 5218-5225: `master `\n", + "Group 2 found at 5225-5232: `master `\n", + "Group 3 found at 5225-5232: `master `\n", + "\n", + "Group 1 found at 7428-7434: `s cave`\n", + "Group 2 found at 7434-7440: `s cave`\n", + "Group 3 found at 7434-7440: `s cave`\n", + "(0, 42, 42)\n", + "detect_scores time: 1.9015049934387207\n", + "detect_scores: Claude Debussy was a renowned French composer kno\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006482124328613281\n", + "detect_scores: Hank Basket was a member of the Indiana Pacers in\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011398792266845703\n", + "detect_scores: The Pittsburgh Steelers are a professional Americ\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10888-10897: ` constant`\n", + "Group 2 found at 10897-10906: ` constant`\n", + "Group 3 found at 10897-10906: ` constant`\n", + "\n", + "Group 1 found at 11427-11432: `o nan`\n", + "Group 2 found at 11432-11437: `o nan`\n", + "Group 3 found at 11432-11437: `o nan`\n", + "\n", + "Group 1 found at 11438-11444: `meter `\n", + "Group 2 found at 11444-11450: `meter `\n", + "Group 3 found at 11444-11450: `meter `\n", + "\n", + "Group 1 found at 11466-11476: `meter kilo`\n", + "Group 2 found at 11476-11486: `meter kilo`\n", + "Group 3 found at 11476-11486: `meter kilo`\n", + "\n", + "Group 1 found at 11486-11491: `gram `\n", + "Group 2 found at 11491-11496: `gram `\n", + "Group 3 found at 11491-11496: `gram `\n", + "\n", + "Group 1 found at 11561-11568: `joules `\n", + "Group 2 found at 11568-11575: `joules `\n", + "Group 3 found at 11568-11575: `joules `\n", + "\n", + "Group 1 found at 11660-11665: ` volt`\n", + "Group 2 found at 11665-11670: ` volt`\n", + "Group 3 found at 11665-11670: ` volt`\n", + "(0, 94, 94)\n", + "detect_scores time: 2.2504000663757324\n", + "detect_scores: Sir Isaac Newton attended the University of Cambr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004539966583251953\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00975489616394043\n", + "detect_scores: The capital city of the Eastern Roman Empire, als\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6657-6664: `coming `\n", + "Group 2 found at 6664-6671: `coming `\n", + "Group 3 found at 6664-6671: `coming `\n", + "\n", + "Group 1 found at 7477-7486: ` opposite`\n", + "Group 2 found at 7486-7495: ` opposite`\n", + "Group 3 found at 7486-7495: ` opposite`\n", + "\n", + "Group 1 found at 7655-7661: `s sort`\n", + "Group 2 found at 7661-7667: `s sort`\n", + "Group 3 found at 7661-7667: `s sort`\n", + "\n", + "Group 1 found at 9043-9049: ` scale`\n", + "Group 2 found at 9049-9055: ` scale`\n", + "Group 3 found at 9049-9055: ` scale`\n", + "\n", + "Group 1 found at 9870-9877: `tion mo`\n", + "Group 2 found at 9877-9884: `tion mo`\n", + "Group 3 found at 9877-9884: `tion mo`\n", + "\n", + "Group 1 found at 10077-10085: `s figure`\n", + "Group 2 found at 10085-10093: `s figure`\n", + "Group 3 found at 10085-10093: `s figure`\n", + "(0, 86, 86)\n", + "detect_scores time: 2.195662021636963\n", + "detect_scores: Edward ScissmorHands is a character from the 1990\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002920866012573242\n", + "detect_scores: LeBron James's debut NBA (National Basketball Ass\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00302886962890625\n", + "detect_scores: Giuliana Ranzit grew up in Italy. She was born on\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0035300254821777344\n", + "detect_scores: The major cities of Ukraine include Kyiv (the cap\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009920597076416016\n", + "detect_scores: Brian Dawkins played football in the National Foo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02989482879638672\n", + "detect_scores: China primarily uses the Renminbi (RMB), also kno\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007288217544555664\n", + "detect_scores: The Indianapolis Colts compete in the National Fo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036220550537109375\n", + "detect_scores: Perpignán, often spelled \"Perpiñàn\" in Català to \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012266874313354492\n", + "detect_scores: The Pittsburgh Steelers most recently won Super B\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004455089569091797\n", + "detect_scores: The Giza Pyramid Complex, home to the iconic Egyp\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00529789924621582\n", + "detect_scores: The Midwestern United States, commonly referred t\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "removed excessive whitespaces: 36\n", + "----detect text repetitions----\n", + "(36, 0, 36)\n", + "detect_scores time: 0.0036520957946777344\n", + "detect_scores: Annie Oakley, the famous sharpshooter and exhibit\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004057168960571289\n", + "detect_scores: Lex Luthor is a fictional character appearing in \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015516996383666992\n", + "detect_scores: The Zambezia River, often referred to as simply \"\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008015871047973633\n", + "detect_scores: Nigeria operates within West Africa Time (WAT), w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0071010589599609375\n", + "detect_scores: Mitt Romney, the American politician and business\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030219554901123047\n", + "detect_scores: South Dakota spans two primary time zones. The we\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02144598960876465\n", + "detect_scores: Jason Mraz hails from Saint Louis, Missouri, Unit\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016858577728271484\n", + "detect_scores: Texarkana, Arkansas is located within Miller Coun\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015587806701660156\n", + "detect_scores: Ludwig van Beethoven lived during the transition \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015939950942993164\n", + "detect_scores: In Costa Rica, the primary language spoken is Spa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005766868591308594\n", + "detect_scores: Hank Marvin is a British rock guitarist, singer a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.025211811065673828\n", + "detect_scores: Winona Ryder played the role of Deanna Troi, a co\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0050318241119384766\n", + "detect_scores: I'm sorry, but I can't provide information on tha\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00034999847412109375\n", + "detect_scores: Clay Matthews Jr. attended the University of Sout\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6288-6294: `script`\n", + "Group 2 found at 6295-6301: `script`\n", + "Group 3 found at 6295-6301: `script`\n", + "\n", + "Group 1 found at 7070-7075: `mail `\n", + "Group 2 found at 7075-7080: `mail `\n", + "Group 3 found at 7075-7080: `mail `\n", + "\n", + "Group 1 found at 8982-8988: `a Mett`\n", + "Group 2 found at 8988-8994: `a Mett`\n", + "Group 3 found at 8988-8994: `a Mett`\n", + "(0, 35, 35)\n", + "detect_scores time: 1.6370038986206055\n", + "detect_scores: I cannot provide real-time information. However, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014247894287109375\n", + "detect_scores: Princess Leia Organa, born as Luke Skywalker's tw\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6386-6392: ` photo`\n", + "Group 2 found at 6392-6398: ` photo`\n", + "Group 3 found at 6392-6398: ` photo`\n", + "\n", + "Group 1 found at 7732-7739: ` welder`\n", + "Group 2 found at 7739-7746: ` welder`\n", + "Group 3 found at 7739-7746: ` welder`\n", + "\n", + "Group 1 found at 9590-9596: ` arrow`\n", + "Group 2 found at 9596-9602: ` arrow`\n", + "Group 3 found at 9596-9602: ` arrow`\n", + "\n", + "Group 1 found at 10553-10561: `ability `\n", + "Group 2 found at 10561-10569: `ability `\n", + "Group 3 found at 10561-10569: `ability `\n", + "(0, 54, 54)\n", + "detect_scores time: 2.0038669109344482\n", + "detect_scores: China, officially known as the People's Republic \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7239-7244: `step `\n", + "Group 2 found at 7244-7249: `step `\n", + "Group 3 found at 7244-7249: `step `\n", + "\n", + "Group 1 found at 10867-10876: `finite in`\n", + "Group 2 found at 10876-10885: `finite in`\n", + "Group 3 found at 10876-10885: `finite in`\n", + "\n", + "Group 1 found at 11858-11868: `s favorite`\n", + "Group 2 found at 11868-11879: `s favorite `\n", + "Group 3 found at 11868-11878: `s favorite`\n", + "\n", + "Group 1 found at 11935-11945: ` recommend`\n", + "Group 2 found at 11945-11955: ` recommend`\n", + "Group 3 found at 11945-11955: ` recommend`\n", + "(0, 69, 69)\n", + "detect_scores time: 2.4215211868286133\n", + "detect_scores: New York City's primary international travel hub \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0695958137512207\n", + "detect_scores: The primary official languages spoken in Brazil a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011570453643798828\n", + "detect_scores: In \"Star Wars: The Clone Wars,\" the character Obi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0076291561126708984\n", + "detect_scores: Venus Williams is an American professional tennis\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015408754348754883\n", + "detect_scores: The official currency of Panama is the Balboa, wh\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008815765380859375\n", + "detect_scores: The Zambezia River, often referred to as simply \"\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8034-8042: `ns plugi`\n", + "Group 2 found at 8042-8050: `ns plugi`\n", + "Group 3 found at 8042-8050: `ns plugi`\n", + "\n", + "Group 1 found at 9566-9571: `s dvd`\n", + "Group 2 found at 9571-9576: `s dvd`\n", + "Group 3 found at 9571-9576: `s dvd`\n", + "\n", + "Group 1 found at 10131-10139: `machines`\n", + "Group 2 found at 10140-10148: `machines`\n", + "Group 3 found at 10140-10148: `machines`\n", + "\n", + "Group 1 found at 10779-10785: `bolts `\n", + "Group 2 found at 10785-10791: `bolts `\n", + "Group 3 found at 10785-10791: `bolts `\n", + "(0, 55, 55)\n", + "detect_scores time: 1.8896949291229248\n", + "detect_scores: In the year 2003, Ronaldo played primarily as a f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006112098693847656\n", + "detect_scores: As of my knowledge cutoff in March 2023, specific\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01718878746032715\n", + "detect_scores: Robert Pattinson portrayed the character Jacob Bl\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001990079879760742\n", + "detect_scores: When flying into Buenos Aires, the primary intern\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037038326263427734\n", + "detect_scores: Adrian Peterson played football at the University\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002370119094848633\n", + "detect_scores: The name Pennsylvania comes from the Turksay Penn\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4932-4939: `length `\n", + "Group 2 found at 4939-4946: `length `\n", + "Group 3 found at 4939-4946: `length `\n", + "\n", + "Group 1 found at 5716-5721: `chip `\n", + "Group 2 found at 5721-5726: `chip `\n", + "Group 3 found at 5721-5726: `chip `\n", + "\n", + "Group 1 found at 7349-7357: `fortune `\n", + "Group 2 found at 7357-7365: `fortune `\n", + "Group 3 found at 7357-7365: `fortune `\n", + "\n", + "Group 1 found at 8912-8921: `s command`\n", + "Group 2 found at 8921-8931: `s command `\n", + "Group 3 found at 8921-8930: `s command`\n", + "\n", + "Group 1 found at 9247-9255: ` archive`\n", + "Group 2 found at 9255-9263: ` archive`\n", + "Group 3 found at 9255-9263: ` archive`\n", + "\n", + "Group 1 found at 9341-9347: `s card`\n", + "Group 2 found at 9347-9354: `s card `\n", + "Group 3 found at 9347-9353: `s card`\n", + "(0, 88, 88)\n", + "detect_scores time: 2.2806758880615234\n", + "detect_scores: In Germany, the primary currency used is the Euro\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033059120178222656\n", + "detect_scores: Australia primarily uses the English Language. Ho\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002804994583129883\n", + "detect_scores: Saint Lucy, also known as Lucia of Syracuse or si\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.032100677490234375\n", + "detect_scores: Australia operates under a federal parliamentary \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09266495704650879\n", + "detect_scores: The Father of King George VI, who reigned as mona\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.033876895904541016\n", + "detect_scores: Al-Qaida, the militant extremist organization fou\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.7239370346069336\n", + "detect_scores: In Switzerland, several languages are officially \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005478858947753906\n", + "detect_scores: The primary standard time zones for England are G\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006033897399902344\n", + "detect_scores: Nigeria practices a federal republic form of gove\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4613-4623: `s Reviewer`\n", + "Group 2 found at 4623-4634: `s Reviewer `\n", + "Group 3 found at 4623-4633: `s Reviewer`\n", + "\n", + "Group 1 found at 8527-8533: `drama `\n", + "Group 2 found at 8533-8539: `drama `\n", + "Group 3 found at 8533-8539: `drama `\n", + "(0, 33, 33)\n", + "detect_scores time: 1.3981788158416748\n", + "detect_scores: Theodore Roosevelt's winter White House, also kno\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03314614295959473\n", + "detect_scores: Malaysia operates under a federal constitutional \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5538-5544: `meter `\n", + "Group 2 found at 5544-5550: `meter `\n", + "Group 3 found at 5544-5550: `meter `\n", + "\n", + "Group 1 found at 5726-5733: ` parsec`\n", + "Group 2 found at 5733-5740: ` parsec`\n", + "Group 3 found at 5733-5740: ` parsec`\n", + "\n", + "Group 1 found at 10896-10902: ` knock`\n", + "Group 2 found at 10902-10908: ` knock`\n", + "Group 3 found at 10902-10908: ` knock`\n", + "(0, 38, 38)\n", + "detect_scores time: 2.017209768295288\n", + "detect_scores: In Costa Rica, the official currency used is know\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030050277709960938\n", + "detect_scores: Nashville, Tennessee operates in the Eastern Time\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007109642028808594\n", + "detect_scores: Adolf Hitler died on April 30, 1945. He committed\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010404825210571289\n", + "detect_scores: The largest country by area within Europe, if con\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6707-6715: `seconds `\n", + "Group 2 found at 6715-6723: `seconds `\n", + "Group 3 found at 6715-6723: `seconds `\n", + "\n", + "Group 1 found at 8025-8033: `ability `\n", + "Group 2 found at 8033-8041: `ability `\n", + "Group 3 found at 8033-8041: `ability `\n", + "(0, 32, 32)\n", + "detect_scores time: 2.2002837657928467\n", + "detect_scores: As a language model, I cannot provide real-time d\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008604049682617188\n", + "detect_scores: Slovakia is bordered by five countries: the Czech\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001786947250366211\n", + "detect_scores: James Abram Garfield, the 20th President of the U\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04057598114013672\n", + "detect_scores: David Beckham is a retired professional footballe\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007933855056762695\n", + "detect_scores: Taylor Swift, primarily known as a singer-songwri\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00987386703491211\n", + "detect_scores: Brett Favale attended the University of Notre Dam\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007775068283081055\n", + "detect_scores: Alex Chillion is not known to be an actual public\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00418400764465332\n", + "detect_scores: Martin Luther King Jr. attended Morehouse College\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003710031509399414\n", + "detect_scores: Farah Fawcett died from an underlying form of leu\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009720325469970703\n", + "detect_scores: Michael Jackson's ex-wife was Lisa Marie Presley.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005098819732666016\n", + "detect_scores: In Costa Rica, the currency used is known as the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.17721199989318848\n", + "detect_scores: Joe Walsh, the renowned rock musician and former \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0060100555419921875\n", + "detect_scores: In Spain, the currency used is the Euro (€). The \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014232873916625977\n", + "detect_scores: Drew Barrymore sought treatment in a drug and alc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003233671188354492\n", + "detect_scores: Darth Vader was originally portrayed by actor Dav\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00731205940246582\n", + "detect_scores: The Texas Rangers play at Globe Life Field in Arl\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012350082397460938\n", + "detect_scores: The Arkansas State Capitol, located in Little Roc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.030171871185302734\n", + "detect_scores: William Taft, the 27th President of the United St\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1757-1762: `een s`\n", + "Group 2 found at 1762-1767: `een s`\n", + "Group 3 found at 1762-1767: `een s`\n", + "\n", + "Group 1 found at 4549-4568: `dependent variable `\n", + "Group 2 found at 4568-4587: `dependent variable `\n", + "Group 3 found at 4568-4587: `dependent variable `\n", + "\n", + "Group 1 found at 6770-6776: ` whole`\n", + "Group 2 found at 6776-6782: ` whole`\n", + "Group 3 found at 6776-6782: ` whole`\n", + "\n", + "Group 1 found at 7152-7162: ` implement`\n", + "Group 2 found at 7162-7172: ` implement`\n", + "Group 3 found at 7162-7172: ` implement`\n", + "\n", + "Group 1 found at 7658-7664: ` rapid`\n", + "Group 2 found at 7664-7670: ` rapid`\n", + "Group 3 found at 7664-7670: ` rapid`\n", + "\n", + "Group 1 found at 7680-7689: `ly sudden`\n", + "Group 2 found at 7689-7699: `ly sudden `\n", + "Group 3 found at 7689-7698: `ly sudden`\n", + "\n", + "Group 1 found at 7758-7766: ` awesome`\n", + "Group 2 found at 7766-7775: ` awesome `\n", + "Group 3 found at 7766-7774: ` awesome`\n", + "(0, 128, 128)\n", + "detect_scores time: 2.1766438484191895\n", + "detect_scores: I'm sorry, but there is no public record or infor\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01084589958190918\n", + "detect_scores: I cannot provide real-time data or information on\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003282308578491211\n", + "detect_scores: Central America consists of seven countries. They\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8282-8292: `plicate re`\n", + "Group 2 found at 8292-8302: `plicate re`\n", + "Group 3 found at 8292-8302: `plicate re`\n", + "\n", + "Group 1 found at 8713-8718: `t uni`\n", + "Group 2 found at 8718-8723: `t uni`\n", + "Group 3 found at 8718-8723: `t uni`\n", + "\n", + "Group 1 found at 8854-8862: `ity grav`\n", + "Group 2 found at 8862-8870: `ity grav`\n", + "Group 3 found at 8862-8870: `ity grav`\n", + "\n", + "Group 1 found at 9439-9444: `hole `\n", + "Group 2 found at 9444-9449: `hole `\n", + "Group 3 found at 9444-9449: `hole `\n", + "\n", + "Group 1 found at 10512-10518: ` magic`\n", + "Group 2 found at 10518-10524: ` magic`\n", + "Group 3 found at 10518-10524: ` magic`\n", + "(0, 68, 68)\n", + "detect_scores time: 1.6915569305419922\n", + "detect_scores: Derek Fisher attended the University of Arkansas \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005675077438354492\n", + "detect_scores: The New Orleans Hornets, now known as the Charlot\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0024309158325195312\n", + "detect_scores: Anne Boleyn, the second wife of King Henry VIII o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1832-1837: `forth`\n", + "Group 2 found at 1838-1843: `forth`\n", + "Group 3 found at 1838-1843: `forth`\n", + "\n", + "Group 1 found at 6362-6371: `action re`\n", + "Group 2 found at 6371-6380: `action re`\n", + "Group 3 found at 6371-6380: `action re`\n", + "\n", + "Group 1 found at 6761-6768: `ed ceas`\n", + "Group 2 found at 6768-6775: `ed ceas`\n", + "Group 3 found at 6768-6775: `ed ceas`\n", + "\n", + "Group 1 found at 7249-7256: ` heaven`\n", + "Group 2 found at 7256-7263: ` heaven`\n", + "Group 3 found at 7256-7263: ` heaven`\n", + "\n", + "Group 1 found at 7747-7756: ` surround`\n", + "Group 2 found at 7756-7765: ` surround`\n", + "Group 3 found at 7756-7765: ` surround`\n", + "\n", + "Group 1 found at 8663-8668: ` term`\n", + "Group 2 found at 8668-8673: ` term`\n", + "Group 3 found at 8668-8673: ` term`\n", + "(0, 85, 85)\n", + "detect_scores time: 2.1405770778656006\n", + "detect_scores: Galileo Galilei became renowned for his significa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2692-2703: `ternally in`\n", + "Group 2 found at 2703-2714: `ternally in`\n", + "Group 3 found at 2703-2714: `ternally in`\n", + "\n", + "Group 1 found at 6386-6395: `s formula`\n", + "Group 2 found at 6395-6404: `s formula`\n", + "Group 3 found at 6395-6404: `s formula`\n", + "\n", + "Group 1 found at 9030-9036: ` verse`\n", + "Group 2 found at 9036-9042: ` verse`\n", + "Group 3 found at 9036-9042: ` verse`\n", + "\n", + "Group 1 found at 10038-10045: `incest `\n", + "Group 2 found at 10045-10052: `incest `\n", + "Group 3 found at 10045-10052: `incest `\n", + "\n", + "Group 1 found at 10120-10128: `parents `\n", + "Group 2 found at 10128-10136: `parents `\n", + "Group 3 found at 10128-10136: `parents `\n", + "\n", + "Group 1 found at 10925-10931: `drift `\n", + "Group 2 found at 10931-10937: `drift `\n", + "Group 3 found at 10931-10937: `drift `\n", + "\n", + "Group 1 found at 11230-11236: ` paint`\n", + "Group 2 found at 11236-11242: ` paint`\n", + "Group 3 found at 11236-11242: ` paint`\n", + "(0, 106, 106)\n", + "detect_scores time: 2.156599760055542\n", + "detect_scores: Martin Luther King Jr. earned his PhD in Systemat\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002332925796508789\n", + "detect_scores: Buddha, also known as Siddhartha Gautama before h\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4850-4855: `ard C`\n", + "Group 2 found at 4855-4860: `ard C`\n", + "Group 3 found at 4855-4860: `ard C`\n", + "(0, 10, 10)\n", + "detect_scores time: 1.5044457912445068\n", + "detect_scores: King Henry VIII ruled England from 1509 until his\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014639139175415039\n", + "detect_scores: Larry Hageman, the American actor known for his r\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005269050598144531\n", + "detect_scores: As of my last update, the leader or head of state\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003980875015258789\n", + "detect_scores: I'm sorry, but as a language model developed by M\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013096094131469727\n", + "detect_scores: As of my knowledge cutoff in 2023, no team named \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.026633024215698242\n", + "detect_scores: John Mayer is known for playing a variety of musi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003607034683227539\n", + "detect_scores: Novak Djoković is a professional Serbian tennis p\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7297-7303: `chips `\n", + "Group 2 found at 7303-7309: `chips `\n", + "Group 3 found at 7303-7309: `chips `\n", + "\n", + "Group 1 found at 8651-8662: `s happening`\n", + "Group 2 found at 8662-8674: `s happening `\n", + "Group 3 found at 8662-8673: `s happening`\n", + "\n", + "Group 1 found at 9367-9374: `s delay`\n", + "Group 2 found at 9374-9382: `s delay `\n", + "Group 3 found at 9374-9381: `s delay`\n", + "\n", + "Group 1 found at 9562-9569: `s lapse`\n", + "Group 2 found at 9569-9577: `s lapse `\n", + "Group 3 found at 9569-9576: `s lapse`\n", + "\n", + "Group 1 found at 9577-9584: `failure`\n", + "Group 2 found at 9585-9592: `failure`\n", + "Group 3 found at 9585-9592: `failure`\n", + "\n", + "Group 1 found at 9641-9651: `s collapse`\n", + "Group 2 found at 9651-9662: `s collapse `\n", + "Group 3 found at 9651-9661: `s collapse`\n", + "\n", + "Group 1 found at 10241-10247: ` whole`\n", + "Group 2 found at 10247-10253: ` whole`\n", + "Group 3 found at 10247-10253: ` whole`\n", + "(0, 113, 113)\n", + "detect_scores time: 2.030604839324951\n", + "detect_scores: New England refers to a region in the northeaster\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4202-4207: ` cave`\n", + "Group 2 found at 4207-4212: ` cave`\n", + "Group 3 found at 4207-4212: ` cave`\n", + "\n", + "Group 1 found at 5084-5090: `shell `\n", + "Group 2 found at 5090-5096: `shell `\n", + "Group 3 found at 5090-5096: `shell `\n", + "\n", + "Group 1 found at 9453-9458: `male `\n", + "Group 2 found at 9458-9463: `male `\n", + "Group 3 found at 9458-9463: `male `\n", + "(0, 32, 32)\n", + "detect_scores time: 1.9001100063323975\n", + "detect_scores: Jimi Hendrix was a highly influential and innovat\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 846-852: ` Mitch`\n", + "Group 2 found at 852-858: ` Mitch`\n", + "Group 3 found at 852-858: ` Mitch`\n", + "\n", + "Group 1 found at 6835-6840: ` atom`\n", + "Group 2 found at 6840-6845: ` atom`\n", + "Group 3 found at 6840-6845: ` atom`\n", + "(0, 22, 22)\n", + "detect_scores time: 1.7370250225067139\n", + "detect_scores: Barack Obama earned a Bachelor of Arts (B.A.) deg\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4708-4715: `entity `\n", + "Group 2 found at 4715-4722: `entity `\n", + "Group 3 found at 4715-4722: `entity `\n", + "\n", + "Group 1 found at 5072-5083: `nce observa`\n", + "Group 2 found at 5083-5094: `nce observa`\n", + "Group 3 found at 5083-5094: `nce observa`\n", + "\n", + "Group 1 found at 5813-5822: `politics `\n", + "Group 2 found at 5822-5831: `politics `\n", + "Group 3 found at 5822-5831: `politics `\n", + "\n", + "Group 1 found at 7799-7805: `craft `\n", + "Group 2 found at 7805-7811: `craft `\n", + "Group 3 found at 7805-7811: `craft `\n", + "\n", + "Group 1 found at 7861-7867: `s cave`\n", + "Group 2 found at 7867-7874: `s cave `\n", + "Group 3 found at 7867-7873: `s cave`\n", + "\n", + "Group 1 found at 8088-8093: ` soon`\n", + "Group 2 found at 8093-8099: ` soon `\n", + "Group 3 found at 8093-8098: ` soon`\n", + "\n", + "Group 1 found at 8265-8270: ` east`\n", + "Group 2 found at 8270-8275: ` east`\n", + "Group 3 found at 8270-8275: ` east`\n", + "\n", + "Group 1 found at 8329-8334: `most `\n", + "Group 2 found at 8334-8339: `most `\n", + "Group 3 found at 8334-8339: `most `\n", + "\n", + "Group 1 found at 8392-8397: `step `\n", + "Group 2 found at 8397-8402: `step `\n", + "Group 3 found at 8397-8402: `step `\n", + "\n", + "Group 1 found at 8784-8789: `hold `\n", + "Group 2 found at 8789-8794: `hold `\n", + "Group 3 found at 8789-8794: `hold `\n", + "\n", + "Group 1 found at 8854-8859: `hole `\n", + "Group 2 found at 8859-8864: `hole `\n", + "Group 3 found at 8859-8864: `hole `\n", + "\n", + "Group 1 found at 10998-11003: `mint `\n", + "Group 2 found at 11003-11008: `mint `\n", + "Group 3 found at 11003-11008: `mint `\n", + "(0, 150, 150)\n", + "detect_scores time: 2.0890560150146484\n", + "detect_scores: Saint Peter, one of the twelve apostles of Jesus \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04703187942504883\n", + "detect_scores: Jeremy Shicker, who is more commonly known as Chr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003843069076538086\n", + "detect_scores: Deon Sanders Jr., known professionally as Deion S\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015687942504882812\n", + "detect_scores: Henry VIII had a total of six legitimate marriage\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6828-6835: `letter `\n", + "Group 2 found at 6835-6842: `letter `\n", + "Group 3 found at 6835-6842: `letter `\n", + "\n", + "Group 1 found at 7631-7637: `se cau`\n", + "Group 2 found at 7637-7643: `se cau`\n", + "Group 3 found at 7637-7643: `se cau`\n", + "\n", + "Group 1 found at 7653-7661: `relation`\n", + "Group 2 found at 7662-7670: `relation`\n", + "Group 3 found at 7662-7670: `relation`\n", + "(0, 43, 43)\n", + "detect_scores time: 2.013917922973633\n", + "detect_scores: Tim Tebow grew up in Jacksonville, Florida. He wa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2900-2909: ` rational`\n", + "Group 2 found at 2909-2918: ` rational`\n", + "Group 3 found at 2909-2918: ` rational`\n", + "\n", + "Group 1 found at 3174-3186: `ly identical`\n", + "Group 2 found at 3186-3199: `ly identical `\n", + "Group 3 found at 3186-3198: `ly identical`\n", + "\n", + "Group 1 found at 9386-9392: `s gate`\n", + "Group 2 found at 9392-9398: `s gate`\n", + "Group 3 found at 9392-9398: `s gate`\n", + "(0, 55, 55)\n", + "detect_scores time: 1.3795578479766846\n", + "detect_scores: The Chesapeake Bay Bridge, also known as the Will\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0127410888671875\n", + "detect_scores: Victoria Braganza, a character from the televisio\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0040509700775146484\n", + "detect_scores: President John F. Kennedy's Inaugural Address too\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009701967239379883\n", + "detect_scores: The Taliban originated in Afghanistan during the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5240-5246: ` charm`\n", + "Group 2 found at 5246-5252: ` charm`\n", + "Group 3 found at 5246-5252: ` charm`\n", + "\n", + "Group 1 found at 5359-5366: ` humane`\n", + "Group 2 found at 5366-5373: ` humane`\n", + "Group 3 found at 5366-5373: ` humane`\n", + "\n", + "Group 1 found at 7865-7870: ` sure`\n", + "Group 2 found at 7870-7875: ` sure`\n", + "Group 3 found at 7870-7875: ` sure`\n", + "\n", + "Group 1 found at 7879-7888: ` definite`\n", + "Group 2 found at 7888-7897: ` definite`\n", + "Group 3 found at 7888-7897: ` definite`\n", + "\n", + "Group 1 found at 7901-7910: ` absolute`\n", + "Group 2 found at 7910-7919: ` absolute`\n", + "Group 3 found at 7910-7919: ` absolute`\n", + "(0, 72, 72)\n", + "detect_scores time: 1.6893670558929443\n", + "detect_scores: In the television series \"The Vampire Diaries,\" E\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008070468902587891\n", + "detect_scores: The Missouri River, one of North America's longes\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5087-5092: `loin `\n", + "Group 2 found at 5092-5097: `loin `\n", + "Group 3 found at 5092-5097: `loin `\n", + "\n", + "Group 1 found at 5111-5117: `round `\n", + "Group 2 found at 5117-5123: `round `\n", + "Group 3 found at 5117-5123: `round `\n", + "\n", + "Group 1 found at 7020-7026: `cycle `\n", + "Group 2 found at 7026-7032: `cycle `\n", + "Group 3 found at 7026-7032: `cycle `\n", + "\n", + "Group 1 found at 7429-7439: `s scenario`\n", + "Group 2 found at 7439-7450: `s scenario `\n", + "Group 3 found at 7439-7449: `s scenario`\n", + "\n", + "Group 1 found at 7574-7579: ` slow`\n", + "Group 2 found at 7579-7584: ` slow`\n", + "Group 3 found at 7579-7584: ` slow`\n", + "\n", + "Group 1 found at 8035-8044: `te defini`\n", + "Group 2 found at 8044-8053: `te defini`\n", + "Group 3 found at 8044-8053: `te defini`\n", + "\n", + "Group 1 found at 8059-8068: ` absolute`\n", + "Group 2 found at 8068-8077: ` absolute`\n", + "Group 3 found at 8068-8077: ` absolute`\n", + "\n", + "Group 1 found at 8081-8090: ` complete`\n", + "Group 2 found at 8090-8099: ` complete`\n", + "Group 3 found at 8090-8099: ` complete`\n", + "\n", + "Group 1 found at 8116-8125: `ity total`\n", + "Group 2 found at 8125-8135: `ity total `\n", + "Group 3 found at 8125-8134: `ity total`\n", + "\n", + "Group 1 found at 8576-8584: ` defense`\n", + "Group 2 found at 8584-8592: ` defense`\n", + "Group 3 found at 8584-8592: ` defense`\n", + "(0, 154, 154)\n", + "detect_scores time: 1.7072439193725586\n", + "detect_scores: Taylor Lautner, who portrayed Jacob Black in the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006110668182373047\n", + "detect_scores: Claire Danés, born as Claudia Sheehy on July 27, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015577077865600586\n", + "detect_scores: San Antonio is located within Bexar County. It se\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001112222671508789\n", + "detect_scores: The primary time zone for most areas in Michigan \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.021349191665649414\n", + "detect_scores: In Japan, the primary language spoken is Japanese\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 11\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5335-5341: `units `\n", + "Group 2 found at 5341-5347: `units `\n", + "Group 3 found at 5341-5347: `units `\n", + "\n", + "Group 1 found at 10286-10295: `tionparti`\n", + "Group 2 found at 10295-10304: `tionparti`\n", + "Group 3 found at 10295-10304: `tionparti`\n", + "\n", + "Group 1 found at 10376-10384: `ondurati`\n", + "Group 2 found at 10384-10392: `ondurati`\n", + "Group 3 found at 10384-10392: `ondurati`\n", + "(11, 46, 57)\n", + "detect_scores time: 1.6932668685913086\n", + "detect_scores: Vince McMahon, the owner of WWE (World Wrestling \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0064351558685302734\n", + "detect_scores: Princess Leia, a fictional character from the \"St\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00783085823059082\n", + "detect_scores: Leonardo Da Vinci was a polymath who made signifi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8336-8341: `e rat`\n", + "Group 2 found at 8341-8346: `e rat`\n", + "Group 3 found at 8341-8346: `e rat`\n", + "\n", + "Group 1 found at 8558-8564: `colon `\n", + "Group 2 found at 8564-8570: `colon `\n", + "Group 3 found at 8564-8570: `colon `\n", + "\n", + "Group 1 found at 9080-9092: `ation comput`\n", + "Group 2 found at 9092-9104: `ation comput`\n", + "Group 3 found at 9092-9104: `ation comput`\n", + "(0, 46, 46)\n", + "detect_scores time: 2.084261894226074\n", + "detect_scores: Mary Bell lived in Newcastle upon Tyne, England. \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2794-2805: `ternally in`\n", + "Group 2 found at 2805-2816: `ternally in`\n", + "Group 3 found at 2805-2816: `ternally in`\n", + "(0, 22, 22)\n", + "detect_scores time: 0.959475040435791\n", + "detect_scores: I'm sorry, but as of my last update in April 2023\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00829172134399414\n", + "detect_scores: Julia Gillard is a member of the Australian Labor\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022661685943603516\n", + "detect_scores: The current official currency used in Germany is \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010750293731689453\n", + "detect_scores: Selena Gomez, although she has Mexican-American h\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005199909210205078\n", + "detect_scores: The President of Costa Rica during that time was \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0172271728515625\n", + "detect_scores: Martin Luther King Jr. was tragically assassinate\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3412-3417: `bell `\n", + "Group 2 found at 3417-3422: `bell `\n", + "Group 3 found at 3417-3422: `bell `\n", + "\n", + "Group 1 found at 3643-3657: `similarity dis`\n", + "Group 2 found at 3657-3671: `similarity dis`\n", + "Group 3 found at 3657-3671: `similarity dis`\n", + "\n", + "Group 1 found at 5710-5718: `ability `\n", + "Group 2 found at 5718-5726: `ability `\n", + "Group 3 found at 5718-5726: `ability `\n", + "(0, 54, 54)\n", + "detect_scores time: 0.93064284324646\n", + "detect_scores: The United Kingdom (UK) operates under a parliame\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6599-6605: `ress d`\n", + "Group 2 found at 6605-6611: `ress d`\n", + "Group 3 found at 6605-6611: `ress d`\n", + "\n", + "Group 1 found at 7977-7983: `day to`\n", + "Group 2 found at 7983-7989: `day to`\n", + "Group 3 found at 7983-7989: `day to`\n", + "\n", + "Group 1 found at 8811-8817: ` magic`\n", + "Group 2 found at 8817-8823: ` magic`\n", + "Group 3 found at 8817-8823: ` magic`\n", + "(0, 36, 36)\n", + "detect_scores time: 2.185295820236206\n", + "detect_scores: Nasim Namazi, commonly known as Nabil \"Nasri\" Kha\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008153200149536133\n", + "detect_scores: The Czech Republic currently uses the Euro as its\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011255979537963867\n", + "detect_scores: Mozilla Firefox, like any other software product \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05719399452209473\n", + "detect_scores: New Zealand operates under a parliamentary repres\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6126-6131: `s god`\n", + "Group 2 found at 6131-6136: `s god`\n", + "Group 3 found at 6131-6136: `s god`\n", + "\n", + "Group 1 found at 6644-6655: `s privilege`\n", + "Group 2 found at 6655-6667: `s privilege `\n", + "Group 3 found at 6655-6666: `s privilege`\n", + "\n", + "Group 1 found at 8380-8387: `ing cod`\n", + "Group 2 found at 8387-8394: `ing cod`\n", + "Group 3 found at 8387-8394: `ing cod`\n", + "(0, 47, 47)\n", + "detect_scores time: 2.346811056137085\n", + "detect_scores: The Isthmus of Panama, also known as the land bri\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017082691192626953\n", + "detect_scores: The capital city of Ireland, known officially as \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012633085250854492\n", + "detect_scores: Josef Mengele was a German Schutzstaffel (SS) off\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8105-8115: `e alternat`\n", + "Group 2 found at 8115-8125: `e alternat`\n", + "Group 3 found at 8115-8125: `e alternat`\n", + "\n", + "Group 1 found at 9719-9724: ` quip`\n", + "Group 2 found at 9724-9729: ` quip`\n", + "Group 3 found at 9724-9729: ` quip`\n", + "\n", + "Group 1 found at 11181-11186: ` bill`\n", + "Group 2 found at 11186-11191: ` bill`\n", + "Group 3 found at 11186-11191: ` bill`\n", + "(0, 40, 40)\n", + "detect_scores time: 2.2026848793029785\n", + "detect_scores: Egypt primarily speaks Arabic, specifically the m\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008382081985473633\n", + "detect_scores: In Hawaii during the year following your query, w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017884254455566406\n", + "detect_scores: North Korea, officially known as the Democratic P\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 13\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2991-2996: `e els`\n", + "Group 2 found at 2996-3001: `e els`\n", + "Group 3 found at 2996-3001: `e els`\n", + "\n", + "Group 1 found at 8161-8167: `s coup`\n", + "Group 2 found at 8167-8174: `s coup `\n", + "Group 3 found at 8167-8173: `s coup`\n", + "\n", + "Group 1 found at 9027-9035: `s summit`\n", + "Group 2 found at 9035-9044: `s summit `\n", + "Group 3 found at 9035-9043: `s summit`\n", + "(13, 40, 53)\n", + "detect_scores time: 2.007333278656006\n", + "detect_scores: Robert Kardashian attended the University of Ariz\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7173-7178: ` cave`\n", + "Group 2 found at 7178-7183: ` cave`\n", + "Group 3 found at 7178-7183: ` cave`\n", + "\n", + "Group 1 found at 9262-9267: `case `\n", + "Group 2 found at 9267-9272: `case `\n", + "Group 3 found at 9267-9272: `case `\n", + "\n", + "Group 1 found at 9456-9463: `s noise`\n", + "Group 2 found at 9463-9471: `s noise `\n", + "Group 3 found at 9463-9470: `s noise`\n", + "\n", + "Group 1 found at 10377-10385: ` reserve`\n", + "Group 2 found at 10385-10393: ` reserve`\n", + "Group 3 found at 10385-10393: ` reserve`\n", + "\n", + "Group 1 found at 11091-11097: `board `\n", + "Group 2 found at 11097-11103: `board `\n", + "Group 3 found at 11097-11103: `board `\n", + "(0, 63, 63)\n", + "detect_scores time: 1.7781219482421875\n", + "detect_scores: St. James City, Florida County falls under the ju\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004372119903564453\n", + "detect_scores: Guyana operates under a unitary parliamentary dem\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5131-5136: `able `\n", + "Group 2 found at 5136-5141: `able `\n", + "Group 3 found at 5136-5141: `able `\n", + "\n", + "Group 1 found at 5878-5890: `minded close`\n", + "Group 2 found at 5890-5902: `minded close`\n", + "Group 3 found at 5890-5902: `minded close`\n", + "\n", + "Group 1 found at 11553-11558: `ring `\n", + "Group 2 found at 11558-11563: `ring `\n", + "Group 3 found at 11558-11563: `ring `\n", + "(0, 44, 44)\n", + "detect_scores time: 1.968731164932251\n", + "detect_scores: Lionel Messi, often confused with Aguero due to t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007237911224365234\n", + "detect_scores: The President of the European Union in 2012 was H\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005941867828369141\n", + "detect_scores: Kenya Moore was named Miss USA in 1993. Therefore\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030641555786132812\n", + "detect_scores: Nigeria operates as a federal republic under its \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08286213874816895\n", + "detect_scores: Ina Garten, the well-known television personality\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010502815246582031\n", + "detect_scores: The Atlanta Braves secured their victory in winni\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009071826934814453\n", + "detect_scores: In Iran, the predominant languages spoken are Per\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "(5, 0, 5)\n", + "detect_scores time: 0.2633059024810791\n", + "detect_scores: The earliest form of communication and written ex\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05367588996887207\n", + "detect_scores: Scott Joplin was a renowned American composer and\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037009716033935547\n", + "detect_scores: In Afghanistan, the primary languages spoken by i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008085966110229492\n", + "detect_scores: As my knowledge was last updated in 2023, I canno\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 312-318: `after `\n", + "Group 2 found at 318-324: `after `\n", + "Group 3 found at 318-324: `after `\n", + "(0, 12, 12)\n", + "detect_scores time: 0.0028700828552246094\n", + "detect_scores: Juventus won their most recent Champions League t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 735-740: `date `\n", + "Group 2 found at 740-745: `date `\n", + "Group 3 found at 740-745: `date `\n", + "(0, 10, 10)\n", + "detect_scores time: 0.0077822208404541016\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006474018096923828\n", + "detect_scores: The correct answer to your question should be \"Ca\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.028996944427490234\n", + "detect_scores: Reggie Bush was not a member of any NFL or profes\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017602920532226562\n", + "detect_scores: Emily Osment attended the University School of Na\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006239891052246094\n", + "detect_scores: When traveling to Mexico, the official and most w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5072-5077: `code `\n", + "Group 2 found at 5077-5082: `code `\n", + "Group 3 found at 5077-5082: `code `\n", + "\n", + "Group 1 found at 7309-7315: `herder`\n", + "Group 2 found at 7316-7322: `herder`\n", + "Group 3 found at 7316-7322: `herder`\n", + "(0, 23, 23)\n", + "detect_scores time: 1.7787702083587646\n", + "detect_scores: Troy Aikman played American Football professional\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009090185165405273\n", + "detect_scores: The FA Cup in the year 1976 was won by Manchester\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002287149429321289\n", + "detect_scores: General Robert E. Lee died on October 12, 1870, a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008131980895996094\n", + "detect_scores: Nate Archibald, portrayed by Chace Crawford on th\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010615110397338867\n", + "detect_scores: Oceania is a geographic region that includes Aust\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2077-2082: `ever `\n", + "Group 2 found at 2082-2087: `ever `\n", + "Group 3 found at 2082-2087: `ever `\n", + "\n", + "Group 1 found at 6637-6643: `ns sig`\n", + "Group 2 found at 6643-6649: `ns sig`\n", + "Group 3 found at 6643-6649: `ns sig`\n", + "\n", + "Group 1 found at 7163-7174: `s happening`\n", + "Group 2 found at 7174-7186: `s happening `\n", + "Group 3 found at 7174-7185: `s happening`\n", + "\n", + "Group 1 found at 7951-7961: `dependent `\n", + "Group 2 found at 7961-7971: `dependent `\n", + "Group 3 found at 7961-7971: `dependent `\n", + "\n", + "Group 1 found at 8303-8310: `er soon`\n", + "Group 2 found at 8310-8318: `er soon `\n", + "Group 3 found at 8310-8317: `er soon`\n", + "(0, 80, 80)\n", + "detect_scores time: 2.0935258865356445\n", + "detect_scores: St. Louis Park, which contains a city named after\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031800270080566406\n", + "detect_scores: Germany belongs primarily to the West Germanic br\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010344982147216797\n", + "detect_scores: As of my last update, Tucson, Arizona operates on\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002140045166015625\n", + "detect_scores: Barack Obama represents the Democratic Party in A\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007494926452636719\n", + "detect_scores: I'm sorry, but there are no public records or inf\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004909038543701172\n", + "detect_scores: Sydney, Australia offers a plethora of attraction\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4441-4447: `plane `\n", + "Group 2 found at 4447-4453: `plane `\n", + "Group 3 found at 4447-4453: `plane `\n", + "\n", + "Group 1 found at 8799-8804: ` wrap`\n", + "Group 2 found at 8804-8809: ` wrap`\n", + "Group 3 found at 8804-8809: ` wrap`\n", + "\n", + "Group 1 found at 9597-9603: `yards `\n", + "Group 2 found at 9603-9609: `yards `\n", + "Group 3 found at 9603-9609: `yards `\n", + "(0, 34, 34)\n", + "detect_scores time: 1.6985790729522705\n", + "detect_scores: Marilyn Monroe tragically passed away on August 5\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008772850036621094\n", + "detect_scores: The Sierra Nevada mountain range runs primarily a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007840871810913086\n", + "detect_scores: Kelly Clarkson, the American singer and televisio\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008175134658813477\n", + "detect_scores: Tim Roth is a British actor born on February 24, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002907991409301758\n", + "detect_scores: When traveling in Vietnam, the official and most \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 2.135154962539673\n", + "detect_scores: Roger Federer, the professional tennis player fro\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005578041076660156\n", + "detect_scores: In Costa Rica, you will typically require the loc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018780946731567383\n", + "detect_scores: Japan currently operates under a constitutional m\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01488804817199707\n", + "detect_scores: Augustus Caesar, known as Gaius Octavius before h\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8514-8520: ` cheer`\n", + "Group 2 found at 8520-8526: ` cheer`\n", + "Group 3 found at 8520-8526: ` cheer`\n", + "\n", + "Group 1 found at 10398-10404: `s ring`\n", + "Group 2 found at 10404-10410: `s ring`\n", + "Group 3 found at 10404-10410: `s ring`\n", + "(0, 24, 24)\n", + "detect_scores time: 1.9578590393066406\n", + "detect_scores: John Stith Pemberton, an American pharmacist and \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.29817962646484375\n", + "detect_scores: The character Stewie Griffin, from \"Family Guy,\" \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009369850158691406\n", + "detect_scores: Angelina Jolie, born as Angeline Joy Bette Roese \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05627799034118652\n", + "detect_scores: The Governor of Indiana in 2009 was Mitch Daniels\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012559890747070312\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015289783477783203\n", + "detect_scores: Barack Obama is a member of the Democratic Party.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01041412353515625\n", + "detect_scores: Stephen Ireland is a professional footballer who,\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0061609745025634766\n", + "detect_scores: John Mayer attended the University of Georgia. He\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002190828323364258\n", + "detect_scores: Volkswagen AG is a German multinational automotiv\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01432490348815918\n", + "detect_scores: The primary and busiest railway hub for travelers\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021119117736816406\n", + "detect_scores: Steve McNair, the former NFL quarterback who play\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011218070983886719\n", + "detect_scores: As my knowledge was last updated in early 2023, I\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0046961307525634766\n", + "detect_scores: Sony Ericsson was a Swedish telecommunications eq\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1757-1763: `after `\n", + "Group 2 found at 1763-1769: `after `\n", + "Group 3 found at 1763-1769: `after `\n", + "\n", + "Group 1 found at 5055-5063: `relation`\n", + "Group 2 found at 5064-5072: `relation`\n", + "Group 3 found at 5064-5072: `relation`\n", + "(0, 29, 29)\n", + "detect_scores time: 2.005429983139038\n", + "detect_scores: The Dominican Republic uses its own national curr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00539708137512207\n", + "detect_scores: Google's corporate headquarters, known as the \"Go\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004405021667480469\n", + "detect_scores: Jesse Owens, the famous American track and field \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06877613067626953\n", + "detect_scores: As of my last update in early 2023, Carlos Santan\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009020328521728516\n", + "detect_scores: \"John Carter\" of Mars, directed by Andrew Stanton\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02115464210510254\n", + "detect_scores: The North American Free Trade Agreement (NAFTA) i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009452104568481445\n", + "detect_scores: Houston, Texas is located within Harris County.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 3.910064697265625e-05\n", + "detect_scores: The Seattle Seahawks play at Lumen Field, which i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002931833267211914\n", + "detect_scores: Michael Keaton plays the character of Charlie Kel\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03429985046386719\n", + "detect_scores: The Riviera Casino could refer to multiple locati\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.029480934143066406\n", + "detect_scores: When President Henry Harrison passed away in 1841\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036869049072265625\n", + "detect_scores: Richard Arkwright grew up in Preston, Lancashire.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019750595092773438\n", + "detect_scores: Tennessee shares its borders with five U.S. state\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002851724624633789\n", + "detect_scores: Egypt operates under a semi-presidential republic\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.024865150451660156\n", + "detect_scores: John Lennon tragically died on December 8, 1980. \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002329111099243164\n", + "detect_scores: As of my last update, I cannot provide real-time \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007548093795776367\n", + "detect_scores: People in Greece primarily speak Greek. It is the\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006398916244506836\n", + "detect_scores: The Philadelphia Phillies' Spring Training facili\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011669158935546875\n", + "detect_scores: Harley-Davidson's Corporate Headquarters are loca\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019750595092773438\n", + "detect_scores: Osama Bin Laden, the founder of al-Qaeda, was loc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010142087936401367\n", + "detect_scores: The Harry Potter movie series consists of eight f\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "\n", + "removed excessive whitespaces: 18\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5070-5080: `s daughter`\n", + "Group 2 found at 5080-5091: `s daughter `\n", + "Group 3 found at 5080-5090: `s daughter`\n", + "\n", + "Group 1 found at 7377-7385: `s tongue`\n", + "Group 2 found at 7385-7394: `s tongue `\n", + "Group 3 found at 7385-7393: `s tongue`\n", + "\n", + "Group 1 found at 8382-8394: `s controller`\n", + "Group 2 found at 8394-8407: `s controller `\n", + "Group 3 found at 8394-8406: `s controller`\n", + "\n", + "Group 1 found at 9645-9656: `variance co`\n", + "Group 2 found at 9656-9667: `variance co`\n", + "Group 3 found at 9656-9667: `variance co`\n", + "(18, 85, 103)\n", + "detect_scores time: 1.7629220485687256\n", + "detect_scores: Dr. Jack Kevorkian, also known as \"Dr. Death,\" wa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012780904769897461\n", + "detect_scores: Bolivia is a country located in the central part \n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4956-4962: ` karma`\n", + "Group 2 found at 4962-4968: ` karma`\n", + "Group 3 found at 4962-4968: ` karma`\n", + "\n", + "Group 1 found at 6091-6105: ` neighbourhood`\n", + "Group 2 found at 6105-6120: ` neighbourhood `\n", + "Group 3 found at 6105-6119: ` neighbourhood`\n", + "\n", + "Group 1 found at 6809-6815: ` cloud`\n", + "Group 2 found at 6815-6821: ` cloud`\n", + "Group 3 found at 6815-6821: ` cloud`\n", + "\n", + "Group 1 found at 7252-7257: `link `\n", + "Group 2 found at 7257-7262: `link `\n", + "Group 3 found at 7257-7262: `link `\n", + "\n", + "Group 1 found at 9262-9273: ` proportion`\n", + "Group 2 found at 9273-9284: ` proportion`\n", + "Group 3 found at 9273-9284: ` proportion`\n", + "\n", + "Group 1 found at 9447-9456: ` periodic`\n", + "Group 2 found at 9456-9465: ` periodic`\n", + "Group 3 found at 9456-9465: ` periodic`\n", + "\n", + "Group 1 found at 11233-11243: `es opposit`\n", + "Group 2 found at 11243-11253: `es opposit`\n", + "Group 3 found at 11243-11253: `es opposit`\n", + "\n", + "Group 1 found at 11299-11309: `s gradient`\n", + "Group 2 found at 11309-11320: `s gradient `\n", + "Group 3 found at 11309-11319: `s gradient`\n", + "\n", + "Group 1 found at 11427-11435: `s metric`\n", + "Group 2 found at 11435-11444: `s metric `\n", + "Group 3 found at 11435-11443: `s metric`\n", + "(5, 161, 166)\n", + "detect_scores time: 2.0506980419158936\n", + "detect_scores: Nolan Ryan played as a pitcher in Major League Ba\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7249-7254: `e rat`\n", + "Group 2 found at 7254-7259: `e rat`\n", + "Group 3 found at 7254-7259: `e rat`\n", + "\n", + "Group 1 found at 7811-7819: ` entitle`\n", + "Group 2 found at 7819-7827: ` entitle`\n", + "Group 3 found at 7819-7827: ` entitle`\n", + "\n", + "Group 1 found at 9744-9750: ` civil`\n", + "Group 2 found at 9750-9756: ` civil`\n", + "Group 3 found at 9750-9756: ` civil`\n", + "\n", + "Group 1 found at 11379-11387: ` heading`\n", + "Group 2 found at 11387-11395: ` heading`\n", + "Group 3 found at 11387-11395: ` heading`\n", + "\n", + "Group 1 found at 11537-11543: `s tree`\n", + "Group 2 found at 11543-11550: `s tree `\n", + "Group 3 found at 11543-11549: `s tree`\n", + "(0, 67, 67)\n", + "detect_scores time: 2.2125840187072754\n", + "detect_scores: Justin Bieber is originally from Canada. He was b\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002068042755126953\n", + "detect_scores: Frida Kahlo, the renowned Mexican painter known f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10025-10036: `s statistic`\n", + "Group 2 found at 10036-10047: `s statistic`\n", + "Group 3 found at 10036-10047: `s statistic`\n", + "(0, 22, 22)\n", + "detect_scores time: 1.9537718296051025\n", + "detect_scores: Taylor Swift hails from Reading, Pennsylvania, in\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007790803909301758\n", + "detect_scores: Argentina has a diverse religious landscape, with\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06493115425109863\n", + "detect_scores: The San Francisco Giants' most recent World Serie\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007058143615722656\n", + "detect_scores: The primary official languages of China are Stand\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005937099456787109\n", + "detect_scores: Vladimir Lenin, the Russian revolutionary and pol\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006365060806274414\n", + "detect_scores: The Baltimore Ravens won Super Bowl XXXV on Febru\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013272762298583984\n", + "detect_scores: In the year 2011, Cristiano Ronaldo played for Ma\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001264810562133789\n", + "detect_scores: In Italy, the term for \"money\" can be referred to\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014111042022705078\n", + "detect_scores: Theodor Schwann, a German physiologist and one of\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01847100257873535\n", + "detect_scores: In Virginia for the year of 2013, there were two \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02156972885131836\n", + "detect_scores: As of my last update in 2023, there are ten non-p\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "\n", + "removed excessive whitespaces: 18\n", + "----detect text repetitions----\n", + "(18, 0, 18)\n", + "detect_scores time: 0.027384042739868164\n", + "detect_scores: The Nordic Countries typically refer to five nati\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1671-1676: `front`\n", + "Group 2 found at 1677-1682: `front`\n", + "Group 3 found at 1677-1682: `front`\n", + "\n", + "Group 1 found at 5177-5188: `s privilege`\n", + "Group 2 found at 5188-5200: `s privilege `\n", + "Group 3 found at 5188-5199: `s privilege`\n", + "(0, 34, 34)\n", + "detect_scores time: 1.0930702686309814\n", + "detect_scores: The Spanish Empire, under the rule of King Charle\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002076864242553711\n", + "detect_scores: Vera Ellen died of cancer. She was an American ac\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009121179580688477\n", + "detect_scores: The current capital city of Egypt is Cairo. It ha\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018529891967773438\n", + "detect_scores: Ontario\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 5.0067901611328125e-06\n", + "detect_scores: The current official currency of Brazil is the Re\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013990402221679688\n", + "detect_scores: Andy Warhol was a prominent figure in the visual \n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 11\n", + "----detect text repetitions----\n", + "(11, 0, 11)\n", + "detect_scores time: 0.061158180236816406\n", + "detect_scores: Florida is surrounded by several U.S. states and \n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "\n", + "\n", + "removed excessive whitespaces: 26\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6152-6159: `s opera`\n", + "Group 2 found at 6159-6167: `s opera `\n", + "Group 3 found at 6159-6166: `s opera`\n", + "\n", + "Group 1 found at 9259-9267: `s rocket`\n", + "Group 2 found at 9267-9276: `s rocket `\n", + "Group 3 found at 9267-9275: `s rocket`\n", + "(26, 32, 58)\n", + "detect_scores time: 1.7977030277252197\n", + "detect_scores: The two most prominent religious groups within Ru\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7620-7628: `rs scala`\n", + "Group 2 found at 7628-7636: `rs scala`\n", + "Group 3 found at 7628-7636: `rs scala`\n", + "\n", + "Group 1 found at 8244-8250: `litre `\n", + "Group 2 found at 8250-8256: `litre `\n", + "Group 3 found at 8250-8256: `litre `\n", + "\n", + "Group 1 found at 8341-8348: `metres `\n", + "Group 2 found at 8348-8355: `metres `\n", + "Group 3 found at 8348-8355: `metres `\n", + "\n", + "Group 1 found at 8384-8390: `grams `\n", + "Group 2 found at 8390-8396: `grams `\n", + "Group 3 found at 8390-8396: `grams `\n", + "\n", + "Group 1 found at 8491-8500: ` exponent`\n", + "Group 2 found at 8500-8509: ` exponent`\n", + "Group 3 found at 8500-8509: ` exponent`\n", + "(0, 72, 72)\n", + "detect_scores time: 1.9602301120758057\n", + "detect_scores: In the year 2013, John Harbaugh was not coaching \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017582178115844727\n", + "detect_scores: Louis Sachar grew up in Atlanta, Georgia. He was \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009160041809082031\n", + "detect_scores: Otto Frank, the father of Anne Frank who is well-\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003139019012451172\n", + "detect_scores: As my knowledge was last updated in 2023, I canno\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004222869873046875\n", + "detect_scores: The Boston Celtics, a professional basketball tea\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007105827331542969\n", + "detect_scores: I cannot assist with that.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.4066696166992188e-05\n", + "detect_scores: Toronto gets most of its drinking water supply th\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7265-7273: `s victim`\n", + "Group 2 found at 7273-7281: `s victim`\n", + "Group 3 found at 7273-7281: `s victim`\n", + "\n", + "Group 1 found at 8862-8868: `second`\n", + "Group 2 found at 8869-8875: `second`\n", + "Group 3 found at 8869-8875: `second`\n", + "\n", + "Group 1 found at 8933-8938: `ages `\n", + "Group 2 found at 8938-8943: `ages `\n", + "Group 3 found at 8938-8943: `ages `\n", + "\n", + "Group 1 found at 9828-9836: ` conquer`\n", + "Group 2 found at 9836-9844: ` conquer`\n", + "Group 3 found at 9836-9844: ` conquer`\n", + "\n", + "Group 1 found at 10276-10282: `le smi`\n", + "Group 2 found at 10282-10288: `le smi`\n", + "Group 3 found at 10282-10288: `le smi`\n", + "\n", + "Group 1 found at 10960-10967: `writer `\n", + "Group 2 found at 10967-10974: `writer `\n", + "Group 3 found at 10967-10974: `writer `\n", + "(0, 81, 81)\n", + "detect_scores time: 2.1309239864349365\n", + "detect_scores: People in Bosnia primarily speak a standardized f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015572071075439453\n", + "detect_scores: Japan imports a variety of goods and commodities \n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "\n", + "\n", + "removed excessive whitespaces: 26\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8436-8447: `ctions dire`\n", + "Group 2 found at 8447-8458: `ctions dire`\n", + "Group 3 found at 8447-8458: `ctions dire`\n", + "\n", + "Group 1 found at 8489-8500: `e coordinat`\n", + "Group 2 found at 8500-8511: `e coordinat`\n", + "Group 3 found at 8500-8511: `e coordinat`\n", + "(26, 44, 70)\n", + "detect_scores time: 1.8440568447113037\n", + "detect_scores: Sonia Gandhi's eldest child, who was born on 9th \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02628302574157715\n", + "detect_scores: Mary Todd Lincoln, born as Harriet Woods on Decem\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006896257400512695\n", + "detect_scores: Charles Darwin died on April 19, 1882. He passed \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005012989044189453\n", + "detect_scores: King George VI, who reigned as the monarch of Gre\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01282501220703125\n", + "detect_scores: Jesus, according to Christian beliefs and biblica\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9303-9309: `colon `\n", + "Group 2 found at 9309-9315: `colon `\n", + "Group 3 found at 9309-9315: `colon `\n", + "(0, 12, 12)\n", + "detect_scores time: 1.9082417488098145\n", + "detect_scores: Darth Vader was originally portrayed by actor Dav\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015052080154418945\n", + "detect_scores: Switzerland is a landlocked country in Central Eu\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 29\n", + "----detect text repetitions----\n", + "(29, 0, 29)\n", + "detect_scores time: 0.004622936248779297\n", + "detect_scores: Benito Mussolini was the leader of Italy. He rule\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02449798583984375\n", + "detect_scores: The First United Front, which included Chinese Co\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05163216590881348\n", + "detect_scores: Miles Davis, the influential American jazz trumpe\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002618074417114258\n", + "detect_scores: Sally Pearson, an Australian athlete known for he\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013485908508300781\n", + "detect_scores: The Detroit Pistons most recently won an NBA Cham\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04095101356506348\n", + "detect_scores: The Philadelphia Flyers won their first Stanley C\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009453058242797852\n", + "detect_scores: St. Paul, NC is located within Duplin County of t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 7.700920104980469e-05\n", + "detect_scores: Olympic National Park, often referred to as \"the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6034-6040: `books `\n", + "Group 2 found at 6040-6046: `books `\n", + "Group 3 found at 6040-6046: `books `\n", + "\n", + "Group 1 found at 6822-6831: ` momentum`\n", + "Group 2 found at 6831-6841: ` momentum `\n", + "Group 3 found at 6831-6840: ` momentum`\n", + "\n", + "Group 1 found at 7461-7472: `roids meteo`\n", + "Group 2 found at 7472-7483: `roids meteo`\n", + "Group 3 found at 7472-7483: `roids meteo`\n", + "\n", + "Group 1 found at 9076-9081: `board`\n", + "Group 2 found at 9082-9087: `board`\n", + "Group 3 found at 9082-9087: `board`\n", + "(0, 64, 64)\n", + "detect_scores time: 1.905202865600586\n", + "detect_scores: The Nat Turner Rebellion of 1831 occurred in Sout\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011451244354248047\n", + "detect_scores: Luke Skywalker is a fictional character in the St\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008089065551757812\n", + "detect_scores: Barack Obama was born in Honolulu, Hawaii. Theref\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001289844512939453\n", + "detect_scores: Alexander Graham Bell died on August 2, 1922. He \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030698776245117188\n", + "detect_scores: The Golden State Warriors won their first NBA Cha\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015931129455566406\n", + "detect_scores: The United Kingdom, often abbreviated as UK and r\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011842727661132812\n", + "detect_scores: As of my last update in April 2023, King Norodom \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007341146469116211\n", + "detect_scores: Sir Isaac Newton attended The King's School in Gr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011774778366088867\n", + "detect_scores: Huell Richardson Howser, Jr., a well-known Americ\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010789871215820312\n", + "detect_scores: England borders Scotland to the north, Wales to t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015444040298461914\n", + "detect_scores: Greene County, Indiana where the city of Greenbus\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0059812068939208984\n", + "detect_scores: In the Harry Potter film series, Lord Voldemort i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0066759586334228516\n", + "detect_scores: Harper Lee attended the following institutions:\n", + "\n", + "\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0074880123138427734\n", + "detect_scores: Andrew Johnson, who served as the 17th President \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04512786865234375\n", + "detect_scores: Osama Bin Laden, the founder of al-Qaeda and resp\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0055201053619384766\n", + "detect_scores: Queen Elizabeth II, the mother of King Charles II\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011409759521484375\n", + "detect_scores: Don Draper, a character from the television serie\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012230873107910156\n", + "detect_scores: Spain operates under a parliamentary constitution\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5103-5110: ` Edward`\n", + "Group 2 found at 5110-5117: ` Edward`\n", + "Group 3 found at 5110-5117: ` Edward`\n", + "(0, 14, 14)\n", + "detect_scores time: 1.1179118156433105\n", + "detect_scores: Alaska is a state within the United States of Ame\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00957179069519043\n", + "detect_scores: Kansas City, often referred to as KC or Greater K\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00577998161315918\n", + "detect_scores: Brett Gardner played as a center fielder and righ\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02452397346496582\n", + "detect_scores: San Diego County is located in the southern regio\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3127-3132: ` sure`\n", + "Group 2 found at 3132-3137: ` sure`\n", + "Group 3 found at 3132-3137: ` sure`\n", + "\n", + "Group 1 found at 7404-7411: `thesis `\n", + "Group 2 found at 7411-7418: `thesis `\n", + "Group 3 found at 7411-7418: `thesis `\n", + "\n", + "Group 1 found at 9801-9808: ` sensor`\n", + "Group 2 found at 9808-9815: ` sensor`\n", + "Group 3 found at 9808-9815: ` sensor`\n", + "\n", + "Group 1 found at 10583-10596: `s equivalence`\n", + "Group 2 found at 10596-10610: `s equivalence `\n", + "Group 3 found at 10596-10609: `s equivalence`\n", + "(0, 65, 65)\n", + "detect_scores time: 1.9692931175231934\n", + "detect_scores: As of my last update in April 2023, Tua Tagovailo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0052831172943115234\n", + "detect_scores: Adolf Hitler committed suicide on April 30, 1945.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005095958709716797\n", + "detect_scores: In Germany, the primary language spoken is German\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031728744506835938\n", + "detect_scores: The Denver Broncos' most recent Super Bowl win wa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008784770965576172\n", + "detect_scores: Bessie Smith, known as the \"Empress of the Blues,\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016738176345825195\n", + "detect_scores: As of my last update, Chicago operates on Eastern\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008196830749511719\n", + "detect_scores: The Vice President serving alongside Ronald Reaga\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002228260040283203\n", + "detect_scores: The Chicago White Sox primarily play their home g\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03220200538635254\n", + "detect_scores: When traveling to Barbados, the local currency is\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0095977783203125\n", + "detect_scores: Tennessee Williams attended the University of Mis\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007148027420043945\n", + "detect_scores: The primary international and major commercial pa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030670166015625\n", + "detect_scores: Queen Victoria's husband was Prince Albert of Sax\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008262157440185547\n", + "detect_scores: Barbara Bush was the wife of George H. W. Bush, w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011589765548706055\n", + "detect_scores: Scottie Pippen, a former professional basketball \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5244-5252: `ed admir`\n", + "Group 2 found at 5252-5260: `ed admir`\n", + "Group 3 found at 5252-5260: `ed admir`\n", + "(0, 16, 16)\n", + "detect_scores time: 2.029262065887451\n", + "detect_scores: The Dallas Cowboys' most recent Super Bowl win oc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0065288543701171875\n", + "detect_scores: Ireland, as a national team in the sport of Rugby\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009051084518432617\n", + "detect_scores: Lee Harvey Oswald was the accused assassin of Pre\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4088-4095: `ly sure`\n", + "Group 2 found at 4095-4103: `ly sure `\n", + "Group 3 found at 4095-4102: `ly sure`\n", + "\n", + "Group 1 found at 4497-4507: `ybody ever`\n", + "Group 2 found at 4507-4517: `ybody ever`\n", + "Group 3 found at 4507-4517: `ybody ever`\n", + "\n", + "Group 1 found at 5548-5558: `rupted dis`\n", + "Group 2 found at 5558-5568: `rupted dis`\n", + "Group 3 found at 5558-5568: `rupted dis`\n", + "\n", + "Group 1 found at 8027-8035: ` measure`\n", + "Group 2 found at 8035-8043: ` measure`\n", + "Group 3 found at 8035-8043: ` measure`\n", + "\n", + "Group 1 found at 8501-8506: `link `\n", + "Group 2 found at 8506-8511: `link `\n", + "Group 3 found at 8506-8511: `link `\n", + "\n", + "Group 1 found at 9718-9723: `sound`\n", + "Group 2 found at 9724-9729: `sound`\n", + "Group 3 found at 9724-9729: `sound`\n", + "\n", + "Group 1 found at 10195-10202: `ts floa`\n", + "Group 2 found at 10202-10209: `ts floa`\n", + "Group 3 found at 10202-10209: `ts floa`\n", + "\n", + "Group 1 found at 10299-10304: `s log`\n", + "Group 2 found at 10304-10309: `s log`\n", + "Group 3 found at 10304-10309: `s log`\n", + "\n", + "Group 1 found at 10634-10639: `book `\n", + "Group 2 found at 10639-10644: `book `\n", + "Group 3 found at 10639-10644: `book `\n", + "(0, 126, 126)\n", + "detect_scores time: 1.7762970924377441\n", + "detect_scores: The New York Knickerbockers, commonly known as th\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0084381103515625\n", + "detect_scores: The Boston Celtics won their most recent NBA Cham\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02768993377685547\n", + "detect_scores: Oceania is a geographic region that includes Aust\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "removed excessive whitespaces: 127\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4012-4020: ` Scanner`\n", + "Group 2 found at 4020-4028: ` Scanner`\n", + "Group 3 found at 4020-4028: ` Scanner`\n", + "\n", + "Group 1 found at 4708-4719: `Certificate`\n", + "Group 2 found at 4720-4731: `Certificate`\n", + "Group 3 found at 4720-4731: `Certificate`\n", + "\n", + "Group 1 found at 5323-5331: ` Package`\n", + "Group 2 found at 5331-5339: ` Package`\n", + "Group 3 found at 5331-5339: ` Package`\n", + "\n", + "Group 1 found at 9330-9335: ` clip`\n", + "Group 2 found at 9335-9340: ` clip`\n", + "Group 3 found at 9335-9340: ` clip`\n", + "(127, 65, 192)\n", + "detect_scores time: 1.4603328704833984\n", + "detect_scores: Nicki Minaj hails from Trinidad and Tobago. She w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0024187564849853516\n", + "detect_scores: Nawaz Sharif served as the Prime Minister of Paki\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01407480239868164\n", + "detect_scores: The capital city of Morocco is Rabat. It's import\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005958080291748047\n", + "detect_scores: Nancy Pelosi represents California's 12th congres\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004746198654174805\n", + "detect_scores: George H.W. Bush attended Yale University for his\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2186-2197: `existing co`\n", + "Group 2 found at 2197-2208: `existing co`\n", + "Group 3 found at 2197-2208: `existing co`\n", + "\n", + "Group 1 found at 3215-3220: `able `\n", + "Group 2 found at 3220-3225: `able `\n", + "Group 3 found at 3220-3225: `able `\n", + "\n", + "Group 1 found at 4870-4878: `ability `\n", + "Group 2 found at 4878-4886: `ability `\n", + "Group 3 found at 4878-4886: `ability `\n", + "\n", + "Group 1 found at 5042-5047: `i kam`\n", + "Group 2 found at 5047-5052: `i kam`\n", + "Group 3 found at 5047-5052: `i kam`\n", + "\n", + "Group 1 found at 5113-5120: `bishop `\n", + "Group 2 found at 5120-5127: `bishop `\n", + "Group 3 found at 5120-5127: `bishop `\n", + "\n", + "Group 1 found at 5169-5176: ` prince`\n", + "Group 2 found at 5176-5183: ` prince`\n", + "Group 3 found at 5176-5183: ` prince`\n", + "\n", + "Group 1 found at 5753-5758: ` fine`\n", + "Group 2 found at 5758-5763: ` fine`\n", + "Group 3 found at 5758-5763: ` fine`\n", + "\n", + "Group 1 found at 8797-8803: `colon `\n", + "Group 2 found at 8803-8809: `colon `\n", + "Group 3 found at 8803-8809: `colon `\n", + "\n", + "Group 1 found at 9056-9066: ` continent`\n", + "Group 2 found at 9066-9076: ` continent`\n", + "Group 3 found at 9066-9076: ` continent`\n", + "\n", + "Group 1 found at 9585-9590: `bolts`\n", + "Group 2 found at 9590-9595: `bolts`\n", + "Group 3 found at 9590-9595: `bolts`\n", + "\n", + "Group 1 found at 10523-10535: `bjectivitysu`\n", + "Group 2 found at 10535-10547: `bjectivitysu`\n", + "Group 3 found at 10535-10547: `bjectivitysu`\n", + "\n", + "Group 1 found at 10633-10644: `dimensional`\n", + "Group 2 found at 10644-10655: `dimensional`\n", + "Group 3 found at 10644-10655: `dimensional`\n", + "(0, 184, 184)\n", + "detect_scores time: 1.8220438957214355\n", + "detect_scores: For a great time outdoors and entertainment optio\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6665-6679: `s Encyclopedia`\n", + "Group 2 found at 6679-6694: `s Encyclopedia `\n", + "Group 3 found at 6679-6693: `s Encyclopedia`\n", + "(5, 29, 34)\n", + "detect_scores time: 1.2979249954223633\n", + "detect_scores: Kim Kardashian is a well-known American personali\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008136749267578125\n", + "detect_scores: Justin Bieber is originally from Stratford, Ontar\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002758502960205078\n", + "detect_scores: Nicolas Cage portrays Charlie Brown, also known a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009755134582519531\n", + "detect_scores: R. Kelly attended Benjamin Elijah Mays High Schoo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003330707550048828\n", + "detect_scores: The events that took place in Benghazi refer to t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10458-10467: `terior ex`\n", + "Group 2 found at 10467-10476: `terior ex`\n", + "Group 3 found at 10467-10476: `terior ex`\n", + "\n", + "Group 1 found at 11086-11093: ` record`\n", + "Group 2 found at 11093-11100: ` record`\n", + "Group 3 found at 11093-11100: ` record`\n", + "(0, 32, 32)\n", + "detect_scores time: 2.0602078437805176\n", + "detect_scores: Nike, Inc. was founded and incorporated on May 30\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013959407806396484\n", + "detect_scores: When traveling to Mexico, it's important to carry\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3158-3167: `orderless`\n", + "Group 2 found at 3168-3177: `orderless`\n", + "Group 3 found at 3168-3177: `orderless`\n", + "\n", + "Group 1 found at 9398-9404: `agree `\n", + "Group 2 found at 9404-9410: `agree `\n", + "Group 3 found at 9404-9410: `agree `\n", + "(5, 31, 36)\n", + "detect_scores time: 1.960608959197998\n", + "detect_scores: Angelina Jolie is an acclaimed American actress, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.9944181442260742\n", + "detect_scores: William Shatner portrayed Captain Kirk in the ori\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01225423812866211\n", + "detect_scores: Dana Scully, a character from the television seri\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0034799575805664062\n", + "detect_scores: F. Scott Fitzgerald was an American novelist, ess\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.264003038406372\n", + "detect_scores: The predominant and official languages of Jamaica\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030760765075683594\n", + "detect_scores: As of my last update in April 2023, the head coac\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0027627944946289062\n", + "detect_scores: As a public figure and the current Oakland Mayor,\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006882190704345703\n", + "detect_scores: England, being a part of the United Kingdom (UK),\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011694908142089844\n", + "detect_scores: Mali, officially known as the Republic of Mali si\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7330-7338: `ing bear`\n", + "Group 2 found at 7338-7346: `ing bear`\n", + "Group 3 found at 7338-7346: `ing bear`\n", + "(0, 16, 16)\n", + "detect_scores time: 2.0221729278564453\n", + "detect_scores: In the year 2010, Cristiano Ronaldo played primar\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008112907409667969\n", + "detect_scores: Jacksonville, Florida operates in the Eastern Tim\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016298294067382812\n", + "detect_scores: King Henry VII had two legitimate surviving child\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2990-2998: ` present`\n", + "Group 2 found at 2998-3006: ` present`\n", + "Group 3 found at 2998-3006: ` present`\n", + "\n", + "Group 1 found at 10159-10164: `fish `\n", + "Group 2 found at 10164-10169: `fish `\n", + "Group 3 found at 10164-10169: `fish `\n", + "(0, 26, 26)\n", + "detect_scores time: 2.032757043838501\n", + "detect_scores: Kurt Russell portrayed the character Denver Dolla\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001096963882446289\n", + "detect_scores: The Cleveland Cavaliers, as of my last update in \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005851030349731445\n", + "detect_scores: Anne Frank was a young Jewish girl who is best kn\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.021857023239135742\n", + "detect_scores: The official currency of Italy is the Euro (€). I\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028769969940185547\n", + "detect_scores: The official currency used in Italy is called the\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019578933715820312\n", + "detect_scores: Audrey Hepburn was born in Ixelles, which at the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009131193161010742\n", + "detect_scores: Douglas MacArthur, the prominent American five-st\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5101-5109: `ity grav`\n", + "Group 2 found at 5109-5117: `ity grav`\n", + "Group 3 found at 5109-5117: `ity grav`\n", + "\n", + "Group 1 found at 5292-5298: `se cau`\n", + "Group 2 found at 5298-5304: `se cau`\n", + "Group 3 found at 5298-5304: `se cau`\n", + "\n", + "Group 1 found at 5766-5773: `similar`\n", + "Group 2 found at 5774-5781: `similar`\n", + "Group 3 found at 5774-5781: `similar`\n", + "\n", + "Group 1 found at 6210-6218: `relation`\n", + "Group 2 found at 6219-6227: `relation`\n", + "Group 3 found at 6219-6227: `relation`\n", + "\n", + "Group 1 found at 6685-6691: `s cave`\n", + "Group 2 found at 6691-6697: `s cave`\n", + "Group 3 found at 6691-6697: `s cave`\n", + "\n", + "Group 1 found at 8131-8138: `tion ac`\n", + "Group 2 found at 8138-8145: `tion ac`\n", + "Group 3 found at 8138-8145: `tion ac`\n", + "\n", + "Group 1 found at 8830-8838: ` entitle`\n", + "Group 2 found at 8838-8846: ` entitle`\n", + "Group 3 found at 8838-8846: ` entitle`\n", + "\n", + "Group 1 found at 9877-9882: `room `\n", + "Group 2 found at 9882-9887: `room `\n", + "Group 3 found at 9882-9887: `room `\n", + "(0, 112, 112)\n", + "detect_scores time: 2.2686820030212402\n", + "detect_scores: The official currency used in China is called Ren\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001477956771850586\n", + "detect_scores: As of my last update in early 2023, Lamar Odom wa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004008293151855469\n", + "detect_scores: The Great Pyramid of Giza, also known as the Pyra\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04775714874267578\n", + "detect_scores: Australians predominantly speak English, which is\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004225015640258789\n", + "detect_scores: King Tutankhamun's tomb, also known as the Boy Ki\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023610591888427734\n", + "detect_scores: Abraham, a key figure in the religious traditions\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7075-7080: `t uni`\n", + "Group 2 found at 7080-7085: `t uni`\n", + "Group 3 found at 7080-7085: `t uni`\n", + "\n", + "Group 1 found at 7152-7158: `meter `\n", + "Group 2 found at 7158-7164: `meter `\n", + "Group 3 found at 7158-7164: `meter `\n", + "\n", + "Group 1 found at 7174-7179: `gram `\n", + "Group 2 found at 7179-7184: `gram `\n", + "Group 3 found at 7179-7184: `gram `\n", + "\n", + "Group 1 found at 9171-9176: `lease`\n", + "Group 2 found at 9176-9181: `lease`\n", + "Group 3 found at 9176-9181: `lease`\n", + "(0, 42, 42)\n", + "detect_scores time: 1.5453979969024658\n", + "detect_scores: George Washington Carver attended Simpson College\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6127-6137: `ly evident`\n", + "Group 2 found at 6137-6148: `ly evident `\n", + "Group 3 found at 6137-6147: `ly evident`\n", + "\n", + "Group 1 found at 8365-8373: ` entitle`\n", + "Group 2 found at 8373-8381: ` entitle`\n", + "Group 3 found at 8373-8381: ` entitle`\n", + "(0, 37, 37)\n", + "detect_scores time: 1.9221076965332031\n", + "detect_scores: Spain is known for its rich sporting culture and \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3930-3937: `length `\n", + "Group 2 found at 3937-3944: `length `\n", + "Group 3 found at 3937-3944: `length `\n", + "\n", + "Group 1 found at 7301-7314: `ometer electr`\n", + "Group 2 found at 7314-7327: `ometer electr`\n", + "Group 3 found at 7314-7327: `ometer electr`\n", + "\n", + "Group 1 found at 8361-8366: ` safe`\n", + "Group 2 found at 8366-8371: ` safe`\n", + "Group 3 found at 8366-8371: ` safe`\n", + "\n", + "Group 1 found at 9216-9223: `fields `\n", + "Group 2 found at 9223-9230: `fields `\n", + "Group 3 found at 9223-9230: `fields `\n", + "(0, 64, 64)\n", + "detect_scores time: 1.8226299285888672\n", + "detect_scores: Barack Obama, the 44th President of the United St\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.031191110610961914\n", + "detect_scores: In Poland, a variety of popular and traditional s\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4711-4718: ` marine`\n", + "Group 2 found at 4718-4725: ` marine`\n", + "Group 3 found at 4718-4725: ` marine`\n", + "\n", + "Group 1 found at 5039-5051: ` philosopher`\n", + "Group 2 found at 5051-5063: ` philosopher`\n", + "Group 3 found at 5051-5063: ` philosopher`\n", + "\n", + "Group 1 found at 5064-5073: ` logician`\n", + "Group 2 found at 5073-5082: ` logician`\n", + "Group 3 found at 5073-5082: ` logician`\n", + "\n", + "Group 1 found at 8932-8939: `letter `\n", + "Group 2 found at 8939-8946: `letter `\n", + "Group 3 found at 8939-8946: `letter `\n", + "(5, 70, 75)\n", + "detect_scores time: 1.533992052078247\n", + "detect_scores: I'm sorry, but your question about Demi Lovato is\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003062725067138672\n", + "detect_scores: Scarlett Johansson is a versatile actress with nu\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9025-9033: ` control`\n", + "Group 2 found at 9033-9041: ` control`\n", + "Group 3 found at 9033-9041: ` control`\n", + "\n", + "Group 1 found at 9091-9096: ` ipod`\n", + "Group 2 found at 9096-9102: ` ipod `\n", + "Group 3 found at 9096-9101: ` ipod`\n", + "\n", + "Group 1 found at 9401-9407: ` cover`\n", + "Group 2 found at 9407-9413: ` cover`\n", + "Group 3 found at 9407-9413: ` cover`\n", + "(0, 39, 39)\n", + "detect_scores time: 2.0952341556549072\n", + "detect_scores: Amy Squires is a character from the movie \"Bad Te\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004815101623535156\n", + "detect_scores: Boeing Corporation, one of the largest aerospace \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006582021713256836\n", + "detect_scores: Viggo Mortenson played the character Aragorn, als\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007847070693969727\n", + "detect_scores: Sir Isaac Newton, born on January 4th (December 2\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3695-3700: ` wait`\n", + "Group 2 found at 3700-3705: ` wait`\n", + "Group 3 found at 3700-3705: ` wait`\n", + "\n", + "Group 1 found at 5944-5951: `meters `\n", + "Group 2 found at 5951-5958: `meters `\n", + "Group 3 found at 5951-5958: `meters `\n", + "\n", + "Group 1 found at 6188-6194: `meter `\n", + "Group 2 found at 6194-6200: `meter `\n", + "Group 3 found at 6194-6200: `meter `\n", + "\n", + "Group 1 found at 6242-6247: ` ohms`\n", + "Group 2 found at 6247-6252: ` ohms`\n", + "Group 3 found at 6247-6252: ` ohms`\n", + "\n", + "Group 1 found at 8992-8999: ` clergy`\n", + "Group 2 found at 8999-9006: ` clergy`\n", + "Group 3 found at 8999-9006: ` clergy`\n", + "\n", + "Group 1 found at 10353-10363: `dependent `\n", + "Group 2 found at 10363-10373: `dependent `\n", + "Group 3 found at 10363-10373: `dependent `\n", + "\n", + "Group 1 found at 10412-10422: `certainty `\n", + "Group 2 found at 10422-10432: `certainty `\n", + "Group 3 found at 10422-10432: `certainty `\n", + "(0, 100, 100)\n", + "detect_scores time: 2.041306257247925\n", + "detect_scores: William Shakespeare got married to Anne Hathaway.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003123044967651367\n", + "detect_scores: Michelle Obama, born Flavia Crépin and later know\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013263225555419922\n", + "detect_scores: Franz Liszt was a 19th-century Hungarian composer\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7301-7311: ` signature`\n", + "Group 2 found at 7311-7321: ` signature`\n", + "Group 3 found at 7311-7321: ` signature`\n", + "\n", + "Group 1 found at 8803-8816: `imates approx`\n", + "Group 2 found at 8816-8829: `imates approx`\n", + "Group 3 found at 8816-8829: `imates approx`\n", + "\n", + "Group 1 found at 10348-10358: `dependent `\n", + "Group 2 found at 10358-10368: `dependent `\n", + "Group 3 found at 10358-10368: `dependent `\n", + "\n", + "Group 1 found at 11008-11017: `finite in`\n", + "Group 2 found at 11017-11026: `finite in`\n", + "Group 3 found at 11017-11026: `finite in`\n", + "\n", + "Group 1 found at 11622-11631: `s program`\n", + "Group 2 found at 11631-11640: `s program`\n", + "Group 3 found at 11631-11640: `s program`\n", + "\n", + "Group 1 found at 11680-11690: ` remainder`\n", + "Group 2 found at 11690-11700: ` remainder`\n", + "Group 3 found at 11690-11700: ` remainder`\n", + "\n", + "Group 1 found at 11860-11868: `ons reas`\n", + "Group 2 found at 11868-11876: `ons reas`\n", + "Group 3 found at 11868-11876: `ons reas`\n", + "\n", + "Group 1 found at 11950-11959: `s routine`\n", + "Group 2 found at 11959-11969: `s routine `\n", + "Group 3 found at 11959-11968: `s routine`\n", + "(0, 157, 157)\n", + "detect_scores time: 2.2983319759368896\n", + "detect_scores: David Luíz currently plays soccer (football) in t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020830631256103516\n", + "detect_scores: Victoria, British Columbia can be found on the so\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01190185546875\n", + "detect_scores: The official currency of France is called the Eur\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.019450902938842773\n", + "detect_scores: David Beckham played for the Los Angeles Galaxy d\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03681612014770508\n", + "detect_scores: WNYC, which stands for New York Public Radio (for\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006852149963378906\n", + "detect_scores: John Jay, an important figure in American history\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002197742462158203\n", + "detect_scores: Mount Fuji, also known as Fujisan in Japanese, is\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8382-8388: `metre `\n", + "Group 2 found at 8388-8394: `metre `\n", + "Group 3 found at 8388-8394: `metre `\n", + "\n", + "Group 1 found at 8429-8434: `gram `\n", + "Group 2 found at 8434-8439: `gram `\n", + "Group 3 found at 8434-8439: `gram `\n", + "\n", + "Group 1 found at 9367-9374: `es phas`\n", + "Group 2 found at 9374-9381: `es phas`\n", + "Group 3 found at 9374-9381: `es phas`\n", + "\n", + "Group 1 found at 10837-10842: `code `\n", + "Group 2 found at 10842-10847: `code `\n", + "Group 3 found at 10842-10847: `code `\n", + "(0, 46, 46)\n", + "detect_scores time: 2.0309178829193115\n", + "detect_scores: Toussaint L’Ouverture, the leader of Haiti during\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00904393196105957\n", + "detect_scores: The United Kingdom (UK) is made up of four consti\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "(5, 0, 5)\n", + "detect_scores time: 0.04163813591003418\n", + "detect_scores: The answer to your query, according to Wikipedia \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006185770034790039\n", + "detect_scores: Before France adopted the Euro as its official cu\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013167142868041992\n", + "detect_scores: The official motto of Kentucky, which also serves\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002552032470703125\n", + "detect_scores: Samantha Stephenson is not a widely recognized ch\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010237932205200195\n", + "detect_scores: Sir Isaac Newton studied physics and mathematics.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01007699966430664\n", + "detect_scores: San Diego County is located on the southern borde\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014043092727661133\n", + "detect_scores: Canada, which lies to the North of Mexico and bor\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01671004295349121\n", + "detect_scores: Santa Claus, also known as Saint Nicholas or Kris\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014384269714355469\n", + "detect_scores: Coretta Scott King, the wife of civil rights lead\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002028942108154297\n", + "detect_scores: Adolf Hitler was raised in a Roman Catholic famil\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004876136779785156\n", + "detect_scores: The Illinois River can be found in central United\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4566-4572: `ound s`\n", + "Group 2 found at 4572-4578: `ound s`\n", + "Group 3 found at 4572-4578: `ound s`\n", + "\n", + "Group 1 found at 7463-7472: `s formula`\n", + "Group 2 found at 7472-7481: `s formula`\n", + "Group 3 found at 7472-7481: `s formula`\n", + "(0, 30, 30)\n", + "detect_scores time: 1.9443919658660889\n", + "detect_scores: Honduras is a country located in Central America,\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1412-1417: `e els`\n", + "Group 2 found at 1417-1422: `e els`\n", + "Group 3 found at 1417-1422: `e els`\n", + "\n", + "Group 1 found at 3001-3009: ` present`\n", + "Group 2 found at 3009-3017: ` present`\n", + "Group 3 found at 3009-3017: ` present`\n", + "\n", + "Group 1 found at 8385-8394: `tor credi`\n", + "Group 2 found at 8394-8403: `tor credi`\n", + "Group 3 found at 8394-8403: `tor credi`\n", + "\n", + "Group 1 found at 10342-10354: ` instruction`\n", + "Group 2 found at 10354-10366: ` instruction`\n", + "Group 3 found at 10354-10366: ` instruction`\n", + "\n", + "Group 1 found at 11275-11281: `ts uni`\n", + "Group 2 found at 11281-11287: `ts uni`\n", + "Group 3 found at 11281-11287: `ts uni`\n", + "\n", + "Group 1 found at 11364-11376: `s opposition`\n", + "Group 2 found at 11376-11389: `s opposition `\n", + "Group 3 found at 11376-11388: `s opposition`\n", + "(0, 105, 105)\n", + "detect_scores time: 1.8366889953613281\n", + "detect_scores: As of my last update in April 2023, Ronaldho was \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005124807357788086\n", + "detect_scores: Galileo Galilei, an Italian astronomer and physic\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 13\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6468-6479: `imeter mill`\n", + "Group 2 found at 6479-6490: `imeter mill`\n", + "Group 3 found at 6479-6490: `imeter mill`\n", + "\n", + "Group 1 found at 6612-6619: ` league`\n", + "Group 2 found at 6619-6626: ` league`\n", + "Group 3 found at 6619-6626: ` league`\n", + "\n", + "Group 1 found at 6638-6645: `meters `\n", + "Group 2 found at 6645-6652: `meters `\n", + "Group 3 found at 6645-6652: `meters `\n", + "\n", + "Group 1 found at 7247-7253: `plane `\n", + "Group 2 found at 7253-7259: `plane `\n", + "Group 3 found at 7253-7259: `plane `\n", + "\n", + "Group 1 found at 7331-7336: `d sle`\n", + "Group 2 found at 7336-7341: `d sle`\n", + "Group 3 found at 7336-7341: `d sle`\n", + "\n", + "Group 1 found at 7601-7606: `melon`\n", + "Group 2 found at 7607-7612: `melon`\n", + "Group 3 found at 7607-7612: `melon`\n", + "\n", + "Group 1 found at 9356-9362: ` cloth`\n", + "Group 2 found at 9362-9368: ` cloth`\n", + "Group 3 found at 9362-9368: ` cloth`\n", + "\n", + "Group 1 found at 9495-9501: `s suit`\n", + "Group 2 found at 9501-9508: `s suit `\n", + "Group 3 found at 9501-9507: `s suit`\n", + "(13, 108, 121)\n", + "detect_scores time: 1.9413249492645264\n", + "detect_scores: Germany's largest and most significant trade rela\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4877-4883: `aware `\n", + "Group 2 found at 4883-4889: `aware `\n", + "Group 3 found at 4883-4889: `aware `\n", + "\n", + "Group 1 found at 8520-8530: `magnetism `\n", + "Group 2 found at 8530-8540: `magnetism `\n", + "Group 3 found at 8530-8540: `magnetism `\n", + "(0, 32, 32)\n", + "detect_scores time: 1.9820518493652344\n", + "detect_scores: Mitt Romney, the former Governor of Massachusetts\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010603189468383789\n", + "detect_scores: Sean Hinton attended the University of Michigan. \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0040111541748046875\n", + "detect_scores: Central America consists primarily of 7 countries\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 7\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6602-6613: `ness single`\n", + "Group 2 found at 6613-6624: `ness single`\n", + "Group 3 found at 6613-6624: `ness single`\n", + "\n", + "Group 1 found at 9169-9177: ` channel`\n", + "Group 2 found at 9177-9185: ` channel`\n", + "Group 3 found at 9177-9185: ` channel`\n", + "\n", + "Group 1 found at 11201-11206: `book `\n", + "Group 2 found at 11206-11211: `book `\n", + "Group 3 found at 11206-11211: `book `\n", + "(7, 48, 55)\n", + "detect_scores time: 2.0799989700317383\n", + "detect_scores: I'm sorry, but there seems to be some confusion. \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016194820404052734\n", + "detect_scores: The Amazon Rainforest, also known as Amazonia or \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.029700040817260742\n", + "detect_scores: Claude Monet was a French painter and one of the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006557941436767578\n", + "detect_scores: Kurt Cobain, the lead vocalist and primary songwr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003016233444213867\n", + "detect_scores: Jennifer Lawrence played the character of \"Rebecc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03459882736206055\n", + "detect_scores: The Governor of Virginia in 2011 was Bob McDonnel\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0038177967071533203\n", + "detect_scores: Jackie Kennedy, born Jacqueline Lee Bouvier and t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009032964706420898\n", + "detect_scores: Lauren Conrad Major graduated from the Fashion In\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03804802894592285\n", + "detect_scores: Pennsylvania's current standard time would depend\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0195467472076416\n", + "detect_scores: Mario López is a Mexican actor, singer and model.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012370109558105469\n", + "detect_scores: Sarah Dessen's novels have been adapted into seve\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8667-8673: ` equal`\n", + "Group 2 found at 8673-8679: ` equal`\n", + "Group 3 found at 8673-8679: ` equal`\n", + "\n", + "Group 1 found at 10030-10038: `relation`\n", + "Group 2 found at 10039-10047: `relation`\n", + "Group 3 found at 10039-10047: `relation`\n", + "(0, 29, 29)\n", + "detect_scores time: 2.359498977661133\n", + "detect_scores: As an AI, I can't provide real-time data. However\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01318502426147461\n", + "detect_scores: Farrah Fawcett, the American actress and model kn\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001811981201171875\n", + "detect_scores: John Steinbeck, the acclaimed American author and\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6503-6515: `tions estima`\n", + "Group 2 found at 6515-6527: `tions estima`\n", + "Group 3 found at 6515-6527: `tions estima`\n", + "\n", + "Group 1 found at 8692-8704: `e certificat`\n", + "Group 2 found at 8704-8716: `e certificat`\n", + "Group 3 found at 8704-8716: `e certificat`\n", + "(0, 48, 48)\n", + "detect_scores time: 1.9079360961914062\n", + "detect_scores: As of my knowledge cutoff in 2023, Cuba operates \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007132053375244141\n", + "detect_scores: The current capital of Italy, as it has been sinc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018422603607177734\n", + "detect_scores: In The Bahamas, English is predominantly spoken a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030820369720458984\n", + "detect_scores: George Michael, the famous pop singer and musicia\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011464834213256836\n", + "detect_scores: In the year 2010, Cristiano Ronaldo played as a f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016614913940429688\n", + "detect_scores: The Bahamas operates on Atlantic Standard Time (A\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012291193008422852\n", + "detect_scores: In Brazil, the primary and official language spok\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018398761749267578\n", + "detect_scores: Samuel Taylor Coleridge was significantly influen\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 11\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4261-4273: `osphere trop`\n", + "Group 2 found at 4273-4285: `osphere trop`\n", + "Group 3 found at 4273-4285: `osphere trop`\n", + "\n", + "Group 1 found at 9871-9878: ` virtue`\n", + "Group 2 found at 9878-9885: ` virtue`\n", + "Group 3 found at 9878-9885: ` virtue`\n", + "\n", + "Group 1 found at 10101-10112: `e preferenc`\n", + "Group 2 found at 10112-10123: `e preferenc`\n", + "Group 3 found at 10112-10123: `e preferenc`\n", + "(11, 60, 71)\n", + "detect_scores time: 1.7597131729125977\n", + "detect_scores: Kim Kardashian is best known for her career in me\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02187800407409668\n", + "detect_scores: The Mississippi River does not technically \"end\" \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00896000862121582\n", + "detect_scores: As of my last update in April 2023, the President\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021517276763916016\n", + "detect_scores: Harley Quinn is a character from DC Comics, and s\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7827-7833: ` motto`\n", + "Group 2 found at 7833-7839: ` motto`\n", + "Group 3 found at 7833-7839: ` motto`\n", + "\n", + "Group 1 found at 7846-7853: `phrase `\n", + "Group 2 found at 7853-7860: `phrase `\n", + "Group 3 found at 7853-7860: `phrase `\n", + "\n", + "Group 1 found at 8360-8368: ` fortune`\n", + "Group 2 found at 8368-8376: ` fortune`\n", + "Group 3 found at 8368-8376: ` fortune`\n", + "\n", + "Group 1 found at 10040-10045: `clip `\n", + "Group 2 found at 10045-10050: `clip `\n", + "Group 3 found at 10045-10050: `clip `\n", + "\n", + "Group 1 found at 10529-10537: ` speaker`\n", + "Group 2 found at 10537-10545: ` speaker`\n", + "Group 3 found at 10537-10545: ` speaker`\n", + "(0, 68, 68)\n", + "detect_scores time: 1.9679679870605469\n", + "detect_scores: Ziva David began her tenure as an NCIS Special Ag\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0051271915435791016\n", + "detect_scores: Canadian National Anthem\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.3113021850585938e-05\n", + "detect_scores: Mark Zuckerberg studied computer science and psyc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036971569061279297\n", + "detect_scores: Michael Jackson, the famous pop singer known as \"\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001373291015625\n", + "detect_scores: Stephen R. Covey was an American educator, author\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.032373905181884766\n", + "detect_scores: Joseph Stalin, as a historical figure and leader \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007684946060180664\n", + "detect_scores: Monta Ellis's highest-achieving season in terms o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006861209869384766\n", + "detect_scores: Rihanna, whose full name is Robyn Rihanna Fenty, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00292205810546875\n", + "detect_scores: Joakim Noah attended the University of Florida, w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007224082946777344\n", + "detect_scores: The role of Billy Elliott in the original film \"B\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018417835235595703\n", + "detect_scores: Kourtney Kardashian has been in relationships wit\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030498504638671875\n", + "detect_scores: Australia operates under a federal parliamentary \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6017-6024: `s token`\n", + "Group 2 found at 6024-6031: `s token`\n", + "Group 3 found at 6024-6031: `s token`\n", + "\n", + "Group 1 found at 9163-9178: `ostatics electr`\n", + "Group 2 found at 9178-9193: `ostatics electr`\n", + "Group 3 found at 9178-9193: `ostatics electr`\n", + "\n", + "Group 1 found at 10800-10806: `start `\n", + "Group 2 found at 10806-10812: `start `\n", + "Group 3 found at 10806-10812: `start `\n", + "(0, 56, 56)\n", + "detect_scores time: 2.14192795753479\n", + "detect_scores: Howie Long played for several NFL teams throughou\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.027819156646728516\n", + "detect_scores: Elizabethtown, Kentucky operates in the Eastern T\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008047103881835938\n", + "detect_scores: Chris Paul, the professional basketball player kn\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5110-5121: `variance co`\n", + "Group 2 found at 5121-5132: `variance co`\n", + "Group 3 found at 5121-5132: `variance co`\n", + "\n", + "Group 1 found at 6235-6241: `colon `\n", + "Group 2 found at 6241-6247: `colon `\n", + "Group 3 found at 6241-6247: `colon `\n", + "\n", + "Group 1 found at 6399-6406: ` screen`\n", + "Group 2 found at 6406-6413: ` screen`\n", + "Group 3 found at 6406-6413: ` screen`\n", + "\n", + "Group 1 found at 7765-7770: `list `\n", + "Group 2 found at 7770-7775: `list `\n", + "Group 3 found at 7770-7775: `list `\n", + "\n", + "Group 1 found at 10839-10844: ` pipe`\n", + "Group 2 found at 10844-10849: ` pipe`\n", + "Group 3 found at 10844-10849: ` pipe`\n", + "\n", + "Group 1 found at 11306-11313: `parent `\n", + "Group 2 found at 11313-11320: `parent `\n", + "Group 3 found at 11313-11320: `parent `\n", + "\n", + "Group 1 found at 11369-11377: `body any`\n", + "Group 2 found at 11377-11385: `body any`\n", + "Group 3 found at 11377-11385: `body any`\n", + "\n", + "Group 1 found at 11491-11496: ` soon`\n", + "Group 2 found at 11496-11501: ` soon`\n", + "Group 3 found at 11496-11501: ` soon`\n", + "\n", + "Group 1 found at 11707-11716: `nce comme`\n", + "Group 2 found at 11716-11725: `nce comme`\n", + "Group 3 found at 11716-11725: `nce comme`\n", + "(0, 126, 126)\n", + "detect_scores time: 1.9413506984710693\n", + "detect_scores: The New York Giants, a professional American foot\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001918792724609375\n", + "detect_scores: Sir Isaac Newton, primarily known for his groundb\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "\n", + "removed excessive whitespaces: 18\n", + "----detect text repetitions----\n", + "(18, 0, 18)\n", + "detect_scores time: 0.07251310348510742\n", + "detect_scores: Shaquille O'Neal, known as \"Shaq,\" was drafted by\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004186153411865234\n", + "detect_scores: The original Mickey Mouse character, created by W\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011629104614257812\n", + "detect_scores: Michael Vick was a professional American football\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008132219314575195\n", + "detect_scores: The Columbia River starts in the Rocky Mountains \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6539-6549: ` implement`\n", + "Group 2 found at 6549-6559: ` implement`\n", + "Group 3 found at 6549-6559: ` implement`\n", + "\n", + "Group 1 found at 10520-10530: `agreement `\n", + "Group 2 found at 10530-10540: `agreement `\n", + "Group 3 found at 10530-10540: `agreement `\n", + "\n", + "Group 1 found at 10542-10551: `solution `\n", + "Group 2 found at 10551-10560: `solution `\n", + "Group 3 found at 10551-10560: `solution `\n", + "(0, 58, 58)\n", + "detect_scores time: 1.8925471305847168\n", + "detect_scores: The Harry Potter series, written by J.K. Rowling,\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9512-9523: `conference `\n", + "Group 2 found at 9523-9534: `conference `\n", + "Group 3 found at 9523-9534: `conference `\n", + "(0, 22, 22)\n", + "detect_scores time: 1.633126974105835\n", + "detect_scores: In Barbados, the official and legal tender is kno\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00896596908569336\n", + "detect_scores: Angelina Jolie, born Angela Evangeline Assad on J\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010030031204223633\n", + "detect_scores: Ninevah City does not exist as a recognized locat\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016697168350219727\n", + "detect_scores: Eowyn is a character from J.R.R. Tolkien's Middle\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013273239135742188\n", + "detect_scores: Eva Perón, also known as Evita and the First Lady\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0054929256439208984\n", + "detect_scores: The Baltimore Ravens won the Super Bowl in 2013. \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0044519901275634766\n", + "detect_scores: Ohio is often regarded as a Midwestern state in t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6943-6951: `parents `\n", + "Group 2 found at 6951-6959: `parents `\n", + "Group 3 found at 6951-6959: `parents `\n", + "\n", + "Group 1 found at 8758-8767: `s formula`\n", + "Group 2 found at 8767-8777: `s formula `\n", + "Group 3 found at 8767-8776: `s formula`\n", + "\n", + "Group 1 found at 9413-9420: `l seque`\n", + "Group 2 found at 9420-9427: `l seque`\n", + "Group 3 found at 9420-9427: `l seque`\n", + "\n", + "Group 1 found at 9550-9565: `ation authentic`\n", + "Group 2 found at 9565-9580: `ation authentic`\n", + "Group 3 found at 9565-9580: `ation authentic`\n", + "(0, 79, 79)\n", + "detect_scores time: 2.016913890838623\n", + "detect_scores: Cristiano Ronaldo currently plays for the club Ma\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004758119583129883\n", + "detect_scores: As of my last update in 2023, Michigan operates o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003939151763916016\n", + "detect_scores: John Tyler served as the 10th President of the Un\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8115-8121: `about `\n", + "Group 2 found at 8121-8127: `about `\n", + "Group 3 found at 8121-8127: `about `\n", + "\n", + "Group 1 found at 10047-10054: `forever`\n", + "Group 2 found at 10061-10068: `forever`\n", + "Group 3 found at 10061-10068: `forever`\n", + "(0, 33, 33)\n", + "detect_scores time: 2.078995943069458\n", + "detect_scores: In Jamaica, the official and legal tender used fo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013375997543334961\n", + "detect_scores: Jay Gould Jr., who was also known as \"Jungle Jim\"\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00889897346496582\n", + "detect_scores: I'm sorry, but there are no public records or rep\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022001266479492188\n", + "detect_scores: The Carolina Panthers made it to the Super Bowl f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023758411407470703\n", + "detect_scores: As of my last update, there hasn't been a recent \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007678985595703125\n", + "detect_scores: Helen Flanagan is a former Irish television prese\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01340794563293457\n", + "detect_scores: The Tennessee River originates in the Appalachian\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007824897766113281\n", + "detect_scores: Corey Taylor, the lead vocalist of Slipknot and S\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005506753921508789\n", + "detect_scores: The President of the United States who served imm\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004012107849121094\n", + "detect_scores: Kate Gosselin, known for her reality television s\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010560035705566406\n", + "detect_scores: The United States Government operates under a fed\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008470773696899414\n", + "detect_scores: Mount Lassen, often referred to as simply \"Lassen\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014400005340576172\n", + "detect_scores: The State Motto of Ohio is \"With God, all things \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0035858154296875\n", + "detect_scores: Wolfgang Amadeus Mozart, a prolific and influenti\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010567903518676758\n", + "detect_scores: The Kennedy Family, as commonly known due to its \n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 11\n", + "----detect text repetitions----\n", + "(11, 0, 11)\n", + "detect_scores time: 2.1772000789642334\n", + "detect_scores: The Barcelona Airport that's nearest to Port of B\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01912713050842285\n", + "detect_scores: Adolf Hitler, the leader of Nazi Germany, initiat\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012848377227783203\n", + "detect_scores: Canada is part of the North American continent. I\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003645181655883789\n", + "detect_scores: George Wilson is best known as the character from\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007536888122558594\n", + "detect_scores: Adolf Hitler, born on April 20th, 1889 in Braunau\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 7\n", + "----detect text repetitions----\n", + "(7, 0, 7)\n", + "detect_scores time: 0.08538103103637695\n", + "detect_scores: After the Iranian Revolution in 1979, Iran establ\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008183002471923828\n", + "detect_scores: Harper Lee attended Monroeville High School in Al\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002317190170288086\n", + "detect_scores: J.R.R. Tolkien attended Exeter College at the Uni\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0034029483795166016\n", + "detect_scores: Wassily Kandinsky was a Russian painter and art t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013844966888427734\n", + "detect_scores: Antoni Gaudí, the renowned Catalan architect know\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05947685241699219\n", + "detect_scores: Paris offers an array of accommodation options to\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7427-7433: `watch `\n", + "Group 2 found at 7433-7439: `watch `\n", + "Group 3 found at 7433-7439: `watch `\n", + "\n", + "Group 1 found at 7544-7551: ` hammer`\n", + "Group 2 found at 7551-7558: ` hammer`\n", + "Group 3 found at 7551-7558: ` hammer`\n", + "\n", + "Group 1 found at 10152-10160: `rs scala`\n", + "Group 2 found at 10160-10168: `rs scala`\n", + "Group 3 found at 10160-10168: `rs scala`\n", + "\n", + "Group 1 found at 10280-10287: `meters `\n", + "Group 2 found at 10287-10294: `meters `\n", + "Group 3 found at 10287-10294: `meters `\n", + "(0, 56, 56)\n", + "detect_scores time: 1.9427399635314941\n", + "detect_scores: Benjamin Franklin's first wife was Deborah Read. \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004586935043334961\n", + "detect_scores: The largest and most populous city in Spain is Ma\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020110607147216797\n", + "detect_scores: Pudge Rodriguez is a former professional baseball\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004853963851928711\n", + "detect_scores: The Milwaukee Brewers' home ballpark, as of my la\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009638071060180664\n", + "detect_scores: The Gallipoli Campaign, also known as the Battle \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.026660680770874023\n", + "detect_scores: Shakira Isabel Mebarak Ripoll, born on February 2\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 428-433: `Waka `\n", + "Group 2 found at 433-438: `Waka `\n", + "Group 3 found at 433-438: `Waka `\n", + "(0, 10, 10)\n", + "detect_scores time: 0.007933855056762695\n", + "detect_scores: Ian Holm portrayed Bilbo Baggins, a central chara\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015327930450439453\n", + "detect_scores: The Tennessee River is a major waterway in the so\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01778721809387207\n", + "detect_scores: Utah's State Capitol, located in Salt Lake City, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01904010772705078\n", + "detect_scores: Benjamin Franklin, one of the Founding Fathers of\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 11\n", + "----detect text repetitions----\n", + "(11, 0, 11)\n", + "detect_scores time: 1.8647680282592773\n", + "detect_scores: Jeremy Lin played for the Houston Rockets in the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00588679313659668\n", + "detect_scores: Steve Nash was Canadian by birth. He holds both A\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.000537872314453125\n", + "detect_scores: As my knowledge is current only up to early 2023,\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004174232482910156\n", + "detect_scores: France primarily speaks French, which is a Romanc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05959486961364746\n", + "detect_scores: Martin Luther King Jr. earned a doctorate in syst\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022878646850585938\n", + "detect_scores: St. Louis, often referred to as Saint Louie or Th\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037550926208496094\n", + "detect_scores: Peyton Manning's father, John Henry \"Jack\" Mannin\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2320-2330: ` identical`\n", + "Group 2 found at 2330-2340: ` identical`\n", + "Group 3 found at 2330-2340: ` identical`\n", + "\n", + "Group 1 found at 2365-2371: ` equal`\n", + "Group 2 found at 2371-2377: ` equal`\n", + "Group 3 found at 2371-2377: ` equal`\n", + "\n", + "Group 1 found at 5116-5125: `s concept`\n", + "Group 2 found at 5125-5134: `s concept`\n", + "Group 3 found at 5125-5134: `s concept`\n", + "\n", + "Group 1 found at 5686-5691: `e hat`\n", + "Group 2 found at 5691-5696: `e hat`\n", + "Group 3 found at 5691-5696: `e hat`\n", + "\n", + "Group 1 found at 10187-10195: `ity grav`\n", + "Group 2 found at 10195-10203: `ity grav`\n", + "Group 3 found at 10195-10203: `ity grav`\n", + "\n", + "Group 1 found at 10225-10234: `magnetic `\n", + "Group 2 found at 10234-10243: `magnetic `\n", + "Group 3 found at 10234-10243: `magnetic `\n", + "(0, 94, 94)\n", + "detect_scores time: 2.205502986907959\n", + "detect_scores: The official currency used in Peru is called the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00014495849609375\n", + "detect_scores: The United Kingdom is comprised of four constitue\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4481-4487: ` plain`\n", + "Group 2 found at 4487-4493: ` plain`\n", + "Group 3 found at 4487-4493: ` plain`\n", + "\n", + "Group 1 found at 7403-7409: `hills `\n", + "Group 2 found at 7409-7415: `hills `\n", + "Group 3 found at 7409-7415: `hills `\n", + "(0, 24, 24)\n", + "detect_scores time: 1.7670931816101074\n", + "detect_scores: Robert F. Kennedy attended several educational in\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.031002044677734375\n", + "detect_scores: The Fukushima Daiichi Nuclear Power Station, also\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8132-8138: ` popup`\n", + "Group 2 found at 8138-8145: ` popup `\n", + "Group 3 found at 8138-8144: ` popup`\n", + "\n", + "Group 1 found at 8188-8196: `loading `\n", + "Group 2 found at 8196-8204: `loading `\n", + "Group 3 found at 8196-8204: `loading `\n", + "\n", + "Group 1 found at 8307-8314: `tion ac`\n", + "Group 2 found at 8314-8321: `tion ac`\n", + "Group 3 found at 8314-8321: `tion ac`\n", + "(0, 43, 43)\n", + "detect_scores time: 2.010863780975342\n", + "detect_scores: Los Angeles, California operates in the Pacific T\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005915164947509766\n", + "detect_scores: If you are planning a trip from the United States\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8858-8864: `laces `\n", + "Group 2 found at 8864-8870: `laces `\n", + "Group 3 found at 8864-8870: `laces `\n", + "\n", + "Group 1 found at 9640-9650: ` dimension`\n", + "Group 2 found at 9650-9660: ` dimension`\n", + "Group 3 found at 9650-9660: ` dimension`\n", + "\n", + "Group 1 found at 10610-10617: ` parsec`\n", + "Group 2 found at 10617-10624: ` parsec`\n", + "Group 3 found at 10617-10624: ` parsec`\n", + "\n", + "Group 1 found at 10744-10750: `e Tonn`\n", + "Group 2 found at 10750-10756: `e Tonn`\n", + "Group 3 found at 10750-10756: `e Tonn`\n", + "(0, 58, 58)\n", + "detect_scores time: 2.036073923110962\n", + "detect_scores: As my knowledge was last updated in 2023, I canno\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0032520294189453125\n", + "detect_scores: In Scotland, the primary language spoken is Engli\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0024580955505371094\n", + "detect_scores: John Dalton was an English chemist, physicist and\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02237391471862793\n", + "detect_scores: Glastonbury, England can be found in Somerset. It\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028700828552246094\n", + "detect_scores: The American Federation of Labor (AFL) was founde\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03238081932067871\n", + "detect_scores: Thomas Hobbes, the influential English philosophe\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8545-8551: ` orbit`\n", + "Group 2 found at 8551-8557: ` orbit`\n", + "Group 3 found at 8551-8557: ` orbit`\n", + "\n", + "Group 1 found at 8839-8846: `second `\n", + "Group 2 found at 8846-8853: `second `\n", + "Group 3 found at 8846-8853: `second `\n", + "\n", + "Group 1 found at 11423-11432: `er debugg`\n", + "Group 2 found at 11432-11441: `er debugg`\n", + "Group 3 found at 11432-11441: `er debugg`\n", + "(0, 44, 44)\n", + "detect_scores time: 2.2942099571228027\n", + "detect_scores: John F. Kennedy, the 35th President of the United\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5122-5129: ` effect`\n", + "Group 2 found at 5129-5136: ` effect`\n", + "Group 3 found at 5129-5136: ` effect`\n", + "\n", + "Group 1 found at 7048-7056: `ability `\n", + "Group 2 found at 7056-7064: `ability `\n", + "Group 3 found at 7056-7064: `ability `\n", + "\n", + "Group 1 found at 8145-8150: `e rat`\n", + "Group 2 found at 8150-8155: `e rat`\n", + "Group 3 found at 8150-8155: `e rat`\n", + "\n", + "Group 1 found at 8231-8242: ` coordinate`\n", + "Group 2 found at 8242-8253: ` coordinate`\n", + "Group 3 found at 8242-8253: ` coordinate`\n", + "\n", + "Group 1 found at 9362-9368: ` loose`\n", + "Group 2 found at 9368-9374: ` loose`\n", + "Group 3 found at 9368-9374: ` loose`\n", + "\n", + "Group 1 found at 9545-9552: `e petit`\n", + "Group 2 found at 9552-9559: `e petit`\n", + "Group 3 found at 9552-9559: `e petit`\n", + "\n", + "Group 1 found at 9612-9621: `division `\n", + "Group 2 found at 9621-9630: `division `\n", + "Group 3 found at 9621-9630: `division `\n", + "\n", + "Group 1 found at 10948-10959: ` substitute`\n", + "Group 2 found at 10959-10971: ` substitute `\n", + "Group 3 found at 10959-10970: ` substitute`\n", + "(0, 129, 129)\n", + "detect_scores time: 1.7238991260528564\n", + "detect_scores: Montreal is a city in the Canadian province of Qu\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003625154495239258\n", + "detect_scores: Franz Liszt, the renowned 19th-century Hungarian \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05576610565185547\n", + "detect_scores: Argentina shares its borders with five South Amer\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002184152603149414\n", + "detect_scores: The primary official language spoken by the major\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006002187728881836\n", + "detect_scores: The predominant religion in Israel is Judaism. Ap\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006740093231201172\n", + "detect_scores: As of my last update in April 2023, Rodney Harris\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01169896125793457\n", + "detect_scores: Toronto operates on Eastern Standard Time (EST) d\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018911123275756836\n", + "detect_scores: Robert Burns, also known as Rabbie Burns and the \n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8059-8064: `verb `\n", + "Group 2 found at 8064-8069: `verb `\n", + "Group 3 found at 8064-8069: `verb `\n", + "\n", + "Group 1 found at 9253-9261: `relation`\n", + "Group 2 found at 9262-9270: `relation`\n", + "Group 3 found at 9262-9270: `relation`\n", + "\n", + "Group 1 found at 9307-9313: ` route`\n", + "Group 2 found at 9313-9319: ` route`\n", + "Group 3 found at 9313-9319: ` route`\n", + "(5, 39, 44)\n", + "detect_scores time: 1.672973871231079\n", + "detect_scores: As of my last update in April 2023, the Utah Atto\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002346038818359375\n", + "detect_scores: The Carolina Panthers are coached by Pat McAfee a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005219221115112305\n", + "detect_scores: South Africa shares its international land bounda\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05231499671936035\n", + "detect_scores: Mark Hamill reprised his role as Darth Vader in \"\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.028850317001342773\n", + "detect_scores: The Kentucky State Bird is the Northern Cardinal.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007801055908203125\n", + "detect_scores: The Canadian Prime Minister in the year 1993 was \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0042760372161865234\n", + "detect_scores: I cannot respond to questions on election-related\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003638267517089844\n", + "detect_scores: The United Kingdom is a multilingual country with\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 7\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3883-3893: `tability s`\n", + "Group 2 found at 3893-3903: `tability s`\n", + "Group 3 found at 3893-3903: `tability s`\n", + "\n", + "Group 1 found at 8473-8479: `metre `\n", + "Group 2 found at 8479-8485: `metre `\n", + "Group 3 found at 8479-8485: `metre `\n", + "\n", + "Group 1 found at 8583-8589: ` arrow`\n", + "Group 2 found at 8589-8595: ` arrow`\n", + "Group 3 found at 8589-8595: ` arrow`\n", + "\n", + "Group 1 found at 10466-10474: `e entitl`\n", + "Group 2 found at 10474-10482: `e entitl`\n", + "Group 3 found at 10474-10482: `e entitl`\n", + "(7, 60, 67)\n", + "detect_scores time: 2.2620019912719727\n", + "detect_scores: Pope John Paul II, born Karol Józef Wojtyła on Ma\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.024802684783935547\n", + "detect_scores: Franklin Pierce, who served as the 14th President\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9019-9025: `cycle `\n", + "Group 2 found at 9025-9031: `cycle `\n", + "Group 3 found at 9025-9031: `cycle `\n", + "\n", + "Group 1 found at 9487-9495: `ity grav`\n", + "Group 2 found at 9495-9503: `ity grav`\n", + "Group 3 found at 9495-9503: `ity grav`\n", + "\n", + "Group 1 found at 10048-10053: `mail `\n", + "Group 2 found at 10053-10058: `mail `\n", + "Group 3 found at 10053-10058: `mail `\n", + "\n", + "Group 1 found at 10678-10684: `magnet`\n", + "Group 2 found at 10685-10691: `magnet`\n", + "Group 3 found at 10685-10691: `magnet`\n", + "\n", + "Group 1 found at 11655-11663: ` feeling`\n", + "Group 2 found at 11663-11671: ` feeling`\n", + "Group 3 found at 11663-11671: ` feeling`\n", + "(0, 67, 67)\n", + "detect_scores time: 2.3167240619659424\n", + "detect_scores: As of my knowledge cutoff in early 2023, the most\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009809017181396484\n", + "detect_scores: Michelangelo Buonarroti, one of the most prominen\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 8\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8977-8988: `variance co`\n", + "Group 2 found at 8988-8999: `variance co`\n", + "Group 3 found at 8988-8999: `variance co`\n", + "\n", + "Group 1 found at 11546-11551: `venge`\n", + "Group 2 found at 11552-11557: `venge`\n", + "Group 3 found at 11552-11557: `venge`\n", + "(8, 33, 41)\n", + "detect_scores time: 1.825918197631836\n", + "detect_scores: Monsanto, now owned by Bayer since its acquisitio\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014470815658569336\n", + "detect_scores: Woody Harrelson played the character \"Steve Holt\"\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014719963073730469\n", + "detect_scores: In Sweden, the primary languages spoken are Swedi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009189128875732422\n", + "detect_scores: The Philippines operates under a democratic and c\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021140575408935547\n", + "detect_scores: Mitt Romney attended Brigham Young University (BY\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.028237104415893555\n", + "detect_scores: Ibrahim Afellay hails from Tétouan, which is a ci\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0027310848236083984\n", + "detect_scores: In New Zealand, the official currencies are the N\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008913040161132812\n", + "detect_scores: When planning activities for children visiting As\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8616-8621: ` sand`\n", + "Group 2 found at 8621-8626: ` sand`\n", + "Group 3 found at 8621-8626: ` sand`\n", + "\n", + "Group 1 found at 9312-9321: `magnetic `\n", + "Group 2 found at 9321-9330: `magnetic `\n", + "Group 3 found at 9321-9330: `magnetic `\n", + "\n", + "Group 1 found at 10778-10785: `en elev`\n", + "Group 2 found at 10785-10792: `en elev`\n", + "Group 3 found at 10785-10792: `en elev`\n", + "(0, 42, 42)\n", + "detect_scores time: 2.021904945373535\n", + "detect_scores: Kurt Russell played the character named \"Kurt War\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2295-2302: `s exist`\n", + "Group 2 found at 2302-2309: `s exist`\n", + "Group 3 found at 2302-2309: `s exist`\n", + "\n", + "Group 1 found at 6957-6964: ` anchor`\n", + "Group 2 found at 6964-6971: ` anchor`\n", + "Group 3 found at 6964-6971: ` anchor`\n", + "\n", + "Group 1 found at 8250-8256: ` aware`\n", + "Group 2 found at 8256-8262: ` aware`\n", + "Group 3 found at 8256-8262: ` aware`\n", + "(0, 40, 40)\n", + "detect_scores time: 2.0692248344421387\n", + "detect_scores: Pablo Picasso, the renowned Spanish painter and s\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2775-2783: ` perfect`\n", + "Group 2 found at 2783-2791: ` perfect`\n", + "Group 3 found at 2783-2791: ` perfect`\n", + "\n", + "Group 1 found at 8031-8040: `s upgrade`\n", + "Group 2 found at 8040-8050: `s upgrade `\n", + "Group 3 found at 8040-8049: `s upgrade`\n", + "\n", + "Group 1 found at 8181-8192: `evolution r`\n", + "Group 2 found at 8192-8203: `evolution r`\n", + "Group 3 found at 8192-8203: `evolution r`\n", + "\n", + "Group 1 found at 10809-10814: `chip `\n", + "Group 2 found at 10814-10819: `chip `\n", + "Group 3 found at 10814-10819: `chip `\n", + "(0, 67, 67)\n", + "detect_scores time: 2.047590970993042\n", + "detect_scores: When traveling from the United States or most oth\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01172494888305664\n", + "detect_scores: As of my last update in April 2023, Raúl Ibañez w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007840871810913086\n", + "detect_scores: Actor Samuel L. Jackson portrays the character of\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018720626831054688\n", + "detect_scores: As of my last update in early 2023, Michelle Pfei\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004614114761352539\n", + "detect_scores: Laura Ingalls Wilder is most famously known as an\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04321599006652832\n", + "detect_scores: As of my last update in April 2023, Dwyane Wade r\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007822275161743164\n", + "detect_scores: I'm sorry, but as a large language model develope\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007339954376220703\n", + "detect_scores: Madonna Louise Ciccone, known professionally as M\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.020007848739624023\n", + "detect_scores: The capital city of Brazil is Brasília. It was of\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003297090530395508\n", + "detect_scores: John Stockton, the legendary basketball player kn\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02970719337463379\n", + "detect_scores: Mexico uses the Mexican Peso as its official curr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003016948699951172\n", + "detect_scores: As of my knowledge cutoff in early 2023, Chrysler\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018513917922973633\n", + "detect_scores: Gregor Mendel, often referred to as the \"Father o\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "(5, 0, 5)\n", + "detect_scores time: 0.08789825439453125\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031239986419677734\n", + "detect_scores: Joe Biden was the individual who ran as Barack Ob\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00026917457580566406\n", + "detect_scores: People in the UK primarily speak English. However\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008046150207519531\n", + "detect_scores: South Korea operates under a presidential represe\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.024645090103149414\n", + "detect_scores: Ben Franklin, one of the Founding Fathers of the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008740425109863281\n", + "detect_scores: The Sri Lankan capital is Colombo. It serves as t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009746789932250977\n", + "detect_scores: Cyprus uses the Euro (€) as its official currency\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010750293731689453\n", + "detect_scores: Johnny Depp is known for playing a variety of gui\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033168792724609375\n", + "detect_scores: Dustin Johnson, born on February 20, 1987, in Edm\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0073239803314208984\n", + "detect_scores: I'm sorry, but as of my last update in 2023, Cher\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002977132797241211\n", + "detect_scores: The University of Oregon State, often referred to\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08060812950134277\n", + "detect_scores: The official currency of Turkey is named as Turki\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018045902252197266\n", + "detect_scores: Mark Zuckerberg attended Hillside Elementary Scho\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011426210403442383\n", + "detect_scores: As of my knowledge cutoff in March 2023, Kate Mid\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.041027069091796875\n", + "detect_scores: Marc Chagall was a Russian-French artist renowned\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011246204376220703\n", + "detect_scores: Billy Dee Williams played the role of Lando Calri\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007581710815429688\n", + "detect_scores: Wilfred Owen, the renowned British poet known for\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7692-7697: `eight`\n", + "Group 2 found at 7697-7702: `eight`\n", + "Group 3 found at 7697-7702: `eight`\n", + "\n", + "Group 1 found at 10194-10200: `cancel`\n", + "Group 2 found at 10200-10206: `cancel`\n", + "Group 3 found at 10200-10206: `cancel`\n", + "(0, 22, 22)\n", + "detect_scores time: 1.859968900680542\n", + "detect_scores: AirTran Airways, which operated from 1971 until i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00727081298828125\n", + "detect_scores: The City of Paris gets its name from several poss\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6518-6525: `measure`\n", + "Group 2 found at 6526-6533: `measure`\n", + "Group 3 found at 6526-6533: `measure`\n", + "\n", + "Group 1 found at 8792-8800: `ability `\n", + "Group 2 found at 8800-8808: `ability `\n", + "Group 3 found at 8800-8808: `ability `\n", + "(0, 31, 31)\n", + "detect_scores time: 1.8148829936981201\n", + "detect_scores: Sandra Bullock, the acclaimed actress and filmmak\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007778167724609375\n", + "detect_scores: Olympic National Park, often referred to as the \"\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3791-3799: `ability `\n", + "Group 2 found at 3799-3807: `ability `\n", + "Group 3 found at 3799-3807: `ability `\n", + "\n", + "Group 1 found at 4470-4479: ` commence`\n", + "Group 2 found at 4479-4488: ` commence`\n", + "Group 3 found at 4479-4488: ` commence`\n", + "\n", + "Group 1 found at 6569-6576: `avour s`\n", + "Group 2 found at 6576-6583: `avour s`\n", + "Group 3 found at 6576-6583: `avour s`\n", + "(0, 48, 48)\n", + "detect_scores time: 0.7873458862304688\n", + "detect_scores: Yale University is located in New Haven, Connecti\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 4.410743713378906e-05\n", + "detect_scores: Thomas Paine died on June 8, 1799. He passed away\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0061588287353515625\n", + "detect_scores: Barack Hussein Obama Sr. was born on December 1, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005424022674560547\n", + "detect_scores: The New England Patriots' current home field as o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002869844436645508\n", + "detect_scores: Kate Chopin, born Katherine O'Flaherty on Februar\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04150819778442383\n", + "detect_scores: Bill Clinton attended Georgetown University for h\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005572080612182617\n", + "detect_scores: Staffordshire Terrier, also known as the American\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3925-3934: `e retriev`\n", + "Group 2 found at 3934-3943: `e retriev`\n", + "Group 3 found at 3934-3943: `e retriev`\n", + "\n", + "Group 1 found at 6105-6111: `cards `\n", + "Group 2 found at 6111-6117: `cards `\n", + "Group 3 found at 6111-6117: `cards `\n", + "\n", + "Group 1 found at 7236-7242: `system`\n", + "Group 2 found at 7243-7249: `system`\n", + "Group 3 found at 7243-7249: `system`\n", + "(5, 43, 48)\n", + "detect_scores time: 1.7176830768585205\n", + "detect_scores: Michael J. Fox's biological mother was Phyllis An\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005391836166381836\n", + "detect_scores: Sanjaya Gupta attended medical schools and reside\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00978708267211914\n", + "detect_scores: The North American Free Trade Agreement (NAFTA) o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.023034095764160156\n", + "detect_scores: The Cayman Islands are not a part of any continen\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010126113891601562\n", + "detect_scores: In Brazil, the primary official and national lang\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003804922103881836\n", + "detect_scores: The Pittsburgh Steelers' most recent Super Bowl w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004834175109863281\n", + "detect_scores: Switzerland is a multilingual country with four o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03998517990112305\n", + "detect_scores: Barack Obama represents the Democratic Party in A\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0032448768615722656\n", + "detect_scores: Emperor Constantine, also known as Constantius Ch\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.028655052185058594\n", + "detect_scores: Mali, often spelled \"Mali,\" is a landlocked count\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0072329044342041016\n", + "detect_scores: As of my last update in 2023, I cannot provide re\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007412433624267578\n", + "detect_scores: The very first Microsoft Headquarters, known as M\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013506889343261719\n", + "detect_scores: John Steinbeck, the acclaimed American author kno\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005895853042602539\n", + "detect_scores: Niels Bohr, a Danish physicist who made foundatio\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01726508140563965\n", + "detect_scores: Ryan Reynold, the well-known actor and comedian, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004598140716552734\n", + "detect_scores: Newt Gingrich's ex-wife, whom he was married to f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011718273162841797\n", + "detect_scores: Antonio Vivaldi was a Baroque composer and violin\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011497020721435547\n", + "detect_scores: As of my last update in April 2023, specific pers\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007363080978393555\n", + "detect_scores: Samuel Langhorne Clemens, better recognized by hi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4086-4093: ` decent`\n", + "Group 2 found at 4093-4100: ` decent`\n", + "Group 3 found at 4093-4100: ` decent`\n", + "\n", + "Group 1 found at 8602-8607: `a vit`\n", + "Group 2 found at 8607-8612: `a vit`\n", + "Group 3 found at 8607-8612: `a vit`\n", + "(0, 24, 24)\n", + "detect_scores time: 1.330754041671753\n", + "detect_scores: After William Henry Harrison, the 9th President o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011949539184570312\n", + "detect_scores: George W. Bush's memoir, titled \"Decision Points,\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031731128692626953\n", + "detect_scores: Antoine Lavoisier, often regarded as the father o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009500980377197266\n", + "detect_scores: The Queen consort to King George VI was Elizabeth\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004903078079223633\n", + "detect_scores: The Seattle Seahawks went to their first Super Bo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018310546875\n", + "detect_scores: Sami Yusuf, a well-known British singer and music\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012466192245483398\n", + "detect_scores: The official languages of Brazil are Portuguese a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0024118423461914062\n", + "detect_scores: The New York Mets' most recent World Series win w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004086017608642578\n", + "detect_scores: Florida Panther National Wildlife Refuge, which i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01567697525024414\n", + "detect_scores: New York University (NYU) was not the brainchild \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3949-3957: `fense de`\n", + "Group 2 found at 3957-3965: `fense de`\n", + "Group 3 found at 3957-3965: `fense de`\n", + "\n", + "Group 1 found at 3997-4004: `action `\n", + "Group 2 found at 4004-4011: `action `\n", + "Group 3 found at 4004-4011: `action `\n", + "\n", + "Group 1 found at 5338-5346: `onym hyp`\n", + "Group 2 found at 5346-5354: `onym hyp`\n", + "Group 3 found at 5346-5354: `onym hyp`\n", + "\n", + "Group 1 found at 6529-6540: `s mechanism`\n", + "Group 2 found at 6540-6552: `s mechanism `\n", + "Group 3 found at 6540-6551: `s mechanism`\n", + "\n", + "Group 1 found at 6695-6702: `s rival`\n", + "Group 2 found at 6702-6710: `s rival `\n", + "Group 3 found at 6702-6709: `s rival`\n", + "\n", + "Group 1 found at 7888-7895: ` heaven`\n", + "Group 2 found at 7895-7902: ` heaven`\n", + "Group 3 found at 7895-7902: ` heaven`\n", + "\n", + "Group 1 found at 9105-9112: `dermis `\n", + "Group 2 found at 9112-9119: `dermis `\n", + "Group 3 found at 9112-9119: `dermis `\n", + "\n", + "Group 1 found at 9460-9469: ` rotation`\n", + "Group 2 found at 9469-9478: ` rotation`\n", + "Group 3 found at 9469-9478: ` rotation`\n", + "\n", + "Group 1 found at 10036-10042: `tytwen`\n", + "Group 2 found at 10042-10048: `tytwen`\n", + "Group 3 found at 10042-10048: `tytwen`\n", + "\n", + "Group 1 found at 10684-10693: `particle `\n", + "Group 2 found at 10693-10702: `particle `\n", + "Group 3 found at 10693-10702: `particle `\n", + "(0, 160, 160)\n", + "detect_scores time: 1.8638217449188232\n", + "detect_scores: North Africa comprises several countries along it\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "\n", + "\n", + "removed excessive whitespaces: 23\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6293-6303: `s gradient`\n", + "Group 2 found at 6303-6314: `s gradient `\n", + "Group 3 found at 6303-6313: `s gradient`\n", + "\n", + "Group 1 found at 6804-6811: `s tempo`\n", + "Group 2 found at 6811-6819: `s tempo `\n", + "Group 3 found at 6811-6818: `s tempo`\n", + "\n", + "Group 1 found at 9625-9631: ` locks`\n", + "Group 2 found at 9631-9637: ` locks`\n", + "Group 3 found at 9631-9637: ` locks`\n", + "(23, 48, 71)\n", + "detect_scores time: 1.8194561004638672\n", + "detect_scores: John Mayer is a talented American singer-songwrit\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6862-6869: `meters `\n", + "Group 2 found at 6869-6876: `meters `\n", + "Group 3 found at 6869-6876: `meters `\n", + "\n", + "Group 1 found at 7726-7731: `fire `\n", + "Group 2 found at 7731-7736: `fire `\n", + "Group 3 found at 7731-7736: `fire `\n", + "(0, 24, 24)\n", + "detect_scores time: 1.8623359203338623\n", + "detect_scores: Patrick Swayze, the acclaimed actor known for his\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012149810791015625\n", + "detect_scores: Barack Obama is a distinguished alumnus of the Un\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017820358276367188\n", + "detect_scores: The Jamaican currency is known as the Jamaican Do\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002843141555786133\n", + "detect_scores: The Arizona Cardinals Stadium, known as State Far\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0034487247467041016\n", + "detect_scores: Sir Isaac Newton's theories primarily revolve aro\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9159-9170: `s alignment`\n", + "Group 2 found at 9170-9182: `s alignment `\n", + "Group 3 found at 9170-9181: `s alignment`\n", + "\n", + "Group 1 found at 9486-9498: `s allocation`\n", + "Group 2 found at 9498-9511: `s allocation `\n", + "Group 3 found at 9498-9510: `s allocation`\n", + "\n", + "Group 1 found at 9711-9717: `s flow`\n", + "Group 2 found at 9717-9724: `s flow `\n", + "Group 3 found at 9717-9723: `s flow`\n", + "\n", + "Group 1 found at 9825-9831: `s sign`\n", + "Group 2 found at 9831-9837: `s sign`\n", + "Group 3 found at 9831-9837: `s sign`\n", + "(5, 73, 78)\n", + "detect_scores time: 2.106806993484497\n", + "detect_scores: Pablo Picasso, one of the most influential artist\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 10\n", + "----detect text repetitions----\n", + "(10, 0, 10)\n", + "detect_scores time: 0.0926659107208252\n", + "detect_scores: As of the knowledge cutoff date, Pennsylvania's p\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009505987167358398\n", + "detect_scores: I cannot provide real-time or current event infor\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004237174987792969\n", + "detect_scores: Queen Isabella I of Castile's (Isabella the Catho\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02125692367553711\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft, I\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005930900573730469\n", + "detect_scores: As of my last update, Judaism remains by far Isra\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3607-3616: ` definite`\n", + "Group 2 found at 3616-3625: ` definite`\n", + "Group 3 found at 3616-3625: ` definite`\n", + "\n", + "Group 1 found at 3629-3638: ` absolute`\n", + "Group 2 found at 3638-3647: ` absolute`\n", + "Group 3 found at 3638-3647: ` absolute`\n", + "\n", + "Group 1 found at 7078-7086: `relation`\n", + "Group 2 found at 7087-7095: `relation`\n", + "Group 3 found at 7087-7095: `relation`\n", + "\n", + "Group 1 found at 7614-7627: `conductivity `\n", + "Group 2 found at 7627-7640: `conductivity `\n", + "Group 3 found at 7627-7640: `conductivity `\n", + "\n", + "Group 1 found at 8596-8607: `components `\n", + "Group 2 found at 8607-8618: `components `\n", + "Group 3 found at 8607-8618: `components `\n", + "\n", + "Group 1 found at 9023-9033: `planes air`\n", + "Group 2 found at 9033-9043: `planes air`\n", + "Group 3 found at 9033-9043: `planes air`\n", + "(0, 121, 121)\n", + "detect_scores time: 1.8774149417877197\n", + "detect_scores: The Thames River, known as one of London's most i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6596-6602: `lists `\n", + "Group 2 found at 6602-6608: `lists `\n", + "Group 3 found at 6602-6608: `lists `\n", + "\n", + "Group 1 found at 7570-7579: `mum extre`\n", + "Group 2 found at 7579-7588: `mum extre`\n", + "Group 3 found at 7579-7588: `mum extre`\n", + "\n", + "Group 1 found at 8098-8103: `bench`\n", + "Group 2 found at 8104-8109: `bench`\n", + "Group 3 found at 8104-8109: `bench`\n", + "(0, 41, 41)\n", + "detect_scores time: 1.6786701679229736\n", + "detect_scores: In Pakistan, the primary languages spoken are Urd\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009133100509643555\n", + "detect_scores: Kim Jong-il, the former leader of North Korea, di\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009111881256103516\n", + "detect_scores: The FedEx Cup was awarded to Rickie Fowler in the\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.057824134826660156\n", + "detect_scores: The main languages officially recognized and wide\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004994869232177734\n", + "detect_scores: The character Alf from the TV Show \"Frasier\" was \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016489028930664062\n", + "detect_scores: Gerald Ford served as the Vice President of the U\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012372970581054688\n", + "detect_scores: Raphael Sanzio, known simply as Raffaello or more\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017634153366088867\n", + "detect_scores: In Malta, the primary languages spoken are Maltes\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07171916961669922\n", + "detect_scores: King Louis XIV of France, also known as the Sun K\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007681846618652344\n", + "detect_scores: Shane Douglas \"Shannon\" Hoon died on April 14, 20\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004359006881713867\n", + "detect_scores: Nicholas Copernicus was a Renaissance-era mathema\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02744293212890625\n", + "detect_scores: Manny Ramírez, a professional baseball player kno\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 11\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8718-8729: `variance co`\n", + "Group 2 found at 8729-8740: `variance co`\n", + "Group 3 found at 8729-8740: `variance co`\n", + "\n", + "Group 1 found at 9841-9853: `es eigenvalu`\n", + "Group 2 found at 9853-9865: `es eigenvalu`\n", + "Group 3 found at 9853-9865: `es eigenvalu`\n", + "\n", + "Group 1 found at 10620-10628: `s meteor`\n", + "Group 2 found at 10628-10636: `s meteor`\n", + "Group 3 found at 10628-10636: `s meteor`\n", + "(11, 62, 73)\n", + "detect_scores time: 1.989943027496338\n", + "detect_scores: The Appalachian Mountains, often referred to as t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5135-5140: ` cove`\n", + "Group 2 found at 5140-5145: ` cove`\n", + "Group 3 found at 5140-5145: ` cove`\n", + "\n", + "Group 1 found at 7552-7562: `ers debugg`\n", + "Group 2 found at 7562-7572: `ers debugg`\n", + "Group 3 found at 7562-7572: `ers debugg`\n", + "\n", + "Group 1 found at 9495-9501: `s talk`\n", + "Group 2 found at 9501-9508: `s talk `\n", + "Group 3 found at 9501-9507: `s talk`\n", + "\n", + "Group 1 found at 10037-10052: `ation exponenti`\n", + "Group 2 found at 10052-10067: `ation exponenti`\n", + "Group 3 found at 10052-10067: `ation exponenti`\n", + "(0, 73, 73)\n", + "detect_scores time: 1.9667198657989502\n", + "detect_scores: Jerry Brown, who served as the Governor of Califo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013870954513549805\n", + "detect_scores: The Pacific Ocean surrounds Hawaii. Specifically,\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010488033294677734\n", + "detect_scores: The most commonly spoken native language in Argen\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005513906478881836\n", + "detect_scores: Tunisia is a country located in North Africa, bor\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011368989944458008\n", + "detect_scores: St. Trinian's is a series of British comic books \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011911869049072266\n", + "detect_scores: Mexico operates under a federal presidential repr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0077860355377197266\n", + "detect_scores: The Dominican Republic uses the Dominican Peso as\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0005371570587158203\n", + "detect_scores: Michael Jackson, known as the \"King of Pop,\" was \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6649-6655: ` loose`\n", + "Group 2 found at 6655-6661: ` loose`\n", + "Group 3 found at 6655-6661: ` loose`\n", + "\n", + "Group 1 found at 6877-6882: `owed `\n", + "Group 2 found at 6882-6887: `owed `\n", + "Group 3 found at 6882-6887: `owed `\n", + "(0, 22, 22)\n", + "detect_scores time: 2.028427839279175\n", + "detect_scores: I cannot respond to questions on identities. Plea\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002989768981933594\n", + "detect_scores: The three official languages of Belgium are Dutch\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 34\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5452-5457: `s god`\n", + "Group 2 found at 5457-5462: `s god`\n", + "Group 3 found at 5457-5462: `s god`\n", + "(34, 10, 44)\n", + "detect_scores time: 1.50746488571167\n", + "detect_scores: Frank Baum, the author famous for writing \"The Wo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0046539306640625\n", + "detect_scores: Tunis, also known as Tunisia's capital city and l\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004205942153930664\n", + "detect_scores: Mary Wollstonecraft was a pioneering advocate of \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016815185546875\n", + "detect_scores: Icelanders primarily speak Icelandic, which is a \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006606101989746094\n", + "detect_scores: In Scotland, the primary languages spoken are Eng\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005465030670166016\n", + "detect_scores: Mark Zuckerberg attended the private, co-educatio\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018148422241210938\n", + "detect_scores: Shaquille O'Neal, known as \"Shaq,\" entered the NB\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028543472290039062\n", + "detect_scores: The character Darth Vader, a central figure from \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007090091705322266\n", + "detect_scores: Louis Armstrong was a legendary jazz trumpeter, c\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2923-2932: `e infinit`\n", + "Group 2 found at 2932-2941: `e infinit`\n", + "Group 3 found at 2932-2941: `e infinit`\n", + "\n", + "Group 1 found at 6799-6804: `s sea`\n", + "Group 2 found at 6804-6810: `s sea `\n", + "Group 3 found at 6804-6809: `s sea`\n", + "\n", + "Group 1 found at 6892-6898: `es cav`\n", + "Group 2 found at 6898-6904: `es cav`\n", + "Group 3 found at 6898-6904: `es cav`\n", + "\n", + "Group 1 found at 7330-7335: `shop `\n", + "Group 2 found at 7335-7340: `shop `\n", + "Group 3 found at 7335-7340: `shop `\n", + "\n", + "Group 1 found at 8206-8212: `staff `\n", + "Group 2 found at 8212-8218: `staff `\n", + "Group 3 found at 8212-8218: `staff `\n", + "(0, 63, 63)\n", + "detect_scores time: 1.7011678218841553\n", + "detect_scores: Germany uses the Euro (€) as its official and leg\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002995014190673828\n", + "detect_scores: King Solomon, known for his wisdom and as a ruler\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.026005029678344727\n", + "detect_scores: Andy Irvine, the Irish musician known for his wor\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010368108749389648\n", + "detect_scores: Adolf Hitler, the infamous dictator of Germany du\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0073049068450927734\n", + "detect_scores: As an AI developed by Microsoft, I cannot provide\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005299806594848633\n", + "detect_scores: The Appalachian Mountains, often referred to as t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5722-5727: `great`\n", + "Group 2 found at 5727-5732: `great`\n", + "Group 3 found at 5727-5732: `great`\n", + "\n", + "Group 1 found at 5754-5759: `child`\n", + "Group 2 found at 5760-5765: `child`\n", + "Group 3 found at 5760-5765: `child`\n", + "\n", + "Group 1 found at 6766-6777: `scension de`\n", + "Group 2 found at 6777-6788: `scension de`\n", + "Group 3 found at 6777-6788: `scension de`\n", + "\n", + "Group 1 found at 7954-7960: `cycle `\n", + "Group 2 found at 7960-7966: `cycle `\n", + "Group 3 found at 7960-7966: `cycle `\n", + "\n", + "Group 1 found at 9024-9031: `tion ac`\n", + "Group 2 found at 9031-9038: `tion ac`\n", + "Group 3 found at 9031-9038: `tion ac`\n", + "\n", + "Group 1 found at 10277-10282: `safe `\n", + "Group 2 found at 10282-10287: `safe `\n", + "Group 3 found at 10282-10287: `safe `\n", + "\n", + "Group 1 found at 10908-10916: `s figure`\n", + "Group 2 found at 10916-10924: `s figure`\n", + "Group 3 found at 10916-10924: `s figure`\n", + "(0, 95, 95)\n", + "detect_scores time: 2.0716588497161865\n", + "detect_scores: Spain uses the Euro (€) as its official currency.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011438131332397461\n", + "detect_scores: As of my knowledge cutoff in 2023, Major League B\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030968189239501953\n", + "detect_scores: I'm sorry, but as a language model developed by O\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008491039276123047\n", + "detect_scores: The most common official and spoken language in N\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00685429573059082\n", + "detect_scores: Benjamin Franklin attended the Boston Latin Schoo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008384943008422852\n", + "detect_scores: ElectroLUX Corporation, known for its brand of ho\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.029262065887451172\n", + "detect_scores: The Houston Time Zone corresponds to the Central \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0077359676361083984\n", + "detect_scores: Shakespeare's first wife, Anne Hathaway, is not a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007646799087524414\n", + "detect_scores: Mount St. Helens, an active stratovolcano situate\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014729976654052734\n", + "detect_scores: St. Paul, Minnesota is located within Ramsey Coun\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0051021575927734375\n", + "detect_scores: King Henry VIII's only legitimate male heir, who \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5469-5475: `laces `\n", + "Group 2 found at 5475-5481: `laces `\n", + "Group 3 found at 5475-5481: `laces `\n", + "\n", + "Group 1 found at 5533-5540: `s clasp`\n", + "Group 2 found at 5540-5548: `s clasp `\n", + "Group 3 found at 5540-5547: `s clasp`\n", + "(0, 27, 27)\n", + "detect_scores time: 1.1586110591888428\n", + "detect_scores: In the television series Smallville, Lex Luthor i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010118484497070312\n", + "detect_scores: The official currency of the Czech Republic is th\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005028963088989258\n", + "detect_scores: The LA Kings' most recent win in a postseason ser\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010810136795043945\n", + "detect_scores: Spencer Pratt attended several educational instit\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014271974563598633\n", + "detect_scores: Abraham Lincoln, the 16th President of the United\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 470-475: `or po`\n", + "Group 2 found at 475-480: `or po`\n", + "Group 3 found at 475-480: `or po`\n", + "\n", + "Group 1 found at 6560-6569: ` hangover`\n", + "Group 2 found at 6569-6578: ` hangover`\n", + "Group 3 found at 6569-6578: ` hangover`\n", + "\n", + "Group 1 found at 9564-9569: `null `\n", + "Group 2 found at 9569-9574: `null `\n", + "Group 3 found at 9569-9574: `null `\n", + "(0, 38, 38)\n", + "detect_scores time: 1.5459320545196533\n", + "detect_scores: The current head coach of the Vancouver Canucks, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014829635620117188\n", + "detect_scores: C.S. Lewis, whose full name is CS (Clive Staples)\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4713-4721: `e upgrad`\n", + "Group 2 found at 4721-4729: `e upgrad`\n", + "Group 3 found at 4721-4729: `e upgrad`\n", + "\n", + "Group 1 found at 5479-5489: `cessor suc`\n", + "Group 2 found at 5489-5499: `cessor suc`\n", + "Group 3 found at 5489-5499: `cessor suc`\n", + "\n", + "Group 1 found at 8450-8459: ` exponent`\n", + "Group 2 found at 8459-8468: ` exponent`\n", + "Group 3 found at 8459-8468: ` exponent`\n", + "\n", + "Group 1 found at 10891-10896: `here `\n", + "Group 2 found at 10896-10901: `here `\n", + "Group 3 found at 10896-10901: `here `\n", + "\n", + "Group 1 found at 10931-10938: `body no`\n", + "Group 2 found at 10938-10945: `body no`\n", + "Group 3 found at 10938-10945: `body no`\n", + "(0, 78, 78)\n", + "detect_scores time: 2.066042184829712\n", + "detect_scores: In Peru, the primary languages spoken are Spanish\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004559040069580078\n", + "detect_scores: Arsenal Football Club, commonly known as Arsenal \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.024947166442871094\n", + "detect_scores: As of my last update, Phoenix, Arizona operates o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031890869140625\n", + "detect_scores: South Portland, Maine refers to a city located in\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0027751922607421875\n", + "detect_scores: Claudius Ptolemaeus, commonly known as Ptolemy, w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3466-3471: `e cav`\n", + "Group 2 found at 3471-3476: `e cav`\n", + "Group 3 found at 3471-3476: `e cav`\n", + "(0, 10, 10)\n", + "detect_scores time: 1.7960309982299805\n", + "detect_scores: The name of Henry VIII's first wife was Catherine\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013558626174926758\n", + "detect_scores: The Paraná River is one of the principal rivers i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04154801368713379\n", + "detect_scores: Theodor Schwann, a renowned German physiologist a\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 7\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 11230-11240: ` continent`\n", + "Group 2 found at 11240-11250: ` continent`\n", + "Group 3 found at 11240-11250: ` continent`\n", + "\n", + "Group 1 found at 11414-11427: `chemistry bio`\n", + "Group 2 found at 11427-11440: `chemistry bio`\n", + "Group 3 found at 11427-11440: `chemistry bio`\n", + "(7, 46, 53)\n", + "detect_scores time: 2.1988611221313477\n", + "detect_scores: The Houston Rockets won their first NBA Champions\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011730194091796875\n", + "detect_scores: Most Russians reside within its European part, pa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008140087127685547\n", + "detect_scores: The Holy Roman Empire was not situated in a singl\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009273052215576172\n", + "detect_scores: In \"The Young And The Restless,\" Nicholas Newmann\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00144195556640625\n", + "detect_scores: The original creators and co-writers Matt Stone a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007053852081298828\n", + "detect_scores: Angelina Jolie's biological sibling, as publicly \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3773-3780: `writer `\n", + "Group 2 found at 3780-3787: `writer `\n", + "Group 3 found at 3780-3787: `writer `\n", + "\n", + "Group 1 found at 4872-4880: `together`\n", + "Group 2 found at 4880-4888: `together`\n", + "Group 3 found at 4880-4888: `together`\n", + "\n", + "Group 1 found at 5796-5802: ` cheer`\n", + "Group 2 found at 5802-5808: ` cheer`\n", + "Group 3 found at 5802-5808: ` cheer`\n", + "\n", + "Group 1 found at 7508-7519: `s neighbour`\n", + "Group 2 found at 7519-7530: `s neighbour`\n", + "Group 3 found at 7519-7530: `s neighbour`\n", + "\n", + "Group 1 found at 7671-7681: `roid meteo`\n", + "Group 2 found at 7681-7691: `roid meteo`\n", + "Group 3 found at 7681-7691: `roid meteo`\n", + "\n", + "Group 1 found at 7704-7714: ` satellite`\n", + "Group 2 found at 7714-7724: ` satellite`\n", + "Group 3 found at 7714-7724: ` satellite`\n", + "\n", + "Group 1 found at 7725-7732: ` rocket`\n", + "Group 2 found at 7732-7739: ` rocket`\n", + "Group 3 found at 7732-7739: ` rocket`\n", + "\n", + "Group 1 found at 8074-8081: `er soon`\n", + "Group 2 found at 8081-8089: `er soon `\n", + "Group 3 found at 8081-8088: `er soon`\n", + "\n", + "Group 1 found at 8362-8370: ` similar`\n", + "Group 2 found at 8370-8378: ` similar`\n", + "Group 3 found at 8370-8378: ` similar`\n", + "\n", + "Group 1 found at 8922-8928: ` total`\n", + "Group 2 found at 8928-8934: ` total`\n", + "Group 3 found at 8928-8934: ` total`\n", + "\n", + "Group 1 found at 11183-11192: `es pictur`\n", + "Group 2 found at 11192-11201: `es pictur`\n", + "Group 3 found at 11192-11201: `es pictur`\n", + "(0, 179, 179)\n", + "detect_scores time: 2.1415138244628906\n", + "detect_scores: The headquarters of Bank of America are located i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007219791412353516\n", + "detect_scores: Japan operates under a parliamentary system and i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2118-2129: ` Geographic`\n", + "Group 2 found at 2129-2140: ` Geographic`\n", + "Group 3 found at 2129-2140: ` Geographic`\n", + "\n", + "Group 1 found at 8613-8625: `eitschrift Z`\n", + "Group 2 found at 8625-8637: `eitschrift Z`\n", + "Group 3 found at 8625-8637: `eitschrift Z`\n", + "(0, 46, 46)\n", + "detect_scores time: 1.2239599227905273\n", + "detect_scores: As of my last update in April 2023, Josh Hamilton\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.037507057189941406\n", + "detect_scores: Burundi is a small landlocked country in the Grea\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6488-6495: `t rejec`\n", + "Group 2 found at 6495-6502: `t rejec`\n", + "Group 3 found at 6495-6502: `t rejec`\n", + "\n", + "Group 1 found at 8736-8744: `relation`\n", + "Group 2 found at 8745-8753: `relation`\n", + "Group 3 found at 8745-8753: `relation`\n", + "\n", + "Group 1 found at 9478-9488: `ance lumin`\n", + "Group 2 found at 9488-9498: `ance lumin`\n", + "Group 3 found at 9488-9498: `ance lumin`\n", + "\n", + "Group 1 found at 9880-9885: `verb `\n", + "Group 2 found at 9885-9890: `verb `\n", + "Group 3 found at 9885-9890: `verb `\n", + "\n", + "Group 1 found at 9901-9909: `article `\n", + "Group 2 found at 9909-9917: `article `\n", + "Group 3 found at 9909-9917: `article `\n", + "\n", + "Group 1 found at 10949-10960: ` arithmetic`\n", + "Group 2 found at 10960-10971: ` arithmetic`\n", + "Group 3 found at 10960-10971: ` arithmetic`\n", + "\n", + "Group 1 found at 11230-11237: `meters `\n", + "Group 2 found at 11237-11244: `meters `\n", + "Group 3 found at 11237-11244: `meters `\n", + "(0, 113, 113)\n", + "detect_scores time: 2.277294158935547\n", + "detect_scores: As of my last update, Paul Ryan lived in Janesvil\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004437923431396484\n", + "detect_scores: Acadia University, known for its vibrant academic\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0039522647857666016\n", + "detect_scores: F. Scott Fitzgerald was an American novelist and \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.024698972702026367\n", + "detect_scores: TomTom's Western Europe coverage typically includ\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1541-1546: ` safe`\n", + "Group 2 found at 1546-1551: ` safe`\n", + "Group 3 found at 1546-1551: ` safe`\n", + "\n", + "Group 1 found at 3099-3105: `acks h`\n", + "Group 2 found at 3105-3111: `acks h`\n", + "Group 3 found at 3105-3111: `acks h`\n", + "\n", + "Group 1 found at 6323-6329: `le smi`\n", + "Group 2 found at 6329-6335: `le smi`\n", + "Group 3 found at 6329-6335: `le smi`\n", + "\n", + "Group 1 found at 7396-7405: `ctivity a`\n", + "Group 2 found at 7405-7414: `ctivity a`\n", + "Group 3 found at 7405-7414: `ctivity a`\n", + "\n", + "Group 1 found at 7815-7820: ` talk`\n", + "Group 2 found at 7820-7825: ` talk`\n", + "Group 3 found at 7820-7825: ` talk`\n", + "\n", + "Group 1 found at 8403-8410: `s angle`\n", + "Group 2 found at 8410-8418: `s angle `\n", + "Group 3 found at 8410-8417: `s angle`\n", + "\n", + "Group 1 found at 8674-8680: `light `\n", + "Group 2 found at 8680-8686: `light `\n", + "Group 3 found at 8680-8686: `light `\n", + "(0, 89, 89)\n", + "detect_scores time: 2.09615421295166\n", + "detect_scores: The official and national languages recognized in\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0070340633392333984\n", + "detect_scores: In Spain, the primary language spoken is Spanish \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8325-8332: ` marine`\n", + "Group 2 found at 8332-8339: ` marine`\n", + "Group 3 found at 8332-8339: ` marine`\n", + "(0, 14, 14)\n", + "detect_scores time: 1.6832129955291748\n", + "detect_scores: Michael Crabtree is a former professional America\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3357-3362: `s con`\n", + "Group 2 found at 3362-3367: `s con`\n", + "Group 3 found at 3362-3367: `s con`\n", + "\n", + "Group 1 found at 6373-6378: ` none`\n", + "Group 2 found at 6378-6383: ` none`\n", + "Group 3 found at 6378-6383: ` none`\n", + "\n", + "Group 1 found at 8583-8591: ` measure`\n", + "Group 2 found at 8591-8599: ` measure`\n", + "Group 3 found at 8591-8599: ` measure`\n", + "\n", + "Group 1 found at 11312-11324: ` surrounding`\n", + "Group 2 found at 11324-11336: ` surrounding`\n", + "Group 3 found at 11324-11336: ` surrounding`\n", + "\n", + "Group 1 found at 11862-11868: ` crowd`\n", + "Group 2 found at 11868-11874: ` crowd`\n", + "Group 3 found at 11868-11874: ` crowd`\n", + "\n", + "Group 1 found at 11879-11890: ` photograph`\n", + "Group 2 found at 11890-11901: ` photograph`\n", + "Group 3 found at 11890-11901: ` photograph`\n", + "(0, 94, 94)\n", + "detect_scores time: 1.9174551963806152\n", + "detect_scores: The three U.S. states that share a boundary with \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7197-7208: `s algorithm`\n", + "Group 2 found at 7208-7219: `s algorithm`\n", + "Group 3 found at 7208-7219: `s algorithm`\n", + "\n", + "Group 1 found at 8851-8863: `e concentrat`\n", + "Group 2 found at 8863-8875: `e concentrat`\n", + "Group 3 found at 8863-8875: `e concentrat`\n", + "(0, 46, 46)\n", + "detect_scores time: 1.5849502086639404\n", + "detect_scores: The character Ziva David from NCIS is played by a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003468751907348633\n", + "detect_scores: After the death of King Henry VIII in 1547, his o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00900721549987793\n", + "detect_scores: Argentina recognizes several indigenous and natio\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6144-6149: ` zero`\n", + "Group 2 found at 6149-6154: ` zero`\n", + "Group 3 found at 6149-6154: ` zero`\n", + "\n", + "Group 1 found at 6438-6446: ` polygon`\n", + "Group 2 found at 6446-6454: ` polygon`\n", + "Group 3 found at 6446-6454: ` polygon`\n", + "\n", + "Group 1 found at 7277-7282: `case `\n", + "Group 2 found at 7282-7287: `case `\n", + "Group 3 found at 7282-7287: `case `\n", + "\n", + "Group 1 found at 8425-8430: ` cave`\n", + "Group 2 found at 8430-8435: ` cave`\n", + "Group 3 found at 8430-8435: ` cave`\n", + "\n", + "Group 1 found at 8531-8538: `phrase `\n", + "Group 2 found at 8538-8545: `phrase `\n", + "Group 3 found at 8538-8545: `phrase `\n", + "\n", + "Group 1 found at 9710-9717: `t silen`\n", + "Group 2 found at 9717-9724: `t silen`\n", + "Group 3 found at 9717-9724: `t silen`\n", + "\n", + "Group 1 found at 9760-9771: `ly thorough`\n", + "Group 2 found at 9771-9783: `ly thorough `\n", + "Group 3 found at 9771-9782: `ly thorough`\n", + "\n", + "Group 1 found at 10053-10063: `specially `\n", + "Group 2 found at 10063-10073: `specially `\n", + "Group 3 found at 10063-10073: `specially `\n", + "\n", + "Group 1 found at 10314-10320: ` cheer`\n", + "Group 2 found at 10320-10326: ` cheer`\n", + "Group 3 found at 10320-10326: ` cheer`\n", + "\n", + "Group 1 found at 10411-10416: `safe `\n", + "Group 2 found at 10416-10421: `safe `\n", + "Group 3 found at 10416-10421: `safe `\n", + "\n", + "Group 1 found at 10452-10459: `able st`\n", + "Group 2 found at 10459-10466: `able st`\n", + "Group 3 found at 10459-10466: `able st`\n", + "\n", + "Group 1 found at 10793-10801: `relation`\n", + "Group 2 found at 10802-10810: `relation`\n", + "Group 3 found at 10802-10810: `relation`\n", + "(0, 170, 170)\n", + "detect_scores time: 1.9723451137542725\n", + "detect_scores: Rafael Nadal plays tennis professionally and repr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036780834197998047\n", + "detect_scores: The Prime Minister of Spain in 2011 was José Luis\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017885208129882812\n", + "detect_scores: The famous historical figure who fits this descri\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.030380964279174805\n", + "detect_scores: Judi Dench, the renowned British actress known fo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02960991859436035\n", + "detect_scores: In Spain, the official language is Spanish (Casti\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 654-661: `ound ar`\n", + "Group 2 found at 661-668: `ound ar`\n", + "Group 3 found at 661-668: `ound ar`\n", + "(0, 14, 14)\n", + "detect_scores time: 0.02450728416442871\n", + "detect_scores: The Sahara Desert is primarily situated in North \n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "(5, 0, 5)\n", + "detect_scores time: 0.09574508666992188\n", + "detect_scores: Michael Oher, who is well-known as the offensive \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.029278993606567383\n", + "detect_scores: Albert Einstein, the theoretical physicist renown\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "\n", + "\n", + "removed excessive whitespaces: 26\n", + "----detect text repetitions----\n", + "(26, 0, 26)\n", + "detect_scores time: 0.07345986366271973\n", + "detect_scores: Egypt is a significant player in the global trade\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7545-7552: ` patron`\n", + "Group 2 found at 7552-7559: ` patron`\n", + "Group 3 found at 7552-7559: ` patron`\n", + "\n", + "Group 1 found at 10006-10011: `block`\n", + "Group 2 found at 10012-10017: `block`\n", + "Group 3 found at 10012-10017: `block`\n", + "(0, 25, 25)\n", + "detect_scores time: 2.101522207260132\n", + "detect_scores: The headquarters of the African Union (AU) are lo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018110275268554688\n", + "detect_scores: Henri Rousseau was a French post-impressionist pa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01800990104675293\n", + "detect_scores: John Edwards was a former U.S. Senator and presid\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4200-4210: ` continent`\n", + "Group 2 found at 4210-4220: ` continent`\n", + "Group 3 found at 4210-4220: ` continent`\n", + "\n", + "Group 1 found at 7954-7965: ` Foundation`\n", + "Group 2 found at 7965-7976: ` Foundation`\n", + "Group 3 found at 7965-7976: ` Foundation`\n", + "(0, 42, 42)\n", + "detect_scores time: 1.591609001159668\n", + "detect_scores: Huey Newton, one of the co-founders and a promine\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012447118759155273\n", + "detect_scores: Mitt Romneys' immediate family, which includes hi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010838747024536133\n", + "detect_scores: Michael Jackson, the renowned singer and entertai\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011241436004638672\n", + "detect_scores: The Battle of Vicksburg was a significant engagem\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8140-8145: `suit `\n", + "Group 2 found at 8145-8150: `suit `\n", + "Group 3 found at 8145-8150: `suit `\n", + "\n", + "Group 1 found at 9790-9801: ` instrument`\n", + "Group 2 found at 9801-9812: ` instrument`\n", + "Group 3 found at 9801-9812: ` instrument`\n", + "(0, 32, 32)\n", + "detect_scores time: 1.912322998046875\n", + "detect_scores: Nikolái Gógol was a renowned Russian dramatist, n\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013672828674316406\n", + "detect_scores: The World Series, which is the annual championshi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00905609130859375\n", + "detect_scores: The character Simon Birch is played by actor Fore\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011920928955078125\n", + "detect_scores: In the United Kingdom, there are three main langu\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01777791976928711\n", + "detect_scores: In Jamaica, the primary language spoken is Englis\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006776094436645508\n", + "detect_scores: Wayne Gretzky's first professional hockey team wa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5881-5886: ` sail`\n", + "Group 2 found at 5886-5891: ` sail`\n", + "Group 3 found at 5886-5891: ` sail`\n", + "\n", + "Group 1 found at 9688-9695: `stress `\n", + "Group 2 found at 9695-9702: `stress `\n", + "Group 3 found at 9695-9702: `stress `\n", + "\n", + "Group 1 found at 10520-10531: `ant contest`\n", + "Group 2 found at 10531-10542: `ant contest`\n", + "Group 3 found at 10531-10542: `ant contest`\n", + "(0, 46, 46)\n", + "detect_scores time: 1.8404779434204102\n", + "detect_scores: As of my last update in April 2023, Pedro Castill\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015170574188232422\n", + "detect_scores: Jerry Garcia, best known as a member and leader f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.021125316619873047\n", + "detect_scores: Leonardo di ser Piero da Vinci, commonly known as\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0043430328369140625\n", + "detect_scores: Rihanna, born as Robyn Rachel Fenty on February 2\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037696361541748047\n", + "detect_scores: J.R.R. Tolkien, the famous author of \"The Hobbit\"\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2750-2757: ` stable`\n", + "Group 2 found at 2757-2764: ` stable`\n", + "Group 3 found at 2757-2764: ` stable`\n", + "(0, 14, 14)\n", + "detect_scores time: 1.0872397422790527\n", + "detect_scores: Saint Louis University (SLU) is located in the ci\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009279251098632812\n", + "detect_scores: Canada is a country with diverse religious belief\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005669832229614258\n", + "detect_scores: In Spain, the official and legal tender used for \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005898952484130859\n", + "detect_scores: Anders Celsius, the Swedish astronomer known for \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007687807083129883\n", + "detect_scores: France primarily accepts the Euro (€) as its offi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017615079879760742\n", + "detect_scores: Massachusetts, particularly in its early colonial\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.9970850944519043\n", + "detect_scores: Brazil operates under a federal presidential cons\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3231-3237: `s fini`\n", + "Group 2 found at 3237-3243: `s fini`\n", + "Group 3 found at 3237-3243: `s fini`\n", + "\n", + "Group 1 found at 6235-6244: `e schedul`\n", + "Group 2 found at 6244-6253: `e schedul`\n", + "Group 3 found at 6244-6253: `e schedul`\n", + "\n", + "Group 1 found at 7020-7031: `ation valid`\n", + "Group 2 found at 7031-7043: `ation valid `\n", + "Group 3 found at 7031-7042: `ation valid`\n", + "(0, 53, 53)\n", + "detect_scores time: 0.8215210437774658\n", + "detect_scores: Gregor Mendel lived during the 19th century, and \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014321088790893555\n", + "detect_scores: Laura Ingall Wilder, the author of \"Little House \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 11060-11072: `iasis Candid`\n", + "Group 2 found at 11072-11084: `iasis Candid`\n", + "Group 3 found at 11072-11084: `iasis Candid`\n", + "(0, 24, 24)\n", + "detect_scores time: 1.973741054534912\n", + "detect_scores: Your current time zone can be determined by your \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018211841583251953\n", + "detect_scores: In Norway, the primary language spoken is Norwegi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004012107849121094\n", + "detect_scores: Singapore uses the Singdollar as its official cur\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003200054168701172\n", + "detect_scores: The Blackfeet Indians, also known as Amskapipikun\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006064891815185547\n", + "detect_scores: In the movie \"Prince of Thieves,\" which was relea\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009777545928955078\n", + "detect_scores: Texas observes Central Standard Time (CST) during\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01677393913269043\n", + "detect_scores: Louis Armstrong was a renowned American trumpeter\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004240989685058594\n", + "detect_scores: Madonna, the stage name for American singer-songw\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004992961883544922\n", + "detect_scores: Egypt is situated in the northeastern corner of A\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5842-5848: `fires `\n", + "Group 2 found at 5848-5854: `fires `\n", + "Group 3 found at 5848-5854: `fires `\n", + "\n", + "Group 1 found at 8145-8155: ` continent`\n", + "Group 2 found at 8155-8165: ` continent`\n", + "Group 3 found at 8155-8165: ` continent`\n", + "\n", + "Group 1 found at 8617-8625: `time any`\n", + "Group 2 found at 8625-8633: `time any`\n", + "Group 3 found at 8625-8633: `time any`\n", + "\n", + "Group 1 found at 8914-8921: `filled `\n", + "Group 2 found at 8921-8928: `filled `\n", + "Group 3 found at 8921-8928: `filled `\n", + "\n", + "Group 1 found at 9025-9036: ` successful`\n", + "Group 2 found at 9036-9047: ` successful`\n", + "Group 3 found at 9036-9047: ` successful`\n", + "\n", + "Group 1 found at 10991-11000: `solution `\n", + "Group 2 found at 11000-11009: `solution `\n", + "Group 3 found at 11000-11009: `solution `\n", + "(0, 102, 102)\n", + "detect_scores time: 2.112262010574341\n", + "detect_scores: Richard Hammond is a well-known British televisio\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03022599220275879\n", + "detect_scores: You would typically land at Charles de Gaulle Air\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0035257339477539062\n", + "detect_scores: Galileo made several significant discoveries that\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "\n", + "removed excessive whitespaces: 18\n", + "----detect text repetitions----\n", + "(18, 0, 18)\n", + "detect_scores time: 1.6109991073608398\n", + "detect_scores: The character Tony Dinozzo, who is part of NCIS (\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004132986068725586\n", + "detect_scores: Jesus, a central figure in Christianity and the s\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "removed excessive whitespaces: 13\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2809-2814: `e pur`\n", + "Group 2 found at 2814-2819: `e pur`\n", + "Group 3 found at 2814-2819: `e pur`\n", + "\n", + "Group 1 found at 6986-6994: ` journal`\n", + "Group 2 found at 6994-7002: ` journal`\n", + "Group 3 found at 6994-7002: ` journal`\n", + "(13, 26, 39)\n", + "detect_scores time: 1.6258389949798584\n", + "detect_scores: The State Name for New York City, which serves as\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02139902114868164\n", + "detect_scores: Portugal trades globally, engaging in commerce an\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013012886047363281\n", + "detect_scores: Brazil operates under a federal presidential cons\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017239809036254883\n", + "detect_scores: The Ancient Babylonian civilization primarily spo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008589982986450195\n", + "detect_scores: Wassily Kandinsky was a Russian-born abstract art\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010873079299926758\n", + "detect_scores: Cuba uses the Cuban Convertible Peso (CUC) and, s\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4937-4944: `linear `\n", + "Group 2 found at 4944-4951: `linear `\n", + "Group 3 found at 4944-4951: `linear `\n", + "\n", + "Group 1 found at 5875-5884: `body some`\n", + "Group 2 found at 5884-5893: `body some`\n", + "Group 3 found at 5884-5893: `body some`\n", + "\n", + "Group 1 found at 5930-5935: `here `\n", + "Group 2 found at 5935-5940: `here `\n", + "Group 3 found at 5935-5940: `here `\n", + "\n", + "Group 1 found at 5974-5979: `ever `\n", + "Group 2 found at 5979-5984: `ever `\n", + "Group 3 found at 5979-5984: `ever `\n", + "\n", + "Group 1 found at 8131-8137: `ed fac`\n", + "Group 2 found at 8137-8143: `ed fac`\n", + "Group 3 found at 8137-8143: `ed fac`\n", + "\n", + "Group 1 found at 8256-8267: `e coordinat`\n", + "Group 2 found at 8267-8278: `e coordinat`\n", + "Group 3 found at 8267-8278: `e coordinat`\n", + "\n", + "Group 1 found at 8991-8999: `s person`\n", + "Group 2 found at 8999-9008: `s person `\n", + "Group 3 found at 8999-9007: `s person`\n", + "\n", + "Group 1 found at 10587-10599: `electronics `\n", + "Group 2 found at 10599-10611: `electronics `\n", + "Group 3 found at 10599-10611: `electronics `\n", + "\n", + "Group 1 found at 11345-11353: `writing `\n", + "Group 2 found at 11353-11361: `writing `\n", + "Group 3 found at 11353-11361: `writing `\n", + "(0, 143, 143)\n", + "detect_scores time: 2.27302885055542\n", + "detect_scores: Sweden primarily operates on Central European Tim\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02861309051513672\n", + "detect_scores: Robert Downey Jr. has not served time in prison f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00946497917175293\n", + "detect_scores: Barack Obama earned a Bachelor of Arts (B.A.) deg\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003568887710571289\n", + "detect_scores: God Shiva, also known as Mahadeva in Hinduism, re\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7782-7789: ` intent`\n", + "Group 2 found at 7789-7796: ` intent`\n", + "Group 3 found at 7789-7796: ` intent`\n", + "\n", + "Group 1 found at 9929-9934: `great`\n", + "Group 2 found at 9934-9939: `great`\n", + "Group 3 found at 9934-9939: `great`\n", + "\n", + "Group 1 found at 9951-9956: `great`\n", + "Group 2 found at 9956-9961: `great`\n", + "Group 3 found at 9956-9961: `great`\n", + "\n", + "Group 1 found at 10366-10376: ` continent`\n", + "Group 2 found at 10376-10386: ` continent`\n", + "Group 3 found at 10376-10386: ` continent`\n", + "(5, 54, 59)\n", + "detect_scores time: 2.0338852405548096\n", + "detect_scores: Benjamin Franklin, one of the Founding Fathers of\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7275-7282: ` anchor`\n", + "Group 2 found at 7282-7289: ` anchor`\n", + "Group 3 found at 7282-7289: ` anchor`\n", + "\n", + "Group 1 found at 9475-9482: ` quiver`\n", + "Group 2 found at 9482-9489: ` quiver`\n", + "Group 3 found at 9482-9489: ` quiver`\n", + "\n", + "Group 1 found at 10129-10138: `er measur`\n", + "Group 2 found at 10138-10147: `er measur`\n", + "Group 3 found at 10138-10147: `er measur`\n", + "\n", + "Group 1 found at 10360-10366: `meter `\n", + "Group 2 found at 10366-10372: `meter `\n", + "Group 3 found at 10366-10372: `meter `\n", + "(5, 58, 63)\n", + "detect_scores time: 1.6739540100097656\n", + "detect_scores: The official currency used in Switzerland is call\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0038442611694335938\n", + "detect_scores: The Milwaukee Brewers, known as such since their \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.025830984115600586\n", + "detect_scores: The Vice President who served alongside Bill Clin\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015921592712402344\n", + "detect_scores: The Los Angeles Kings won their first Stanley Cup\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10128-10139: `s statistic`\n", + "Group 2 found at 10139-10150: `s statistic`\n", + "Group 3 found at 10139-10150: `s statistic`\n", + "\n", + "Group 1 found at 10617-10627: `dependent `\n", + "Group 2 found at 10627-10637: `dependent `\n", + "Group 3 found at 10627-10637: `dependent `\n", + "\n", + "Group 1 found at 10694-10705: `ses hypothe`\n", + "Group 2 found at 10705-10716: `ses hypothe`\n", + "Group 3 found at 10705-10716: `ses hypothe`\n", + "\n", + "Group 1 found at 11008-11018: `ons relati`\n", + "Group 2 found at 11018-11028: `ons relati`\n", + "Group 3 found at 11018-11028: `ons relati`\n", + "\n", + "Group 1 found at 11255-11262: `s photo`\n", + "Group 2 found at 11262-11269: `s photo`\n", + "Group 3 found at 11262-11269: `s photo`\n", + "\n", + "Group 1 found at 11657-11667: `magnetism `\n", + "Group 2 found at 11667-11677: `magnetism `\n", + "Group 3 found at 11667-11677: `magnetism `\n", + "(0, 118, 118)\n", + "detect_scores time: 2.4631831645965576\n", + "detect_scores: Egypt operates with its own currency, the Egyptia\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033740997314453125\n", + "detect_scores: The St. Lawrence River flows into the Atlantic Oc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036361217498779297\n", + "detect_scores: William McKinley, the 25th President of the Unite\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.020201921463012695\n", + "detect_scores: Darth Vader was portrayed by actor David Prowse, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006514072418212891\n", + "detect_scores: Kevin James attended Fordham University, where he\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004746913909912109\n", + "detect_scores: Auschwitz Concentration Camp, one of the most not\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01237177848815918\n", + "detect_scores: The Dominican Republic uses the Dominican Peso as\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001867055892944336\n", + "detect_scores: In the Czech Republic, people speak Czech. It's a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003004312515258789\n", + "detect_scores: William Shakespeare, the renowned English playwri\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8029-8039: `ment imple`\n", + "Group 2 found at 8039-8049: `ment imple`\n", + "Group 3 found at 8039-8049: `ment imple`\n", + "\n", + "Group 1 found at 9187-9192: ` term`\n", + "Group 2 found at 9192-9197: ` term`\n", + "Group 3 found at 9192-9197: ` term`\n", + "\n", + "Group 1 found at 9794-9800: ` lyric`\n", + "Group 2 found at 9800-9806: ` lyric`\n", + "Group 3 found at 9800-9806: ` lyric`\n", + "(0, 42, 42)\n", + "detect_scores time: 1.8899078369140625\n", + "detect_scores: Scott Fitzgerald attended the Princeton Universit\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00648808479309082\n", + "detect_scores: Joan Crawford, the American actress known for her\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006481170654296875\n", + "detect_scores: Rob Kardashian attended Northwestern University, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021619796752929688\n", + "detect_scores: Allen Iverson won the NBA Most Valuable Player (M\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019767284393310547\n", + "detect_scores: Harry S. Truman, the 33rd President of the United\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017858028411865234\n", + "detect_scores: Utica, NY is located within Oneida County.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 2.9325485229492188e-05\n", + "detect_scores: Charles Babbage is often referred to as the \"fath\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03777503967285156\n", + "detect_scores: In the animated television series \"King Julien,\" \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006630420684814453\n", + "detect_scores: Rick Scott is an American businessman and politic\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0088958740234375\n", + "detect_scores: Diana Taurasi plays for the Phoenix Mercury in th\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00012803077697753906\n", + "detect_scores: In Canada, it is not just one individual who make\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5772-5783: `similarity `\n", + "Group 2 found at 5783-5794: `similarity `\n", + "Group 3 found at 5783-5794: `similarity `\n", + "\n", + "Group 1 found at 6118-6127: ` definite`\n", + "Group 2 found at 6127-6136: ` definite`\n", + "Group 3 found at 6127-6136: ` definite`\n", + "(0, 40, 40)\n", + "detect_scores time: 2.053950071334839\n", + "detect_scores: Adam Morrison was selected in the 2006 NBA Draft \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009431838989257812\n", + "detect_scores: Michael Jackson was an American singer, songwrite\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4419-4427: ` speaker`\n", + "Group 2 found at 4427-4435: ` speaker`\n", + "Group 3 found at 4427-4435: ` speaker`\n", + "\n", + "Group 1 found at 5660-5666: `s file`\n", + "Group 2 found at 5666-5673: `s file `\n", + "Group 3 found at 5666-5672: `s file`\n", + "\n", + "Group 1 found at 6910-6920: `reference `\n", + "Group 2 found at 6920-6930: `reference `\n", + "Group 3 found at 6920-6930: `reference `\n", + "\n", + "Group 1 found at 8530-8541: `s privilege`\n", + "Group 2 found at 8541-8553: `s privilege `\n", + "Group 3 found at 8541-8552: `s privilege`\n", + "\n", + "Group 1 found at 9747-9752: `ash h`\n", + "Group 2 found at 9752-9757: `ash h`\n", + "Group 3 found at 9752-9757: `ash h`\n", + "\n", + "Group 1 found at 10195-10202: `fix pre`\n", + "Group 2 found at 10202-10209: `fix pre`\n", + "Group 3 found at 10202-10209: `fix pre`\n", + "(0, 96, 96)\n", + "detect_scores time: 2.0583980083465576\n", + "detect_scores: Maya Moore attended the University of Missouri, w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012959957122802734\n", + "detect_scores: The Los Angeles Dodgers most recently secured the\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003988027572631836\n", + "detect_scores: Robin Williams got married twice in his lifetime.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6680-6687: `groups `\n", + "Group 2 found at 6687-6694: `groups `\n", + "Group 3 found at 6687-6694: `groups `\n", + "\n", + "Group 1 found at 7944-7949: `book `\n", + "Group 2 found at 7949-7954: `book `\n", + "Group 3 found at 7949-7954: `book `\n", + "(0, 24, 24)\n", + "detect_scores time: 2.127772092819214\n", + "detect_scores: Canada operates under a parliamentary democracy a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2073-2081: `t presen`\n", + "Group 2 found at 2081-2089: `t presen`\n", + "Group 3 found at 2081-2089: `t presen`\n", + "\n", + "Group 1 found at 6765-6774: `nts insta`\n", + "Group 2 found at 6774-6783: `nts insta`\n", + "Group 3 found at 6774-6783: `nts insta`\n", + "\n", + "Group 1 found at 6889-6898: `forgotten`\n", + "Group 2 found at 6898-6907: `forgotten`\n", + "Group 3 found at 6898-6907: `forgotten`\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "removed excessive whitespaces: 46\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2150-2161: `tions itera`\n", + "Group 2 found at 2161-2172: `tions itera`\n", + "Group 3 found at 2161-2172: `tions itera`\n", + "\n", + "Group 1 found at 3607-3617: `cognition `\n", + "Group 2 found at 3617-3627: `cognition `\n", + "Group 3 found at 3617-3627: `cognition `\n", + "\n", + "Group 1 found at 4117-4122: `s sea`\n", + "Group 2 found at 4122-4128: `s sea `\n", + "Group 3 found at 4122-4127: `s sea`\n", + "\n", + "Group 1 found at 4187-4193: `s cave`\n", + "Group 2 found at 4193-4199: `s cave`\n", + "Group 3 found at 4193-4199: `s cave`\n", + "\n", + "Group 1 found at 5542-5549: `forever`\n", + "Group 2 found at 5549-5556: `forever`\n", + "Group 3 found at 5549-5556: `forever`\n", + "\n", + "Group 1 found at 5561-5567: `always`\n", + "Group 2 found at 5567-5573: `always`\n", + "Group 3 found at 5567-5573: `always`\n", + "\n", + "Group 1 found at 5623-5629: `morrow`\n", + "Group 2 found at 5629-5635: `morrow`\n", + "Group 3 found at 5629-5635: `morrow`\n", + "(46, 103, 149)\n", + "detect_scores time: 1.10697603225708\n", + "detect_scores: The American Federation of Labor (AFL) was co-fou\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012619495391845703\n", + "detect_scores: Diego Rivera, the famous Mexican painter known fo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004972696304321289\n", + "detect_scores: Switzerland primarily uses the Swiss Franc (CHF) \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004640817642211914\n", + "detect_scores: President John F. Kennedy, the 35th President of \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6925-6937: `s challenger`\n", + "Group 2 found at 6937-6950: `s challenger `\n", + "Group 3 found at 6937-6949: `s challenger`\n", + "\n", + "Group 1 found at 7362-7370: `s senior`\n", + "Group 2 found at 7370-7379: `s senior `\n", + "Group 3 found at 7370-7378: `s senior`\n", + "\n", + "Group 1 found at 7799-7804: `s bed`\n", + "Group 2 found at 7804-7809: `s bed`\n", + "Group 3 found at 7804-7809: `s bed`\n", + "\n", + "Group 1 found at 8218-8225: ` garden`\n", + "Group 2 found at 8225-8232: ` garden`\n", + "Group 3 found at 8225-8232: ` garden`\n", + "\n", + "Group 1 found at 9371-9376: ` lamp`\n", + "Group 2 found at 9376-9381: ` lamp`\n", + "Group 3 found at 9376-9381: ` lamp`\n", + "\n", + "Group 1 found at 9423-9429: `s gate`\n", + "Group 2 found at 9429-9435: `s gate`\n", + "Group 3 found at 9429-9435: `s gate`\n", + "\n", + "Group 1 found at 10628-10633: ` term`\n", + "Group 2 found at 10633-10638: ` term`\n", + "Group 3 found at 10633-10638: ` term`\n", + "(0, 98, 98)\n", + "detect_scores time: 2.1415159702301025\n", + "detect_scores: Prophet Muhammad, known as the last messenger in \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06126904487609863\n", + "detect_scores: Russia is a transcontinental nation spanning East\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6021-6027: `s cave`\n", + "Group 2 found at 6027-6033: `s cave`\n", + "Group 3 found at 6027-6033: `s cave`\n", + "\n", + "Group 1 found at 7496-7504: `relation`\n", + "Group 2 found at 7505-7513: `relation`\n", + "Group 3 found at 7505-7513: `relation`\n", + "\n", + "Group 1 found at 7798-7806: `ability `\n", + "Group 2 found at 7806-7814: `ability `\n", + "Group 3 found at 7806-7814: `ability `\n", + "\n", + "Group 1 found at 8728-8733: ` pack`\n", + "Group 2 found at 8733-8738: ` pack`\n", + "Group 3 found at 8733-8738: ` pack`\n", + "\n", + "Group 1 found at 10702-10712: `thing some`\n", + "Group 2 found at 10712-10722: `thing some`\n", + "Group 3 found at 10712-10722: `thing some`\n", + "\n", + "Group 1 found at 10750-10755: `where`\n", + "Group 2 found at 10756-10761: `where`\n", + "Group 3 found at 10756-10761: `where`\n", + "(0, 86, 86)\n", + "detect_scores time: 1.970113754272461\n", + "detect_scores: Chris Rock was born on October 7, 1965, in Brookl\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004576921463012695\n", + "detect_scores: The Toronto Maple Leafs most recently won their 1\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0024671554565429688\n", + "detect_scores: Lola Bunny is a character from Warner Bros.' Loon\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012417793273925781\n", + "detect_scores: As of my last update in April 2023, Kris Humphrie\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0057528018951416016\n", + "detect_scores: John Franklin was a British explorer, and there a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011687278747558594\n", + "detect_scores: Sean Connery's final film role before his retirem\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014450788497924805\n", + "detect_scores: Crabtree attended the University of Washington fo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014103174209594727\n", + "detect_scores: Fredrik Ljungberg, commonly known as \"Freddie,\" i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005464792251586914\n", + "detect_scores: As an AI developed by Microsoft, I don't have rea\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010492801666259766\n", + "detect_scores: John Adams, the second President of the United St\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3271-3278: `essence`\n", + "Group 2 found at 3279-3286: `essence`\n", + "Group 3 found at 3279-3286: `essence`\n", + "\n", + "Group 1 found at 6175-6183: ` killing`\n", + "Group 2 found at 6183-6191: ` killing`\n", + "Group 3 found at 6183-6191: ` killing`\n", + "\n", + "Group 1 found at 6267-6277: `rs predato`\n", + "Group 2 found at 6277-6287: `rs predato`\n", + "Group 3 found at 6277-6287: `rs predato`\n", + "\n", + "Group 1 found at 6464-6471: ` heaven`\n", + "Group 2 found at 6471-6478: ` heaven`\n", + "Group 3 found at 6471-6478: ` heaven`\n", + "\n", + "Group 1 found at 6498-6504: `space `\n", + "Group 2 found at 6504-6510: `space `\n", + "Group 3 found at 6504-6510: `space `\n", + "\n", + "Group 1 found at 6696-6708: `ncorporeal i`\n", + "Group 2 found at 6708-6720: `ncorporeal i`\n", + "Group 3 found at 6708-6720: `ncorporeal i`\n", + "\n", + "Group 1 found at 7758-7769: ` resistance`\n", + "Group 2 found at 7769-7780: ` resistance`\n", + "Group 3 found at 7769-7780: ` resistance`\n", + "\n", + "Group 1 found at 7954-7962: `rs scala`\n", + "Group 2 found at 7962-7970: `rs scala`\n", + "Group 3 found at 7962-7970: `rs scala`\n", + "\n", + "Group 1 found at 8375-8381: `laces `\n", + "Group 2 found at 8381-8387: `laces `\n", + "Group 3 found at 8381-8387: `laces `\n", + "\n", + "Group 1 found at 8818-8826: `currant `\n", + "Group 2 found at 8826-8834: `currant `\n", + "Group 3 found at 8826-8834: `currant `\n", + "\n", + "Group 1 found at 9683-9688: `fish `\n", + "Group 2 found at 9688-9693: `fish `\n", + "Group 3 found at 9688-9693: `fish `\n", + "(0, 177, 177)\n", + "detect_scores time: 1.6194381713867188\n", + "detect_scores: Mike Fisher is a professional ice hockey player. \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002371072769165039\n", + "detect_scores: Eduard Paolezzi, a renowned Scottish artist and s\n", + "----detect excessive whitespaces----\n", + "\n", + "\n", + "\n", + "\n", + "removed excessive whitespaces: 26\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7211-7217: `notes `\n", + "Group 2 found at 7217-7223: `notes `\n", + "Group 3 found at 7217-7223: `notes `\n", + "\n", + "Group 1 found at 8524-8529: ` data`\n", + "Group 2 found at 8529-8534: ` data`\n", + "Group 3 found at 8529-8534: ` data`\n", + "(26, 22, 48)\n", + "detect_scores time: 1.760174036026001\n", + "detect_scores: Joe Biden studied political science at the Univer\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003754138946533203\n", + "detect_scores: Ohio is located in the Midwestern region of the U\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5772-5782: `ers debugg`\n", + "Group 2 found at 5782-5792: `ers debugg`\n", + "Group 3 found at 5782-5792: `ers debugg`\n", + "\n", + "Group 1 found at 10477-10482: `s Map`\n", + "Group 2 found at 10482-10487: `s Map`\n", + "Group 3 found at 10482-10487: `s Map`\n", + "(0, 30, 30)\n", + "detect_scores time: 1.9513630867004395\n", + "detect_scores: Kailua is not an \"island\" in the traditional sens\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007207155227661133\n", + "detect_scores: Whoopi Goldberg received her first Grammy Award i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02851390838623047\n", + "detect_scores: Thomas Jefferson, the third President of the Unit\n", + "----detect excessive whitespaces----\n", + "\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7230-7240: ` continent`\n", + "Group 2 found at 7240-7250: ` continent`\n", + "Group 3 found at 7240-7250: ` continent`\n", + "\n", + "Group 1 found at 8511-8519: ` immense`\n", + "Group 2 found at 8519-8527: ` immense`\n", + "Group 3 found at 8519-8527: ` immense`\n", + "\n", + "Group 1 found at 9457-9465: `servant `\n", + "Group 2 found at 9465-9473: `servant `\n", + "Group 3 found at 9465-9473: `servant `\n", + "(5, 52, 57)\n", + "detect_scores time: 1.9065489768981934\n", + "detect_scores: In France, several religious traditions coexist a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8946-8951: ` cave`\n", + "Group 2 found at 8951-8956: ` cave`\n", + "Group 3 found at 8951-8956: ` cave`\n", + "(0, 10, 10)\n", + "detect_scores time: 2.0786731243133545\n", + "detect_scores: Manchester United, managed by Sir Alex Ferguson a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0057218074798583984\n", + "detect_scores: The primary timezone used throughout Japan is JST\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007031917572021484\n", + "detect_scores: In the Czech Republic, the primary language spoke\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0025949478149414062\n", + "detect_scores: Tim Cook is the CEO of Apple Inc., and as such, h\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033190250396728516\n", + "detect_scores: London operates in the Greenwich Mean Time (GMT) \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006535053253173828\n", + "detect_scores: Sheryl Crow was diagnosed with stage IIIC invasiv\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009402751922607422\n", + "detect_scores: Argentina currently operates under a presidential\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.028708219528198242\n", + "detect_scores: Fabio Capello is originally from Italy. He was bo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012776851654052734\n", + "detect_scores: Abraham Lincoln, the 16th President of the United\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008029937744140625\n", + "detect_scores: John Steinbeck was greatly inspired by his own li\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018461227416992188\n", + "detect_scores: Dwyane Wade, the former professional basketball p\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007404804229736328\n", + "detect_scores: The Zambezia River flows eastward and empties its\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0068302154541015625\n", + "detect_scores: Before David Beckham joined LA Galaxy, he played \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02567911148071289\n", + "detect_scores: As of my knowledge cutoff in early 2023, Emmanuel\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0074579715728759766\n", + "detect_scores: The Palace of Knossos is situated on the island o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007985830307006836\n", + "CPU times: user 6min 58s, sys: 542 ms, total: 6min 58s\n", + "Wall time: 7min\n" + ] + }, + { + "data": { + "text/plain": [ + "2.4631831645965576" + ] + }, + "execution_count": 82, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "\n", + "longest_time = 0\n", + "df_v4 = df.copy()\n", + "df_v4[[\"newline_score\", \"repetition_score\", \"total_repetitions\"]] = df[\"answer\"].apply(\n", + " lambda x: detect_scores(detect_repetitions_v4, x)\n", + ")\n", + "longest_time" + ] + }, + { + "cell_type": "code", + "execution_count": 83, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
token_countnewline_scorerepetition_scoretotal_repetitionsadjusted_precisionadjusted_recallword_countprecisionrecallf1
count1008.0000001008.0000001008.0000001008.0000001008.0000001008.0000001008.0000001008.0000001008.0000001008.000000
mean385.2470240.98809514.87698415.8650790.4273220.536768385.2470240.4577620.5669430.463820
std500.0550336.25713956.73701757.5139000.4038310.450413500.0550330.4203160.4584990.400647
min1.0000000.0000000.0000000.0000000.0000000.0000001.0000000.0000000.0000000.000000
25%92.0000000.0000000.0000000.0000000.0000000.00000092.0000000.0000000.0000000.000000
50%132.5000000.0000000.0000000.0000000.3333330.556836132.5000000.3818180.7500000.500000
75%263.0000000.0000000.0000000.0000001.0000001.000000263.0000001.0000001.0000000.861607
max1485.000000127.0000001492.0000001492.0000001.0000001.0000001485.0000001.0000001.0000001.000000
\n", + "
" + ], + "text/plain": [ + " token_count newline_score repetition_score total_repetitions \\\n", + "count 1008.000000 1008.000000 1008.000000 1008.000000 \n", + "mean 385.247024 0.988095 14.876984 15.865079 \n", + "std 500.055033 6.257139 56.737017 57.513900 \n", + "min 1.000000 0.000000 0.000000 0.000000 \n", + "25% 92.000000 0.000000 0.000000 0.000000 \n", + "50% 132.500000 0.000000 0.000000 0.000000 \n", + "75% 263.000000 0.000000 0.000000 0.000000 \n", + "max 1485.000000 127.000000 1492.000000 1492.000000 \n", + "\n", + " adjusted_precision adjusted_recall word_count precision \\\n", + "count 1008.000000 1008.000000 1008.000000 1008.000000 \n", + "mean 0.427322 0.536768 385.247024 0.457762 \n", + "std 0.403831 0.450413 500.055033 0.420316 \n", + "min 0.000000 0.000000 1.000000 0.000000 \n", + "25% 0.000000 0.000000 92.000000 0.000000 \n", + "50% 0.333333 0.556836 132.500000 0.381818 \n", + "75% 1.000000 1.000000 263.000000 1.000000 \n", + "max 1.000000 1.000000 1485.000000 1.000000 \n", + "\n", + " recall f1 \n", + "count 1008.000000 1008.000000 \n", + "mean 0.566943 0.463820 \n", + "std 0.458499 0.400647 \n", + "min 0.000000 0.000000 \n", + "25% 0.000000 0.000000 \n", + "50% 0.750000 0.500000 \n", + "75% 1.000000 0.861607 \n", + "max 1.000000 1.000000 " + ] + }, + "execution_count": 83, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_v4.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 84, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "detect_scores: Jamaicans primarily speak English, which is the o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4469-4476: `able st`\n", + "Group 2 found at 4476-4483: `able st`\n", + "Group 3 found at 4476-4483: `able st`\n", + "\n", + "Group 1 found at 6377-6390: ` distribution`\n", + "Group 2 found at 6390-6403: ` distribution`\n", + "Group 3 found at 6390-6403: ` distribution`\n", + "\n", + "Group 1 found at 6688-6700: `s coordinate`\n", + "Group 2 found at 6700-6713: `s coordinate `\n", + "Group 3 found at 6700-6712: `s coordinate`\n", + "(0, 65, 65)\n", + "detect_scores time: 2.0843589305877686\n", + "detect_scores: Jamarius Russell was born in Lafayette, Louisiana\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 664-669: `date `\n", + "Group 2 found at 669-674: `date `\n", + "Group 3 found at 669-674: `date `\n", + "(0, 10, 10)\n", + "detect_scores time: 0.00948190689086914\n", + "detect_scores: George Washington Carver was born into slavery in\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008576154708862305\n", + "detect_scores: Benjamin Franklin was a prolific individual with \n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 11\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5584-5591: `second `\n", + "Group 2 found at 5591-5598: `second `\n", + "Group 3 found at 5591-5598: `second `\n", + "\n", + "Group 1 found at 6227-6241: `polation inter`\n", + "Group 2 found at 6241-6255: `polation inter`\n", + "Group 3 found at 6241-6255: `polation inter`\n", + "\n", + "Group 1 found at 6268-6279: `imation est`\n", + "Group 2 found at 6279-6290: `imation est`\n", + "Group 3 found at 6279-6290: `imation est`\n", + "\n", + "Group 1 found at 6449-6461: `variances co`\n", + "Group 2 found at 6461-6473: `variances co`\n", + "Group 3 found at 6461-6473: `variances co`\n", + "\n", + "Group 1 found at 8897-8906: `thalamus `\n", + "Group 2 found at 8906-8915: `thalamus `\n", + "Group 3 found at 8906-8915: `thalamus `\n", + "\n", + "Group 1 found at 9454-9463: `solution `\n", + "Group 2 found at 9463-9472: `solution `\n", + "Group 3 found at 9463-9472: `solution `\n", + "\n", + "Group 1 found at 9544-9550: ` phase`\n", + "Group 2 found at 9550-9556: ` phase`\n", + "Group 3 found at 9550-9556: ` phase`\n", + "(11, 136, 147)\n", + "detect_scores time: 1.7838337421417236\n", + "detect_scores: Richard Nixon, the 37th President of the United S\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 45\n", + "----detect text repetitions----\n", + "(45, 0, 45)\n", + "detect_scores time: 0.164168119430542\n", + "detect_scores: John R. Kasich served as the Governor of Ohio fro\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002368927001953125\n", + "detect_scores: Lyndon B. Johnson became the Vice President of th\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011110305786132812\n", + "detect_scores: The Fukushima Daiichi Nuclear Power Plant was ori\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013707876205444336\n", + "detect_scores: The United Kingdom (UK) is composed of four const\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 11\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5886-5891: `gods `\n", + "Group 2 found at 5891-5896: `gods `\n", + "Group 3 found at 5891-5896: `gods `\n", + "\n", + "Group 1 found at 9841-9847: `ls too`\n", + "Group 2 found at 9847-9853: `ls too`\n", + "Group 3 found at 9847-9853: `ls too`\n", + "\n", + "Group 1 found at 10523-10529: `on rad`\n", + "Group 2 found at 10529-10535: `on rad`\n", + "Group 3 found at 10529-10535: `on rad`\n", + "(11, 34, 45)\n", + "detect_scores time: 1.9382610321044922\n", + "detect_scores: To determine your current time zone, you would ne\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4669-4678: ` prospect`\n", + "Group 2 found at 4678-4687: ` prospect`\n", + "Group 3 found at 4678-4687: ` prospect`\n", + "\n", + "Group 1 found at 7161-7168: `charts `\n", + "Group 2 found at 7168-7175: `charts `\n", + "Group 3 found at 7168-7175: `charts `\n", + "\n", + "Group 1 found at 10609-10614: `e els`\n", + "Group 2 found at 10614-10619: `e els`\n", + "Group 3 found at 10614-10619: `e els`\n", + "\n", + "Group 1 found at 10635-10640: `ever `\n", + "Group 2 found at 10640-10645: `ever `\n", + "Group 3 found at 10640-10645: `ever `\n", + "(0, 52, 52)\n", + "detect_scores time: 1.6115899085998535\n", + "detect_scores: St. Augustine, also known as Aurelius Augustinus \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.036389827728271484\n", + "detect_scores: Egypt operates under a semi-presidential republic\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4085-4092: `writer `\n", + "Group 2 found at 4092-4099: `writer `\n", + "Group 3 found at 4092-4099: `writer `\n", + "\n", + "Group 1 found at 6400-6407: `either `\n", + "Group 2 found at 6407-6414: `either `\n", + "Group 3 found at 6407-6414: `either `\n", + "\n", + "Group 1 found at 8133-8142: `s numeric`\n", + "Group 2 found at 8142-8151: `s numeric`\n", + "Group 3 found at 8142-8151: `s numeric`\n", + "\n", + "Group 1 found at 9804-9810: `plane `\n", + "Group 2 found at 9810-9816: `plane `\n", + "Group 3 found at 9810-9816: `plane `\n", + "\n", + "Group 1 found at 10689-10695: `paper `\n", + "Group 2 found at 10695-10701: `paper `\n", + "Group 3 found at 10695-10701: `paper `\n", + "(0, 70, 70)\n", + "detect_scores time: 1.7622249126434326\n", + "detect_scores: Martin Luther King Jr. was tragically assassinate\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020570755004882812\n", + "detect_scores: Edgar Allan Poe, the famous American writer known\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005560159683227539\n", + "detect_scores: Anna Bligh, a member of the Australian Labor Part\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015140056610107422\n", + "detect_scores: Sweden primarily operates on Central European Tim\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0042629241943359375\n", + "detect_scores: As of my last update in April 2023, there is no w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0040130615234375\n", + "detect_scores: Frederick County is located within the state of M\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00957489013671875\n", + "detect_scores: Harper Lee, the author famous for her novel \"To K\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014867782592773438\n", + "detect_scores: Utah operates on Mountain Time, which includes Pa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016400814056396484\n", + "detect_scores: George W. Bush ran for his second presidential te\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0032668113708496094\n", + "detect_scores: As of my last update in early 2023, Niall Ferguso\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002151966094970703\n", + "detect_scores: The Galápagos Islands are an archipelago of volca\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00790095329284668\n", + "detect_scores: Rihanna, whose full name is Robyn Rihannon Fenty \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005361080169677734\n", + "detect_scores: Samsung, being a multinational conglomerate compa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03139925003051758\n", + "detect_scores: As of my last update, I cannot provide real-time \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005805015563964844\n", + "detect_scores: George Orwell, the English novelist and essayist \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004188060760498047\n", + "detect_scores: Adolf Hitler was the leader of Nazi Germany. Duri\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01831793785095215\n", + "detect_scores: Kansas City, often referred to as KC or the \"Moth\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0188448429107666\n", + "detect_scores: Jackie Robinson played his professional baseball \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009327173233032227\n", + "detect_scores: Eleanor Roosevelt, the former First Lady of the U\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0034368038177490234\n", + "detect_scores: Indonesia is known for its religious diversity an\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4277-4284: ` prince`\n", + "Group 2 found at 4284-4291: ` prince`\n", + "Group 3 found at 4284-4291: ` prince`\n", + "\n", + "Group 1 found at 6062-6067: `zetta`\n", + "Group 2 found at 6067-6072: `zetta`\n", + "Group 3 found at 6067-6072: `zetta`\n", + "\n", + "Group 1 found at 8630-8638: `s animal`\n", + "Group 2 found at 8638-8647: `s animal `\n", + "Group 3 found at 8638-8646: `s animal`\n", + "\n", + "Group 1 found at 9520-9527: `s proof`\n", + "Group 2 found at 9527-9534: `s proof`\n", + "Group 3 found at 9527-9534: `s proof`\n", + "(0, 55, 55)\n", + "detect_scores time: 1.7421491146087646\n", + "detect_scores: I cannot assist you with that. It's important to \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012269020080566406\n", + "detect_scores: The title \"dictator\" in its original Roman contex\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4198-4206: `ability `\n", + "Group 2 found at 4206-4214: `ability `\n", + "Group 3 found at 4206-4214: `ability `\n", + "\n", + "Group 1 found at 4814-4823: `commerce `\n", + "Group 2 found at 4823-4832: `commerce `\n", + "Group 3 found at 4823-4832: `commerce `\n", + "\n", + "Group 1 found at 8224-8230: `s meme`\n", + "Group 2 found at 8230-8237: `s meme `\n", + "Group 3 found at 8230-8236: `s meme`\n", + "\n", + "Group 1 found at 8493-8503: `duction in`\n", + "Group 2 found at 8503-8513: `duction in`\n", + "Group 3 found at 8503-8513: `duction in`\n", + "(0, 67, 67)\n", + "detect_scores time: 1.7916898727416992\n", + "detect_scores: The official currency of Puerto Rico is called th\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003912925720214844\n", + "detect_scores: I'm sorry, but as a matter of privacy and confide\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.034188032150268555\n", + "detect_scores: The character K.I.T.T., which stands for Knight I\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010995149612426758\n", + "detect_scores: Brentwood, Tennessee lies within Williamson Count\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3231-3242: `s threshold`\n", + "Group 2 found at 3242-3254: `s threshold `\n", + "Group 3 found at 3242-3253: `s threshold`\n", + "\n", + "Group 1 found at 3764-3775: ` photograph`\n", + "Group 2 found at 3775-3786: ` photograph`\n", + "Group 3 found at 3775-3786: ` photograph`\n", + "\n", + "Group 1 found at 3898-3905: `letter `\n", + "Group 2 found at 3905-3912: `letter `\n", + "Group 3 found at 3905-3912: `letter `\n", + "\n", + "Group 1 found at 4470-4477: `writer `\n", + "Group 2 found at 4477-4484: `writer `\n", + "Group 3 found at 4477-4484: `writer `\n", + "\n", + "Group 1 found at 5603-5614: `directed un`\n", + "Group 2 found at 5614-5625: `directed un`\n", + "Group 3 found at 5614-5625: `directed un`\n", + "\n", + "Group 1 found at 6869-6875: `l meta`\n", + "Group 2 found at 6875-6881: `l meta`\n", + "Group 3 found at 6875-6881: `l meta`\n", + "\n", + "Group 1 found at 10494-10499: `milk `\n", + "Group 2 found at 10499-10504: `milk `\n", + "Group 3 found at 10499-10504: `milk `\n", + "(0, 117, 117)\n", + "detect_scores time: 1.5899250507354736\n", + "detect_scores: Michael Jackson, often confused with the famous e\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03837728500366211\n", + "detect_scores: Stonewall Jackson, a Confederate general during t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3455-3463: `ability `\n", + "Group 2 found at 3463-3471: `ability `\n", + "Group 3 found at 3463-3471: `ability `\n", + "\n", + "Group 1 found at 6922-6928: `y happ`\n", + "Group 2 found at 6928-6934: `y happ`\n", + "Group 3 found at 6928-6934: `y happ`\n", + "\n", + "Group 1 found at 8115-8125: ` continent`\n", + "Group 2 found at 8125-8135: ` continent`\n", + "Group 3 found at 8125-8135: ` continent`\n", + "\n", + "Group 1 found at 8631-8638: ` league`\n", + "Group 2 found at 8638-8645: ` league`\n", + "Group 3 found at 8638-8645: ` league`\n", + "\n", + "Group 1 found at 8778-8786: `seconds `\n", + "Group 2 found at 8786-8794: `seconds `\n", + "Group 3 found at 8786-8794: `seconds `\n", + "(0, 78, 78)\n", + "detect_scores time: 1.7911508083343506\n", + "detect_scores: Benjamin Franklin got married twice over the cour\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01931476593017578\n", + "detect_scores: Patrick Swayze tragically passed away on Septembe\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004054069519042969\n", + "detect_scores: The capital of Austria is Vienna, also known as W\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003966808319091797\n", + "detect_scores: Eva Perón, also known as Evita and originally nam\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004085063934326172\n", + "detect_scores: Buddha, also known as Siddhartha Gautama before h\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009456157684326172\n", + "detect_scores: Greeley, Colorado, lies within Weld County. It se\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008571147918701172\n", + "detect_scores: John Lennon, a member of The Beatles and later as\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011571884155273438\n", + "detect_scores: As of my last update in 2023, Colorado has severa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01252889633178711\n", + "detect_scores: Greenland is an autonomous territory within the K\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006417989730834961\n", + "detect_scores: I'm sorry, but as of my last update in April 2023\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006062030792236328\n", + "detect_scores: Armenia is a country located in the South Caucasu\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015959739685058594\n", + "detect_scores: Randy Savage, the professional wrestler known for\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008661746978759766\n", + "detect_scores: Richard Nixon died at a hospital in New York City\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4325-4332: `able st`\n", + "Group 2 found at 4332-4339: `able st`\n", + "Group 3 found at 4332-4339: `able st`\n", + "\n", + "Group 1 found at 5804-5813: `s mission`\n", + "Group 2 found at 5813-5823: `s mission `\n", + "Group 3 found at 5813-5822: `s mission`\n", + "\n", + "Group 1 found at 6344-6354: `economics `\n", + "Group 2 found at 6354-6364: `economics `\n", + "Group 3 found at 6354-6364: `economics `\n", + "\n", + "Group 1 found at 7871-7876: `fight`\n", + "Group 2 found at 7876-7882: `fight `\n", + "Group 3 found at 7876-7881: `fight`\n", + "\n", + "Group 1 found at 9405-9416: ` difference`\n", + "Group 2 found at 9416-9427: ` difference`\n", + "Group 3 found at 9416-9427: ` difference`\n", + "\n", + "Group 1 found at 9851-9865: `ly approximate`\n", + "Group 2 found at 9865-9880: `ly approximate `\n", + "Group 3 found at 9865-9879: `ly approximate`\n", + "\n", + "Group 1 found at 10389-10394: `e idl`\n", + "Group 2 found at 10394-10399: `e idl`\n", + "Group 3 found at 10394-10399: `e idl`\n", + "\n", + "Group 1 found at 10432-10438: ` sport`\n", + "Group 2 found at 10438-10444: ` sport`\n", + "Group 3 found at 10438-10444: ` sport`\n", + "\n", + "Group 1 found at 10582-10590: ` attempt`\n", + "Group 2 found at 10590-10598: ` attempt`\n", + "Group 3 found at 10590-10598: ` attempt`\n", + "\n", + "Group 1 found at 11135-11143: ` entitle`\n", + "Group 2 found at 11143-11151: ` entitle`\n", + "Group 3 found at 11143-11151: ` entitle`\n", + "\n", + "Group 1 found at 11159-11164: ` hold`\n", + "Group 2 found at 11164-11169: ` hold`\n", + "Group 3 found at 11164-11169: ` hold`\n", + "(0, 179, 179)\n", + "detect_scores time: 2.0144007205963135\n", + "detect_scores: Lyndon B. Johnson served as the Vice President un\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016551017761230469\n", + "detect_scores: The primary languages spoken in Haiti are French \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013089179992675781\n", + "detect_scores: Jay Leno was born in Columbus, Ohio. He grew up t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3957-3965: `s meteor`\n", + "Group 2 found at 3965-3973: `s meteor`\n", + "Group 3 found at 3965-3973: `s meteor`\n", + "\n", + "Group 1 found at 5730-5735: `e mov`\n", + "Group 2 found at 5735-5740: `e mov`\n", + "Group 3 found at 5735-5740: `e mov`\n", + "\n", + "Group 1 found at 7450-7460: `s favorite`\n", + "Group 2 found at 7460-7471: `s favorite `\n", + "Group 3 found at 7460-7470: `s favorite`\n", + "\n", + "Group 1 found at 9710-9716: `books `\n", + "Group 2 found at 9716-9722: `books `\n", + "Group 3 found at 9716-9722: `books `\n", + "(0, 59, 59)\n", + "detect_scores time: 342.65062379837036\n", + "detect_scores: Armie Hammer portrayed Chip Bingley, who is a cha\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.019717931747436523\n", + "detect_scores: Tim Tebow played collegiate football at the Unive\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6465-6470: ` park`\n", + "Group 2 found at 6470-6475: ` park`\n", + "Group 3 found at 6470-6475: ` park`\n", + "\n", + "Group 1 found at 9840-9846: `ns sig`\n", + "Group 2 found at 9846-9852: `ns sig`\n", + "Group 3 found at 9846-9852: `ns sig`\n", + "\n", + "Group 1 found at 10993-11008: `s approximation`\n", + "Group 2 found at 11008-11024: `s approximation `\n", + "Group 3 found at 11008-11023: `s approximation`\n", + "\n", + "Group 1 found at 11415-11425: `gments fra`\n", + "Group 2 found at 11425-11435: `gments fra`\n", + "Group 3 found at 11425-11435: `gments fra`\n", + "(0, 73, 73)\n", + "detect_scores time: 2.245100975036621\n", + "detect_scores: Peyton Manning played professional American footb\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0048198699951171875\n", + "detect_scores: The Carpathian Mountains are a range of mountains\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004804849624633789\n", + "detect_scores: Robert Burns, also known as Rabbie Burns and the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5701-5711: `s tutorial`\n", + "Group 2 found at 5711-5722: `s tutorial `\n", + "Group 3 found at 5711-5721: `s tutorial`\n", + "(0, 21, 21)\n", + "detect_scores time: 2.033729076385498\n", + "detect_scores: The iconic character Darth Vader was voiced by Ja\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006201028823852539\n", + "detect_scores: Peyton Manning won Super Bowl 50 with the Denver \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0069370269775390625\n", + "detect_scores: Justin Bieber was not actually \"born\" anywhere, a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002176046371459961\n", + "detect_scores: London Tipton is a character from the television \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012392997741699219\n", + "detect_scores: In the year 2011, David Beckham played as a playe\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2815-2826: ` occurrence`\n", + "Group 2 found at 2826-2837: ` occurrence`\n", + "Group 3 found at 2826-2837: ` occurrence`\n", + "\n", + "Group 1 found at 5088-5095: `possum `\n", + "Group 2 found at 5095-5102: `possum `\n", + "Group 3 found at 5095-5102: `possum `\n", + "\n", + "Group 1 found at 10176-10184: ` Airline`\n", + "Group 2 found at 10184-10192: ` Airline`\n", + "Group 3 found at 10184-10192: ` Airline`\n", + "(0, 52, 52)\n", + "detect_scores time: 1.7900371551513672\n", + "detect_scores: Francisco Coronado was a Spanish conquistador and\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0075778961181640625\n", + "detect_scores: Gilda Radner, the beloved comedian and actress kn\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021097660064697266\n", + "detect_scores: Barack Obama, the 44th President of the United St\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1996-2001: `ever `\n", + "Group 2 found at 2001-2006: `ever `\n", + "Group 3 found at 2001-2006: `ever `\n", + "\n", + "Group 1 found at 2095-2106: `possible im`\n", + "Group 2 found at 2106-2117: `possible im`\n", + "Group 3 found at 2106-2117: `possible im`\n", + "\n", + "Group 1 found at 5042-5050: ` archive`\n", + "Group 2 found at 5050-5058: ` archive`\n", + "Group 3 found at 5050-5058: ` archive`\n", + "\n", + "Group 1 found at 5757-5765: `relation`\n", + "Group 2 found at 5766-5774: `relation`\n", + "Group 3 found at 5766-5774: `relation`\n", + "\n", + "Group 1 found at 7534-7546: `tion distinc`\n", + "Group 2 found at 7546-7558: `tion distinc`\n", + "Group 3 found at 7546-7558: `tion distinc`\n", + "\n", + "Group 1 found at 8392-8403: ` instrument`\n", + "Group 2 found at 8403-8414: ` instrument`\n", + "Group 3 found at 8403-8414: ` instrument`\n", + "\n", + "Group 1 found at 9159-9167: `terbium `\n", + "Group 2 found at 9167-9175: `terbium `\n", + "Group 3 found at 9167-9175: `terbium `\n", + "\n", + "Group 1 found at 9557-9566: `ons nucle`\n", + "Group 2 found at 9566-9575: `ons nucle`\n", + "Group 3 found at 9566-9575: `ons nucle`\n", + "(0, 145, 145)\n", + "detect_scores time: 1.7994511127471924\n", + "detect_scores: Michael J. Fox's public personal life, including \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003206968307495117\n", + "detect_scores: Dolley Madison, often associated with the term \"D\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03119516372680664\n", + "detect_scores: Agatha Christie, an acclaimed British author know\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 56\n", + "----detect text repetitions----\n", + "(56, 0, 56)\n", + "detect_scores time: 0.009019851684570312\n", + "detect_scores: The four primary official and widely recognized l\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1424-1429: ` them`\n", + "Group 2 found at 1429-1434: ` them`\n", + "Group 3 found at 1429-1434: ` them`\n", + "\n", + "Group 1 found at 2544-2552: `relation`\n", + "Group 2 found at 2553-2561: `relation`\n", + "Group 3 found at 2553-2561: `relation`\n", + "\n", + "Group 1 found at 6927-6939: `ation comput`\n", + "Group 2 found at 6939-6951: `ation comput`\n", + "Group 3 found at 6939-6951: `ation comput`\n", + "\n", + "Group 1 found at 7215-7222: ` shadow`\n", + "Group 2 found at 7222-7229: ` shadow`\n", + "Group 3 found at 7222-7229: ` shadow`\n", + "\n", + "Group 1 found at 7960-7965: ` bolt`\n", + "Group 2 found at 7965-7970: ` bolt`\n", + "Group 3 found at 7965-7970: ` bolt`\n", + "\n", + "Group 1 found at 8763-8775: `ed entertain`\n", + "Group 2 found at 8775-8787: `ed entertain`\n", + "Group 3 found at 8775-8787: `ed entertain`\n", + "\n", + "Group 1 found at 9425-9433: `ly exact`\n", + "Group 2 found at 9433-9442: `ly exact `\n", + "Group 3 found at 9433-9441: `ly exact`\n", + "(0, 116, 116)\n", + "detect_scores time: 1.9660747051239014\n", + "detect_scores: The National Rifle Association (NRA) Headquarters\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002146005630493164\n", + "detect_scores: Albert Einstein attended the Polytechnic School i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002391815185546875\n", + "detect_scores: As of my last update in April 2023, Bill Lee was \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014688968658447266\n", + "detect_scores: Louis Armstrong was a legendary jazz musician ren\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01380467414855957\n", + "detect_scores: You are currently located within the Pacific Time\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004333972930908203\n", + "detect_scores: As of my last update, Hawaii Island (also known a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004868984222412109\n", + "detect_scores: Rudolf Virchow, a renowned German physician and p\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5101-5111: ` continent`\n", + "Group 2 found at 5111-5121: ` continent`\n", + "Group 3 found at 5111-5121: ` continent`\n", + "\n", + "Group 1 found at 6103-6112: `s erratic`\n", + "Group 2 found at 6112-6122: `s erratic `\n", + "Group 3 found at 6112-6121: `s erratic`\n", + "\n", + "Group 1 found at 8137-8148: ` photograph`\n", + "Group 2 found at 8148-8159: ` photograph`\n", + "Group 3 found at 8148-8159: ` photograph`\n", + "\n", + "Group 1 found at 10114-10123: `finite in`\n", + "Group 2 found at 10123-10132: `finite in`\n", + "Group 3 found at 10123-10132: `finite in`\n", + "\n", + "Group 1 found at 10299-10306: `though `\n", + "Group 2 found at 10306-10313: `though `\n", + "Group 3 found at 10306-10313: `though `\n", + "\n", + "Group 1 found at 10561-10569: `ability `\n", + "Group 2 found at 10569-10577: `ability `\n", + "Group 3 found at 10569-10577: `ability `\n", + "\n", + "Group 1 found at 10828-10835: `parent `\n", + "Group 2 found at 10835-10842: `parent `\n", + "Group 3 found at 10835-10842: `parent `\n", + "\n", + "Group 1 found at 10902-10907: `great`\n", + "Group 2 found at 10907-10912: `great`\n", + "Group 3 found at 10907-10912: `great`\n", + "\n", + "Group 1 found at 10988-10998: `rs neighbo`\n", + "Group 2 found at 10998-11008: `rs neighbo`\n", + "Group 3 found at 10998-11008: `rs neighbo`\n", + "(0, 153, 153)\n", + "detect_scores time: 2.1662981510162354\n", + "detect_scores: Gordon Brown attended the University of Edinburgh\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006743192672729492\n", + "detect_scores: Greece shares its land border to the north and we\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4943-4951: `rs scala`\n", + "Group 2 found at 4951-4959: `rs scala`\n", + "Group 3 found at 4951-4959: `rs scala`\n", + "\n", + "Group 1 found at 5192-5198: `units `\n", + "Group 2 found at 5198-5204: `units `\n", + "Group 3 found at 5198-5204: `units `\n", + "\n", + "Group 1 found at 5541-5552: `space hyper`\n", + "Group 2 found at 5552-5563: `space hyper`\n", + "Group 3 found at 5552-5563: `space hyper`\n", + "\n", + "Group 1 found at 9444-9450: `light `\n", + "Group 2 found at 9450-9456: `light `\n", + "Group 3 found at 9450-9456: `light `\n", + "(0, 62, 62)\n", + "detect_scores time: 1.8904399871826172\n", + "detect_scores: The Seattle Seahawks won Super Bowl XLVIII in 201\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007450580596923828\n", + "detect_scores: The character Donna Noble, who is a companion of \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010521650314331055\n", + "detect_scores: Dr. Seuss Education, also known as the Houghton M\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5410-5415: `roach`\n", + "Group 2 found at 5416-5421: `roach`\n", + "Group 3 found at 5416-5421: `roach`\n", + "\n", + "Group 1 found at 6541-6547: `sheet `\n", + "Group 2 found at 6547-6553: `sheet `\n", + "Group 3 found at 6547-6553: `sheet `\n", + "\n", + "Group 1 found at 7617-7623: `s star`\n", + "Group 2 found at 7623-7630: `s star `\n", + "Group 3 found at 7623-7629: `s star`\n", + "\n", + "Group 1 found at 8205-8213: `speaker `\n", + "Group 2 found at 8213-8221: `speaker `\n", + "Group 3 found at 8213-8221: `speaker `\n", + "\n", + "Group 1 found at 8945-8955: `thing some`\n", + "Group 2 found at 8955-8965: `thing some`\n", + "Group 3 found at 8955-8965: `thing some`\n", + "\n", + "Group 1 found at 8969-8978: `something`\n", + "Group 2 found at 8978-8988: `something `\n", + "Group 3 found at 8978-8987: `something`\n", + "\n", + "Group 1 found at 8990-9000: `ybody ever`\n", + "Group 2 found at 9000-9010: `ybody ever`\n", + "Group 3 found at 9000-9010: `ybody ever`\n", + "\n", + "Group 1 found at 9270-9276: ` after`\n", + "Group 2 found at 9276-9282: ` after`\n", + "Group 3 found at 9276-9282: ` after`\n", + "\n", + "Group 1 found at 9409-9415: ` dozen`\n", + "Group 2 found at 9415-9422: ` dozen `\n", + "Group 3 found at 9415-9421: ` dozen`\n", + "\n", + "Group 1 found at 9726-9732: `round `\n", + "Group 2 found at 9732-9738: `round `\n", + "Group 3 found at 9732-9738: `round `\n", + "\n", + "Group 1 found at 9996-10002: `diver `\n", + "Group 2 found at 10002-10008: `diver `\n", + "Group 3 found at 10002-10008: `diver `\n", + "(0, 160, 160)\n", + "detect_scores time: 1.437757968902588\n", + "detect_scores: Queensland, a state in Australia's northeast regi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6646-6652: `stone `\n", + "Group 2 found at 6652-6658: `stone `\n", + "Group 3 found at 6652-6658: `stone `\n", + "(0, 12, 12)\n", + "detect_scores time: 1.7676138877868652\n", + "detect_scores: The three official languages of Belgium are Dutch\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4108-4117: `employed `\n", + "Group 2 found at 4117-4126: `employed `\n", + "Group 3 found at 4117-4126: `employed `\n", + "\n", + "Group 1 found at 9485-9492: `table s`\n", + "Group 2 found at 9492-9499: `table s`\n", + "Group 3 found at 9492-9499: `table s`\n", + "(0, 32, 32)\n", + "detect_scores time: 1.8300178050994873\n", + "detect_scores: To find out which airport one would arrive at whe\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2270-2275: `bound`\n", + "Group 2 found at 2276-2281: `bound`\n", + "Group 3 found at 2276-2281: `bound`\n", + "\n", + "Group 1 found at 4414-4427: `condition pre`\n", + "Group 2 found at 4427-4440: `condition pre`\n", + "Group 3 found at 4427-4440: `condition pre`\n", + "\n", + "Group 1 found at 4440-4449: `requisite`\n", + "Group 2 found at 4450-4459: `requisite`\n", + "Group 3 found at 4450-4459: `requisite`\n", + "\n", + "Group 1 found at 5345-5355: `ed expedit`\n", + "Group 2 found at 5355-5365: `ed expedit`\n", + "Group 3 found at 5355-5365: `ed expedit`\n", + "\n", + "Group 1 found at 7705-7714: `yone ever`\n", + "Group 2 found at 7714-7723: `yone ever`\n", + "Group 3 found at 7714-7723: `yone ever`\n", + "\n", + "Group 1 found at 7724-7731: `body no`\n", + "Group 2 found at 7731-7738: `body no`\n", + "Group 3 found at 7731-7738: `body no`\n", + "\n", + "Group 1 found at 8135-8140: ` chat`\n", + "Group 2 found at 8140-8145: ` chat`\n", + "Group 3 found at 8140-8145: ` chat`\n", + "\n", + "Group 1 found at 11104-11110: `or min`\n", + "Group 2 found at 11110-11116: `or min`\n", + "Group 3 found at 11110-11116: `or min`\n", + "(0, 130, 130)\n", + "detect_scores time: 2.024919033050537\n", + "detect_scores: As of my knowledge cutoff in 2023, Collin Kaepern\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012261152267456055\n", + "detect_scores: Joe Flacco attended the University of Delaware, w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03590512275695801\n", + "detect_scores: Theodore Roosevelt is not actually buried; instea\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.11611485481262207\n", + "detect_scores: The Missouri River concludes its journey in St. L\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6248-6257: ` definite`\n", + "Group 2 found at 6257-6266: ` definite`\n", + "Group 3 found at 6257-6266: ` definite`\n", + "\n", + "Group 1 found at 7610-7618: ` entitle`\n", + "Group 2 found at 7618-7626: ` entitle`\n", + "Group 3 found at 7618-7626: ` entitle`\n", + "\n", + "Group 1 found at 7635-7645: ` ownership`\n", + "Group 2 found at 7645-7656: ` ownership `\n", + "Group 3 found at 7645-7655: ` ownership`\n", + "\n", + "Group 1 found at 11251-11262: ` photograph`\n", + "Group 2 found at 11262-11273: ` photograph`\n", + "Group 3 found at 11262-11273: ` photograph`\n", + "(0, 77, 77)\n", + "detect_scores time: 2.1560680866241455\n", + "detect_scores: In Thailand, the official and legal tender used f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0050449371337890625\n", + "detect_scores: Khloé Kardashian's former husband was Lamar Odom.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04075980186462402\n", + "detect_scores: Mitt Romney, the former Governor and U.S Senator \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002020120620727539\n", + "detect_scores: France operates under a semi-presidential represe\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014777660369873047\n", + "detect_scores: As of my last update in 2023, the current monarch\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002403736114501953\n", + "detect_scores: Stephen Hawking studied physics and mathematics a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0290071964263916\n", + "detect_scores: Egypt is primarily associated with North Africa a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9221-9228: ` member`\n", + "Group 2 found at 9228-9235: ` member`\n", + "Group 3 found at 9228-9235: ` member`\n", + "\n", + "Group 1 found at 9820-9825: `span `\n", + "Group 2 found at 9825-9830: `span `\n", + "Group 3 found at 9825-9830: `span `\n", + "\n", + "Group 1 found at 11497-11503: `diver `\n", + "Group 2 found at 11503-11509: `diver `\n", + "Group 3 found at 11503-11509: `diver `\n", + "(0, 36, 36)\n", + "detect_scores time: 2.123878240585327\n", + "detect_scores: Dr. Seuss, whose real name was Theodor Geisel, wa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010123968124389648\n", + "detect_scores: Ben Roethlisbergers attended McKeesport Area High\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015838146209716797\n", + "detect_scores: George Harrison, a member of The Beatles and an a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7677-7687: `rs neighbo`\n", + "Group 2 found at 7687-7697: `rs neighbo`\n", + "Group 3 found at 7687-7697: `rs neighbo`\n", + "\n", + "Group 1 found at 9281-9287: `check `\n", + "Group 2 found at 9287-9293: `check `\n", + "Group 3 found at 9287-9293: `check `\n", + "(0, 32, 32)\n", + "detect_scores time: 2.2224631309509277\n", + "detect_scores: New England is a region in the northeastern Unite\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 10\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8616-8632: `ions representat`\n", + "Group 2 found at 8632-8648: `ions representat`\n", + "Group 3 found at 8632-8648: `ions representat`\n", + "\n", + "Group 1 found at 8934-8940: `s idea`\n", + "Group 2 found at 8940-8946: `s idea`\n", + "Group 3 found at 8940-8946: `s idea`\n", + "\n", + "Group 1 found at 10092-10101: `t documen`\n", + "Group 2 found at 10101-10110: `t documen`\n", + "Group 3 found at 10101-10110: `t documen`\n", + "(10, 62, 72)\n", + "detect_scores time: 2.0720810890197754\n", + "detect_scores: The Vietnam War took place in Southeast Asia, pri\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007585048675537109\n", + "detect_scores: Gerald Ford, who assumed the presidency after Ric\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00787496566772461\n", + "detect_scores: The official currency of Italy is the Euro (€). I\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0068149566650390625\n", + "detect_scores: The current administrative, political, and cultur\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018251895904541016\n", + "detect_scores: Sir Ernest Rutherford attended several educationa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6284-6290: `s mace`\n", + "Group 2 found at 6290-6297: `s mace `\n", + "Group 3 found at 6290-6296: `s mace`\n", + "\n", + "Group 1 found at 6856-6862: `s cave`\n", + "Group 2 found at 6862-6868: `s cave`\n", + "Group 3 found at 6862-6868: `s cave`\n", + "(0, 25, 25)\n", + "detect_scores time: 2.011620044708252\n", + "detect_scores: Brandon Roy is known to have played as a small fo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003227710723876953\n", + "detect_scores: Harvard University, an Ivy League research instit\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5494-5500: `day to`\n", + "Group 2 found at 5500-5506: `day to`\n", + "Group 3 found at 5500-5506: `day to`\n", + "\n", + "Group 1 found at 8313-8319: `storm `\n", + "Group 2 found at 8319-8325: `storm `\n", + "Group 3 found at 8319-8325: `storm `\n", + "\n", + "Group 1 found at 9346-9351: `venge`\n", + "Group 2 found at 9352-9357: `venge`\n", + "Group 3 found at 9352-9357: `venge`\n", + "(0, 35, 35)\n", + "detect_scores time: 1.747035026550293\n", + "detect_scores: Laos, officially known as the Lao People's Democr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5949-5964: `ostatics electr`\n", + "Group 2 found at 5964-5979: `ostatics electr`\n", + "Group 3 found at 5964-5979: `ostatics electr`\n", + "\n", + "Group 1 found at 7644-7649: `s cup`\n", + "Group 2 found at 7649-7655: `s cup `\n", + "Group 3 found at 7649-7654: `s cup`\n", + "\n", + "Group 1 found at 9016-9028: `ing decompos`\n", + "Group 2 found at 9028-9040: `ing decompos`\n", + "Group 3 found at 9028-9040: `ing decompos`\n", + "(0, 65, 65)\n", + "detect_scores time: 1.834686279296875\n", + "detect_scores: Tyrese Gibson hails from Atlanta, Georgia in the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006022930145263672\n", + "detect_scores: Italy is a country located in Southern Europe, an\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 15\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2148-2156: `s reform`\n", + "Group 2 found at 2156-2164: `s reform`\n", + "Group 3 found at 2156-2164: `s reform`\n", + "\n", + "Group 1 found at 2359-2367: ` upgrade`\n", + "Group 2 found at 2367-2375: ` upgrade`\n", + "Group 3 found at 2367-2375: ` upgrade`\n", + "\n", + "Group 1 found at 4867-4875: `way rail`\n", + "Group 2 found at 4875-4883: `way rail`\n", + "Group 3 found at 4875-4883: `way rail`\n", + "\n", + "Group 1 found at 4951-4957: `cycle `\n", + "Group 2 found at 4957-4963: `cycle `\n", + "Group 3 found at 4957-4963: `cycle `\n", + "\n", + "Group 1 found at 5396-5403: `market `\n", + "Group 2 found at 5403-5410: `market `\n", + "Group 3 found at 5403-5410: `market `\n", + "\n", + "Group 1 found at 9058-9063: `e tim`\n", + "Group 2 found at 9063-9068: `e tim`\n", + "Group 3 found at 9063-9068: `e tim`\n", + "(15, 84, 99)\n", + "detect_scores time: 1.9090800285339355\n", + "detect_scores: The Colorado River runs primarily within five U.S\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4712-4721: `patience `\n", + "Group 2 found at 4721-4730: `patience `\n", + "Group 3 found at 4721-4730: `patience `\n", + "\n", + "Group 1 found at 7199-7205: `pocket`\n", + "Group 2 found at 7206-7212: `pocket`\n", + "Group 3 found at 7206-7212: `pocket`\n", + "\n", + "Group 1 found at 7404-7412: `glasses `\n", + "Group 2 found at 7412-7420: `glasses `\n", + "Group 3 found at 7412-7420: `glasses `\n", + "\n", + "Group 1 found at 7760-7765: `e cav`\n", + "Group 2 found at 7765-7770: `e cav`\n", + "Group 3 found at 7765-7770: `e cav`\n", + "\n", + "Group 1 found at 8730-8739: `nts insta`\n", + "Group 2 found at 8739-8748: `nts insta`\n", + "Group 3 found at 8739-8748: `nts insta`\n", + "\n", + "Group 1 found at 8800-8806: `watch `\n", + "Group 2 found at 8806-8812: `watch `\n", + "Group 3 found at 8806-8812: `watch `\n", + "\n", + "Group 1 found at 9556-9563: `flower `\n", + "Group 2 found at 9563-9570: `flower `\n", + "Group 3 found at 9563-9570: `flower `\n", + "(0, 101, 101)\n", + "detect_scores time: 1.586125135421753\n", + "detect_scores: I'm sorry, but as a source of information and in \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012969970703125\n", + "detect_scores: Elvis Costello, the acclaimed English singer-song\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7663-7672: `e opposit`\n", + "Group 2 found at 7672-7681: `e opposit`\n", + "Group 3 found at 7672-7681: `e opposit`\n", + "\n", + "Group 1 found at 10301-10310: `crease de`\n", + "Group 2 found at 10310-10319: `crease de`\n", + "Group 3 found at 10310-10319: `crease de`\n", + "\n", + "Group 1 found at 10400-10406: `meter `\n", + "Group 2 found at 10406-10412: `meter `\n", + "Group 3 found at 10406-10412: `meter `\n", + "\n", + "Group 1 found at 10559-10564: `byte `\n", + "Group 2 found at 10564-10569: `byte `\n", + "Group 3 found at 10564-10569: `byte `\n", + "\n", + "Group 1 found at 10821-10827: `oan gr`\n", + "Group 2 found at 10827-10833: `oan gr`\n", + "Group 3 found at 10827-10833: `oan gr`\n", + "\n", + "Group 1 found at 11152-11158: `colon `\n", + "Group 2 found at 11158-11164: `colon `\n", + "Group 3 found at 11158-11164: `colon `\n", + "(0, 82, 82)\n", + "detect_scores time: 2.0449609756469727\n", + "detect_scores: The Gobi Desert is primarily situated in northern\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01249384880065918\n", + "detect_scores: Germany is located in the continent of Europe. It\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036270618438720703\n", + "detect_scores: The primary languages spoken in Turkey are Turkis\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003968000411987305\n", + "detect_scores: Jeremy Lin currently plays basketball in the NBA \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00538182258605957\n", + "detect_scores: The Seychelles are an archipelago country located\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018809080123901367\n", + "detect_scores: William Morris attended Exeter College at the Uni\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00501704216003418\n", + "detect_scores: Mount St. Helens is located in the U.S. state of \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014390945434570312\n", + "detect_scores: Jimmy Savile was a British television presenter, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4745-4755: `duction in`\n", + "Group 2 found at 4755-4765: `duction in`\n", + "Group 3 found at 4755-4765: `duction in`\n", + "\n", + "Group 1 found at 9833-9841: `parents `\n", + "Group 2 found at 9841-9849: `parents `\n", + "Group 3 found at 9841-9849: `parents `\n", + "\n", + "Group 1 found at 10813-10822: `election `\n", + "Group 2 found at 10822-10831: `election `\n", + "Group 3 found at 10822-10831: `election `\n", + "(0, 54, 54)\n", + "detect_scores time: 1.9652211666107178\n", + "detect_scores: The Panama Canal is entirely within one country, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008949995040893555\n", + "detect_scores: Charlie Chaplin was a British actor, comedian, an\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4381-4390: ` discover`\n", + "Group 2 found at 4390-4399: ` discover`\n", + "Group 3 found at 4390-4399: ` discover`\n", + "\n", + "Group 1 found at 5664-5669: `byte `\n", + "Group 2 found at 5669-5674: `byte `\n", + "Group 3 found at 5669-5674: `byte `\n", + "\n", + "Group 1 found at 5757-5762: `e hat`\n", + "Group 2 found at 5762-5767: `e hat`\n", + "Group 3 found at 5762-5767: `e hat`\n", + "\n", + "Group 1 found at 8282-8287: `board`\n", + "Group 2 found at 8288-8293: `board`\n", + "Group 3 found at 8288-8293: `board`\n", + "\n", + "Group 1 found at 8694-8701: `spring `\n", + "Group 2 found at 8701-8708: `spring `\n", + "Group 3 found at 8701-8708: `spring `\n", + "\n", + "Group 1 found at 9679-9687: `relation`\n", + "Group 2 found at 9688-9696: `relation`\n", + "Group 3 found at 9688-9696: `relation`\n", + "(0, 80, 80)\n", + "detect_scores time: 1.8437480926513672\n", + "detect_scores: Albert Einstein taught primarily as a professor o\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 6\n", + "----detect text repetitions----\n", + "(6, 0, 6)\n", + "detect_scores time: 0.05334305763244629\n", + "detect_scores: Peter Griffin, who is also one of Family Guy's ma\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010807991027832031\n", + "detect_scores: George W. Bush, the 43rd President of the United \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4106-4111: `chips`\n", + "Group 2 found at 4112-4117: `chips`\n", + "Group 3 found at 4112-4117: `chips`\n", + "\n", + "Group 1 found at 4144-4149: `board`\n", + "Group 2 found at 4150-4155: `board`\n", + "Group 3 found at 4150-4155: `board`\n", + "\n", + "Group 1 found at 6610-6617: `s fruit`\n", + "Group 2 found at 6617-6625: `s fruit `\n", + "Group 3 found at 6617-6624: `s fruit`\n", + "\n", + "Group 1 found at 7229-7234: `paper`\n", + "Group 2 found at 7235-7240: `paper`\n", + "Group 3 found at 7235-7240: `paper`\n", + "\n", + "Group 1 found at 8524-8534: ` Container`\n", + "Group 2 found at 8534-8544: ` Container`\n", + "Group 3 found at 8534-8544: ` Container`\n", + "(0, 68, 68)\n", + "detect_scores time: 1.8358268737792969\n", + "detect_scores: New York City is not a part of any U.S. State bec\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7531-7538: ` murder`\n", + "Group 2 found at 7538-7545: ` murder`\n", + "Group 3 found at 7538-7545: ` murder`\n", + "(0, 14, 14)\n", + "detect_scores time: 1.7631731033325195\n", + "detect_scores: Bruce Lee, a renowned martial artist and actor fa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005453824996948242\n", + "detect_scores: In England, the official and legal tender is know\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007849931716918945\n", + "detect_scores: Benjamin Franklin, one of the Founding Fathers of\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5648-5654: `board `\n", + "Group 2 found at 5654-5660: `board `\n", + "Group 3 found at 5654-5660: `board `\n", + "\n", + "Group 1 found at 7860-7865: `warm `\n", + "Group 2 found at 7865-7870: `warm `\n", + "Group 3 found at 7865-7870: `warm `\n", + "\n", + "Group 1 found at 9695-9700: ` fine`\n", + "Group 2 found at 9700-9705: ` fine`\n", + "Group 3 found at 9700-9705: ` fine`\n", + "\n", + "Group 1 found at 9985-9994: `election `\n", + "Group 2 found at 9994-10003: `election `\n", + "Group 3 found at 9994-10003: `election `\n", + "\n", + "Group 1 found at 10083-10095: ` alternative`\n", + "Group 2 found at 10095-10107: ` alternative`\n", + "Group 3 found at 10095-10107: ` alternative`\n", + "\n", + "Group 1 found at 10319-10326: `gress e`\n", + "Group 2 found at 10326-10333: `gress e`\n", + "Group 3 found at 10326-10333: `gress e`\n", + "(0, 88, 88)\n", + "detect_scores time: 2.2355661392211914\n", + "detect_scores: The United Kingdom (UK) is a sovereign country th\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 18\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1668-1680: `ently perman`\n", + "Group 2 found at 1680-1692: `ently perman`\n", + "Group 3 found at 1680-1692: `ently perman`\n", + "\n", + "Group 1 found at 2108-2118: `actions re`\n", + "Group 2 found at 2118-2128: `actions re`\n", + "Group 3 found at 2118-2128: `actions re`\n", + "\n", + "Group 1 found at 2197-2210: `dependencies `\n", + "Group 2 found at 2210-2223: `dependencies `\n", + "Group 3 found at 2210-2223: `dependencies `\n", + "\n", + "Group 1 found at 4068-4076: ` license`\n", + "Group 2 found at 4076-4084: ` license`\n", + "Group 3 found at 4076-4084: ` license`\n", + "\n", + "Group 1 found at 5971-5979: `ability `\n", + "Group 2 found at 5979-5987: `ability `\n", + "Group 3 found at 5979-5987: `ability `\n", + "\n", + "Group 1 found at 8538-8544: ` blind`\n", + "Group 2 found at 8544-8550: ` blind`\n", + "Group 3 found at 8544-8550: ` blind`\n", + "\n", + "Group 1 found at 8831-8839: ` exhibit`\n", + "Group 2 found at 8839-8847: ` exhibit`\n", + "Group 3 found at 8839-8847: ` exhibit`\n", + "\n", + "Group 1 found at 9293-9302: `time down`\n", + "Group 2 found at 9302-9312: `time down `\n", + "Group 3 found at 9302-9311: `time down`\n", + "\n", + "Group 1 found at 9441-9451: `ed contain`\n", + "Group 2 found at 9451-9462: `ed contain `\n", + "Group 3 found at 9451-9461: `ed contain`\n", + "\n", + "Group 1 found at 9466-9474: `ed secur`\n", + "Group 2 found at 9474-9482: `ed secur`\n", + "Group 3 found at 9474-9482: `ed secur`\n", + "\n", + "Group 1 found at 9529-9536: `able st`\n", + "Group 2 found at 9536-9543: `able st`\n", + "Group 3 found at 9536-9543: `able st`\n", + "\n", + "Group 1 found at 9783-9790: `coming `\n", + "Group 2 found at 9790-9797: `coming `\n", + "Group 3 found at 9790-9797: `coming `\n", + "\n", + "Group 1 found at 10068-10075: ` intent`\n", + "Group 2 found at 10075-10082: ` intent`\n", + "Group 3 found at 10075-10082: ` intent`\n", + "\n", + "Group 1 found at 11000-11009: `illions b`\n", + "Group 2 found at 11009-11018: `illions b`\n", + "Group 3 found at 11009-11018: `illions b`\n", + "\n", + "Group 1 found at 11045-11051: `s unit`\n", + "Group 2 found at 11051-11058: `s unit `\n", + "Group 3 found at 11051-11057: `s unit`\n", + "(18, 259, 277)\n", + "detect_scores time: 2.156644821166992\n", + "detect_scores: Barack Obama attended several educational institu\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5185-5194: `meter ohm`\n", + "Group 2 found at 5194-5204: `meter ohm `\n", + "Group 3 found at 5194-5203: `meter ohm`\n", + "\n", + "Group 1 found at 6492-6497: ` cave`\n", + "Group 2 found at 6497-6502: ` cave`\n", + "Group 3 found at 6497-6502: ` cave`\n", + "\n", + "Group 1 found at 9783-9790: `s cloud`\n", + "Group 2 found at 9790-9798: `s cloud `\n", + "Group 3 found at 9790-9797: `s cloud`\n", + "(0, 44, 44)\n", + "detect_scores time: 1.7130749225616455\n", + "detect_scores: The primary official languages in China are Manda\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00661778450012207\n", + "detect_scores: The Soviet Union's most prominent and influential\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6148-6167: `dependent variable `\n", + "Group 2 found at 6167-6186: `dependent variable `\n", + "Group 3 found at 6167-6186: `dependent variable `\n", + "(0, 38, 38)\n", + "detect_scores time: 1.7411150932312012\n", + "detect_scores: Cindy Sherman is renowned primarily as a conceptu\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04560208320617676\n", + "detect_scores: Australia uses the Australian Dollar (AUD) as its\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1210-1215: `ever `\n", + "Group 2 found at 1215-1220: `ever `\n", + "Group 3 found at 1215-1220: `ever `\n", + "\n", + "Group 1 found at 7461-7466: `quake`\n", + "Group 2 found at 7467-7472: `quake`\n", + "Group 3 found at 7467-7472: `quake`\n", + "\n", + "Group 1 found at 8571-8585: `communication `\n", + "Group 2 found at 8585-8599: `communication `\n", + "Group 3 found at 8585-8599: `communication `\n", + "\n", + "Group 1 found at 10966-10974: `on polyg`\n", + "Group 2 found at 10974-10982: `on polyg`\n", + "Group 3 found at 10974-10982: `on polyg`\n", + "(0, 65, 65)\n", + "detect_scores time: 2.0906929969787598\n", + "detect_scores: For flying directly into Rome, you would typicall\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006204843521118164\n", + "detect_scores: Martin Luther King Jr. was primarily raised in At\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012625932693481445\n", + "detect_scores: LeBron James's first professional basketball seas\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023870468139648438\n", + "detect_scores: Japan operates under a constitutional monarchy. T\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008355855941772461\n", + "detect_scores: Mitt Romney's father, George W. Romneys Sr., was \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002688169479370117\n", + "detect_scores: I'm sorry, but as a language model developed by O\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002618074417114258\n", + "detect_scores: St. Paul, Virginia is located within Goochland Co\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 5.221366882324219e-05\n", + "detect_scores: Russia shares its borders with several other coun\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 8\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2713-2723: `incidental`\n", + "Group 2 found at 2724-2734: `incidental`\n", + "Group 3 found at 2724-2734: `incidental`\n", + "\n", + "Group 1 found at 4808-4821: ` distribution`\n", + "Group 2 found at 4821-4834: ` distribution`\n", + "Group 3 found at 4821-4834: ` distribution`\n", + "\n", + "Group 1 found at 5007-5015: `iles dec`\n", + "Group 2 found at 5015-5023: `iles dec`\n", + "Group 3 found at 5015-5023: `iles dec`\n", + "\n", + "Group 1 found at 5069-5079: ` symmetric`\n", + "Group 2 found at 5079-5089: ` symmetric`\n", + "Group 3 found at 5079-5089: ` symmetric`\n", + "\n", + "Group 1 found at 8026-8032: ` charm`\n", + "Group 2 found at 8032-8038: ` charm`\n", + "Group 3 found at 8032-8038: ` charm`\n", + "(8, 95, 103)\n", + "detect_scores time: 2.0252389907836914\n", + "detect_scores: Karl Benz attended the Karlsruhe Institute of Tec\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006069183349609375\n", + "detect_scores: Morgan Freeman is a well-known American actor, an\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010676145553588867\n", + "detect_scores: Carolus Linnaeus, also known as Carl von Linné or\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009957075119018555\n", + "detect_scores: Anaheim, California operates in the Pacific Time \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016338825225830078\n", + "detect_scores: The Orioles, officially known as Baltimore Oriole\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006448984146118164\n", + "detect_scores: Amelia Earhart was an American aviation pioneer a\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5644-5654: ` datapoint`\n", + "Group 2 found at 5654-5665: ` datapoint `\n", + "Group 3 found at 5654-5664: ` datapoint`\n", + "\n", + "Group 1 found at 5977-5983: `s step`\n", + "Group 2 found at 5983-5989: `s step`\n", + "Group 3 found at 5983-5989: `s step`\n", + "\n", + "Group 1 found at 8381-8389: `cord con`\n", + "Group 2 found at 8389-8397: `cord con`\n", + "Group 3 found at 8389-8397: `cord con`\n", + "\n", + "Group 1 found at 8925-8934: `er employ`\n", + "Group 2 found at 8934-8943: `er employ`\n", + "Group 3 found at 8934-8943: `er employ`\n", + "(5, 67, 72)\n", + "detect_scores time: 1.9815518856048584\n", + "detect_scores: Margaret Hoover attended Stanford University for \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007880210876464844\n", + "detect_scores: As of my last update in April 2023, Stefano Pioli\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003822803497314453\n", + "detect_scores: Reese Witherspoon got married twice. Her first ma\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0034608840942382812\n", + "detect_scores: When planning a trip, it's essential not only for\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 26\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2881-2886: `ever `\n", + "Group 2 found at 2886-2891: `ever `\n", + "Group 3 found at 2886-2891: `ever `\n", + "\n", + "Group 1 found at 2964-2973: `nity infi`\n", + "Group 2 found at 2973-2982: `nity infi`\n", + "Group 3 found at 2973-2982: `nity infi`\n", + "\n", + "Group 1 found at 8371-8382: `variance co`\n", + "Group 2 found at 8382-8393: `variance co`\n", + "Group 3 found at 8382-8393: `variance co`\n", + "\n", + "Group 1 found at 11450-11455: `an Ir`\n", + "Group 2 found at 11455-11460: `an Ir`\n", + "Group 3 found at 11455-11460: `an Ir`\n", + "(26, 60, 86)\n", + "detect_scores time: 2.097827911376953\n", + "detect_scores: The Ultimate Fighting Championship (UFC) Headquar\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004866838455200195\n", + "detect_scores: William Shatner is the actor who portrayed Captai\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021088123321533203\n", + "detect_scores: Albert Pujol, a professional baseball player from\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006939888000488281\n", + "detect_scores: Sweden operates under a parliamentary democracy w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06981301307678223\n", + "detect_scores: William Shakespeare became world-famous primarily\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 73\n", + "----detect text repetitions----\n", + "(73, 0, 73)\n", + "detect_scores time: 0.27613401412963867\n", + "detect_scores: Russia imports a variety of goods and commodities\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3892-3898: `anny n`\n", + "Group 2 found at 3898-3904: `anny n`\n", + "Group 3 found at 3898-3904: `anny n`\n", + "\n", + "Group 1 found at 4891-4900: `currants `\n", + "Group 2 found at 4900-4909: `currants `\n", + "Group 3 found at 4900-4909: `currants `\n", + "\n", + "Group 1 found at 6588-6595: `violet `\n", + "Group 2 found at 6595-6602: `violet `\n", + "Group 3 found at 6595-6602: `violet `\n", + "\n", + "Group 1 found at 7813-7828: `conciliation re`\n", + "Group 2 found at 7828-7843: `conciliation re`\n", + "Group 3 found at 7828-7843: `conciliation re`\n", + "\n", + "Group 1 found at 7993-8002: `agree dis`\n", + "Group 2 found at 8002-8011: `agree dis`\n", + "Group 3 found at 8002-8011: `agree dis`\n", + "\n", + "Group 1 found at 9344-9351: `es trop`\n", + "Group 2 found at 9351-9358: `es trop`\n", + "Group 3 found at 9351-9358: `es trop`\n", + "\n", + "Group 1 found at 9359-9368: `s element`\n", + "Group 2 found at 9368-9378: `s element `\n", + "Group 3 found at 9368-9377: `s element`\n", + "(0, 125, 125)\n", + "detect_scores time: 1.8439209461212158\n", + "detect_scores: The currency used in Switzerland is known as the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011801719665527344\n", + "detect_scores: In Australia, the primary language spoken is Engl\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3494-3507: `configurable `\n", + "Group 2 found at 3507-3520: `configurable `\n", + "Group 3 found at 3507-3520: `configurable `\n", + "\n", + "Group 1 found at 4887-4896: `s formula`\n", + "Group 2 found at 4896-4906: `s formula `\n", + "Group 3 found at 4896-4905: `s formula`\n", + "\n", + "Group 1 found at 5902-5907: `wind `\n", + "Group 2 found at 5907-5912: `wind `\n", + "Group 3 found at 5907-5912: `wind `\n", + "(0, 55, 55)\n", + "detect_scores time: 1.8054389953613281\n", + "detect_scores: Gerald Ford, the 38th President of the United Sta\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002393960952758789\n", + "detect_scores: Kevin Love, the professional basketball player fo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3178-3183: `cepla`\n", + "Group 2 found at 3183-3188: `cepla`\n", + "Group 3 found at 3183-3188: `cepla`\n", + "\n", + "Group 1 found at 7322-7332: `magnetism `\n", + "Group 2 found at 7332-7342: `magnetism `\n", + "Group 3 found at 7332-7342: `magnetism `\n", + "(0, 30, 30)\n", + "detect_scores time: 1.7426211833953857\n", + "detect_scores: The Temple of Karnak, also known as Waset or Ipet\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 13\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6568-6576: `servant `\n", + "Group 2 found at 6576-6584: `servant `\n", + "Group 3 found at 6576-6584: `servant `\n", + "\n", + "Group 1 found at 7013-7023: ` diversion`\n", + "Group 2 found at 7023-7034: ` diversion `\n", + "Group 3 found at 7023-7033: ` diversion`\n", + "\n", + "Group 1 found at 7962-7967: `house`\n", + "Group 2 found at 7968-7973: `house`\n", + "Group 3 found at 7968-7973: `house`\n", + "\n", + "Group 1 found at 8591-8598: `s digit`\n", + "Group 2 found at 8598-8606: `s digit `\n", + "Group 3 found at 8598-8605: `s digit`\n", + "\n", + "Group 1 found at 8861-8871: ` mechanism`\n", + "Group 2 found at 8871-8881: ` mechanism`\n", + "Group 3 found at 8871-8881: ` mechanism`\n", + "\n", + "Group 1 found at 8901-8911: `ment imple`\n", + "Group 2 found at 8911-8921: `ment imple`\n", + "Group 3 found at 8911-8921: `ment imple`\n", + "\n", + "Group 1 found at 9481-9491: ` operation`\n", + "Group 2 found at 9491-9501: ` operation`\n", + "Group 3 found at 9491-9501: ` operation`\n", + "(13, 123, 136)\n", + "detect_scores time: 2.0570948123931885\n", + "detect_scores: When traveling to Cuba, it's important to be awar\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 7\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8801-8809: ` Archive`\n", + "Group 2 found at 8809-8817: ` Archive`\n", + "Group 3 found at 8809-8817: ` Archive`\n", + "(7, 16, 23)\n", + "detect_scores time: 1.6269938945770264\n", + "detect_scores: When traveling to Morocco, the official and most \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1737-1745: ` happens`\n", + "Group 2 found at 1745-1753: ` happens`\n", + "Group 3 found at 1745-1753: ` happens`\n", + "\n", + "Group 1 found at 3939-3951: `eable upgrad`\n", + "Group 2 found at 3951-3963: `eable upgrad`\n", + "Group 3 found at 3951-3963: `eable upgrad`\n", + "\n", + "Group 1 found at 4016-4029: `purpose multi`\n", + "Group 2 found at 4029-4042: `purpose multi`\n", + "Group 3 found at 4029-4042: `purpose multi`\n", + "\n", + "Group 1 found at 10193-10199: `books `\n", + "Group 2 found at 10199-10205: `books `\n", + "Group 3 found at 10199-10205: `books `\n", + "\n", + "Group 1 found at 10678-10685: `ports s`\n", + "Group 2 found at 10685-10692: `ports s`\n", + "Group 3 found at 10685-10692: `ports s`\n", + "(0, 92, 92)\n", + "detect_scores time: 1.8831868171691895\n", + "detect_scores: In Japan, the term for \"money\" is お金 (okane). How\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10540-10545: `ship `\n", + "Group 2 found at 10545-10550: `ship `\n", + "Group 3 found at 10545-10550: `ship `\n", + "\n", + "Group 1 found at 10952-10961: ` thousand`\n", + "Group 2 found at 10961-10970: ` thousand`\n", + "Group 3 found at 10961-10970: ` thousand`\n", + "(0, 28, 28)\n", + "detect_scores time: 1.9867169857025146\n", + "detect_scores: Mother Teresa was of Albanian origin but she spen\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008766889572143555\n", + "detect_scores: Spain shares its land border primarily to the nor\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04693412780761719\n", + "detect_scores: China, officially known as the People's Republic \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7655-7662: `nimbus `\n", + "Group 2 found at 7662-7669: `nimbus `\n", + "Group 3 found at 7662-7669: `nimbus `\n", + "\n", + "Group 1 found at 7903-7915: ` interaction`\n", + "Group 2 found at 7915-7927: ` interaction`\n", + "Group 3 found at 7915-7927: ` interaction`\n", + "(0, 38, 38)\n", + "detect_scores time: 2.056213855743408\n", + "detect_scores: West St. Paul, often referred to simply as \"West \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002624034881591797\n", + "detect_scores: Baron d'Holbach, whose real name was Claude-Adrie\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.030698060989379883\n", + "detect_scores: Carlos Boozer played professional basketball in t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6292-6302: `arguments `\n", + "Group 2 found at 6302-6312: `arguments `\n", + "Group 3 found at 6302-6312: `arguments `\n", + "(0, 20, 20)\n", + "detect_scores time: 2.0265309810638428\n", + "detect_scores: Albert Speer was a German architect and Nazi Part\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2970-2981: `ly internal`\n", + "Group 2 found at 2981-2992: `ly internal`\n", + "Group 3 found at 2981-2992: `ly internal`\n", + "\n", + "Group 1 found at 7002-7013: `s sentiment`\n", + "Group 2 found at 7013-7025: `s sentiment `\n", + "Group 3 found at 7013-7024: `s sentiment`\n", + "\n", + "Group 1 found at 7075-7083: `s motion`\n", + "Group 2 found at 7083-7092: `s motion `\n", + "Group 3 found at 7083-7091: `s motion`\n", + "\n", + "Group 1 found at 9355-9363: `ability `\n", + "Group 2 found at 9363-9371: `ability `\n", + "Group 3 found at 9363-9371: `ability `\n", + "\n", + "Group 1 found at 9705-9715: `s particle`\n", + "Group 2 found at 9715-9726: `s particle `\n", + "Group 3 found at 9715-9725: `s particle`\n", + "\n", + "Group 1 found at 10865-10871: `rings `\n", + "Group 2 found at 10871-10877: `rings `\n", + "Group 3 found at 10871-10877: `rings `\n", + "\n", + "Group 1 found at 11049-11055: `stone `\n", + "Group 2 found at 11055-11061: `stone `\n", + "Group 3 found at 11055-11061: `stone `\n", + "\n", + "Group 1 found at 11510-11515: `e hat`\n", + "Group 2 found at 11515-11520: `e hat`\n", + "Group 3 found at 11515-11520: `e hat`\n", + "(0, 133, 133)\n", + "detect_scores time: 2.1508748531341553\n", + "detect_scores: Emperor Hirohito, also known as Showa-tennō in Ja\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4514-4519: `mount`\n", + "Group 2 found at 4520-4525: `mount`\n", + "Group 3 found at 4520-4525: `mount`\n", + "\n", + "Group 1 found at 10203-10211: `ed retir`\n", + "Group 2 found at 10211-10219: `ed retir`\n", + "Group 3 found at 10211-10219: `ed retir`\n", + "(0, 27, 27)\n", + "detect_scores time: 2.165041923522949\n", + "detect_scores: In The Netherlands, Dutch is spoken by its inhabi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00803995132446289\n", + "detect_scores: The primary language spoken throughout Greece is \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037450790405273438\n", + "detect_scores: Henri Matisse was a renowned French artist, widel\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011427164077758789\n", + "detect_scores: The first novel Charles Dickens published is beli\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007811784744262695\n", + "detect_scores: Michael Jordan attended Emsley A. Laney High Scho\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004950046539306641\n", + "detect_scores: Mount St. Helens Volcanic National Monument, loca\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011905908584594727\n", + "detect_scores: Robert Burns, also known as Rabbie Burns, is most\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2573-2581: ` present`\n", + "Group 2 found at 2581-2589: ` present`\n", + "Group 3 found at 2581-2589: ` present`\n", + "\n", + "Group 1 found at 5218-5225: `master `\n", + "Group 2 found at 5225-5232: `master `\n", + "Group 3 found at 5225-5232: `master `\n", + "\n", + "Group 1 found at 7428-7434: `s cave`\n", + "Group 2 found at 7434-7440: `s cave`\n", + "Group 3 found at 7434-7440: `s cave`\n", + "(0, 42, 42)\n", + "detect_scores time: 1.932723045349121\n", + "detect_scores: Claude Debussy was a renowned French composer kno\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006525754928588867\n", + "detect_scores: Hank Basket was a member of the Indiana Pacers in\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011730194091796875\n", + "detect_scores: The Pittsburgh Steelers are a professional Americ\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10888-10897: ` constant`\n", + "Group 2 found at 10897-10906: ` constant`\n", + "Group 3 found at 10897-10906: ` constant`\n", + "\n", + "Group 1 found at 11427-11432: `o nan`\n", + "Group 2 found at 11432-11437: `o nan`\n", + "Group 3 found at 11432-11437: `o nan`\n", + "\n", + "Group 1 found at 11438-11444: `meter `\n", + "Group 2 found at 11444-11450: `meter `\n", + "Group 3 found at 11444-11450: `meter `\n", + "\n", + "Group 1 found at 11466-11476: `meter kilo`\n", + "Group 2 found at 11476-11486: `meter kilo`\n", + "Group 3 found at 11476-11486: `meter kilo`\n", + "\n", + "Group 1 found at 11486-11491: `gram `\n", + "Group 2 found at 11491-11496: `gram `\n", + "Group 3 found at 11491-11496: `gram `\n", + "\n", + "Group 1 found at 11561-11568: `joules `\n", + "Group 2 found at 11568-11575: `joules `\n", + "Group 3 found at 11568-11575: `joules `\n", + "\n", + "Group 1 found at 11660-11665: ` volt`\n", + "Group 2 found at 11665-11670: ` volt`\n", + "Group 3 found at 11665-11670: ` volt`\n", + "(0, 94, 94)\n", + "detect_scores time: 2.220479965209961\n", + "detect_scores: Sir Isaac Newton attended the University of Cambr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004351139068603516\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009708166122436523\n", + "detect_scores: The capital city of the Eastern Roman Empire, als\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6657-6664: `coming `\n", + "Group 2 found at 6664-6671: `coming `\n", + "Group 3 found at 6664-6671: `coming `\n", + "\n", + "Group 1 found at 7477-7486: ` opposite`\n", + "Group 2 found at 7486-7495: ` opposite`\n", + "Group 3 found at 7486-7495: ` opposite`\n", + "\n", + "Group 1 found at 7655-7661: `s sort`\n", + "Group 2 found at 7661-7667: `s sort`\n", + "Group 3 found at 7661-7667: `s sort`\n", + "\n", + "Group 1 found at 9043-9049: ` scale`\n", + "Group 2 found at 9049-9055: ` scale`\n", + "Group 3 found at 9049-9055: ` scale`\n", + "\n", + "Group 1 found at 9870-9877: `tion mo`\n", + "Group 2 found at 9877-9884: `tion mo`\n", + "Group 3 found at 9877-9884: `tion mo`\n", + "\n", + "Group 1 found at 10077-10085: `s figure`\n", + "Group 2 found at 10085-10093: `s figure`\n", + "Group 3 found at 10085-10093: `s figure`\n", + "(0, 86, 86)\n", + "detect_scores time: 2.1714181900024414\n", + "detect_scores: Edward ScissmorHands is a character from the 1990\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030252933502197266\n", + "detect_scores: LeBron James's debut NBA (National Basketball Ass\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0034592151641845703\n", + "detect_scores: Giuliana Ranzit grew up in Italy. She was born on\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00400996208190918\n", + "detect_scores: The major cities of Ukraine include Kyiv (the cap\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010790824890136719\n", + "detect_scores: Brian Dawkins played football in the National Foo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03439188003540039\n", + "detect_scores: China primarily uses the Renminbi (RMB), also kno\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0076029300689697266\n", + "detect_scores: The Indianapolis Colts compete in the National Fo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004274845123291016\n", + "detect_scores: Perpignán, often spelled \"Perpiñàn\" in Català to \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013463020324707031\n", + "detect_scores: The Pittsburgh Steelers most recently won Super B\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004402875900268555\n", + "detect_scores: The Giza Pyramid Complex, home to the iconic Egyp\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005335092544555664\n", + "detect_scores: The Midwestern United States, commonly referred t\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 36\n", + "----detect text repetitions----\n", + "(36, 0, 36)\n", + "detect_scores time: 0.003715038299560547\n", + "detect_scores: Annie Oakley, the famous sharpshooter and exhibit\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0040209293365478516\n", + "detect_scores: Lex Luthor is a fictional character appearing in \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015566825866699219\n", + "detect_scores: The Zambezia River, often referred to as simply \"\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008008956909179688\n", + "detect_scores: Nigeria operates within West Africa Time (WAT), w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00718379020690918\n", + "detect_scores: Mitt Romney, the American politician and business\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003225088119506836\n", + "detect_scores: South Dakota spans two primary time zones. The we\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02251601219177246\n", + "detect_scores: Jason Mraz hails from Saint Louis, Missouri, Unit\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016448497772216797\n", + "detect_scores: Texarkana, Arkansas is located within Miller Coun\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016121864318847656\n", + "detect_scores: Ludwig van Beethoven lived during the transition \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01645374298095703\n", + "detect_scores: In Costa Rica, the primary language spoken is Spa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006021022796630859\n", + "detect_scores: Hank Marvin is a British rock guitarist, singer a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.025867938995361328\n", + "detect_scores: Winona Ryder played the role of Deanna Troi, a co\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005236148834228516\n", + "detect_scores: I'm sorry, but I can't provide information on tha\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003647804260253906\n", + "detect_scores: Clay Matthews Jr. attended the University of Sout\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6288-6294: `script`\n", + "Group 2 found at 6295-6301: `script`\n", + "Group 3 found at 6295-6301: `script`\n", + "\n", + "Group 1 found at 7070-7075: `mail `\n", + "Group 2 found at 7075-7080: `mail `\n", + "Group 3 found at 7075-7080: `mail `\n", + "\n", + "Group 1 found at 8982-8988: `a Mett`\n", + "Group 2 found at 8988-8994: `a Mett`\n", + "Group 3 found at 8988-8994: `a Mett`\n", + "(0, 35, 35)\n", + "detect_scores time: 1.6775367259979248\n", + "detect_scores: I cannot provide real-time information. However, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001399993896484375\n", + "detect_scores: Princess Leia Organa, born as Luke Skywalker's tw\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6386-6392: ` photo`\n", + "Group 2 found at 6392-6398: ` photo`\n", + "Group 3 found at 6392-6398: ` photo`\n", + "\n", + "Group 1 found at 7732-7739: ` welder`\n", + "Group 2 found at 7739-7746: ` welder`\n", + "Group 3 found at 7739-7746: ` welder`\n", + "\n", + "Group 1 found at 9590-9596: ` arrow`\n", + "Group 2 found at 9596-9602: ` arrow`\n", + "Group 3 found at 9596-9602: ` arrow`\n", + "\n", + "Group 1 found at 10553-10561: `ability `\n", + "Group 2 found at 10561-10569: `ability `\n", + "Group 3 found at 10561-10569: `ability `\n", + "(0, 54, 54)\n", + "detect_scores time: 1.9924688339233398\n", + "detect_scores: China, officially known as the People's Republic \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7239-7244: `step `\n", + "Group 2 found at 7244-7249: `step `\n", + "Group 3 found at 7244-7249: `step `\n", + "\n", + "Group 1 found at 10867-10876: `finite in`\n", + "Group 2 found at 10876-10885: `finite in`\n", + "Group 3 found at 10876-10885: `finite in`\n", + "\n", + "Group 1 found at 11858-11868: `s favorite`\n", + "Group 2 found at 11868-11879: `s favorite `\n", + "Group 3 found at 11868-11878: `s favorite`\n", + "\n", + "Group 1 found at 11935-11945: ` recommend`\n", + "Group 2 found at 11945-11955: ` recommend`\n", + "Group 3 found at 11945-11955: ` recommend`\n", + "(0, 69, 69)\n", + "detect_scores time: 2.426161050796509\n", + "detect_scores: New York City's primary international travel hub \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06895112991333008\n", + "detect_scores: The primary official languages spoken in Brazil a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011777877807617188\n", + "detect_scores: In \"Star Wars: The Clone Wars,\" the character Obi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007578134536743164\n", + "detect_scores: Venus Williams is an American professional tennis\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015501976013183594\n", + "detect_scores: The official currency of Panama is the Balboa, wh\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008286237716674805\n", + "detect_scores: The Zambezia River, often referred to as simply \"\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8034-8042: `ns plugi`\n", + "Group 2 found at 8042-8050: `ns plugi`\n", + "Group 3 found at 8042-8050: `ns plugi`\n", + "\n", + "Group 1 found at 9566-9571: `s dvd`\n", + "Group 2 found at 9571-9576: `s dvd`\n", + "Group 3 found at 9571-9576: `s dvd`\n", + "\n", + "Group 1 found at 10131-10139: `machines`\n", + "Group 2 found at 10140-10148: `machines`\n", + "Group 3 found at 10140-10148: `machines`\n", + "\n", + "Group 1 found at 10779-10785: `bolts `\n", + "Group 2 found at 10785-10791: `bolts `\n", + "Group 3 found at 10785-10791: `bolts `\n", + "(0, 55, 55)\n", + "detect_scores time: 1.8854608535766602\n", + "detect_scores: In the year 2003, Ronaldo played primarily as a f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006501913070678711\n", + "detect_scores: As of my knowledge cutoff in March 2023, specific\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017570018768310547\n", + "detect_scores: Robert Pattinson portrayed the character Jacob Bl\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001993894577026367\n", + "detect_scores: When flying into Buenos Aires, the primary intern\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037949085235595703\n", + "detect_scores: Adrian Peterson played football at the University\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002499103546142578\n", + "detect_scores: The name Pennsylvania comes from the Turksay Penn\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4932-4939: `length `\n", + "Group 2 found at 4939-4946: `length `\n", + "Group 3 found at 4939-4946: `length `\n", + "\n", + "Group 1 found at 5716-5721: `chip `\n", + "Group 2 found at 5721-5726: `chip `\n", + "Group 3 found at 5721-5726: `chip `\n", + "\n", + "Group 1 found at 7349-7357: `fortune `\n", + "Group 2 found at 7357-7365: `fortune `\n", + "Group 3 found at 7357-7365: `fortune `\n", + "\n", + "Group 1 found at 8912-8921: `s command`\n", + "Group 2 found at 8921-8931: `s command `\n", + "Group 3 found at 8921-8930: `s command`\n", + "\n", + "Group 1 found at 9247-9255: ` archive`\n", + "Group 2 found at 9255-9263: ` archive`\n", + "Group 3 found at 9255-9263: ` archive`\n", + "\n", + "Group 1 found at 9341-9347: `s card`\n", + "Group 2 found at 9347-9354: `s card `\n", + "Group 3 found at 9347-9353: `s card`\n", + "(0, 88, 88)\n", + "detect_scores time: 2.33829402923584\n", + "detect_scores: In Germany, the primary currency used is the Euro\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031020641326904297\n", + "detect_scores: Australia primarily uses the English Language. Ho\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0026738643646240234\n", + "detect_scores: Saint Lucy, also known as Lucia of Syracuse or si\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.029413938522338867\n", + "detect_scores: Australia operates under a federal parliamentary \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.09889626502990723\n", + "detect_scores: The Father of King George VI, who reigned as mona\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03522515296936035\n", + "detect_scores: Al-Qaida, the militant extremist organization fou\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.7626760005950928\n", + "detect_scores: In Switzerland, several languages are officially \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00554966926574707\n", + "detect_scores: The primary standard time zones for England are G\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006330728530883789\n", + "detect_scores: Nigeria practices a federal republic form of gove\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4613-4623: `s Reviewer`\n", + "Group 2 found at 4623-4634: `s Reviewer `\n", + "Group 3 found at 4623-4633: `s Reviewer`\n", + "\n", + "Group 1 found at 8527-8533: `drama `\n", + "Group 2 found at 8533-8539: `drama `\n", + "Group 3 found at 8533-8539: `drama `\n", + "(0, 33, 33)\n", + "detect_scores time: 1.4003620147705078\n", + "detect_scores: Theodore Roosevelt's winter White House, also kno\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02853107452392578\n", + "detect_scores: Malaysia operates under a federal constitutional \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5538-5544: `meter `\n", + "Group 2 found at 5544-5550: `meter `\n", + "Group 3 found at 5544-5550: `meter `\n", + "\n", + "Group 1 found at 5726-5733: ` parsec`\n", + "Group 2 found at 5733-5740: ` parsec`\n", + "Group 3 found at 5733-5740: ` parsec`\n", + "\n", + "Group 1 found at 10896-10902: ` knock`\n", + "Group 2 found at 10902-10908: ` knock`\n", + "Group 3 found at 10902-10908: ` knock`\n", + "(0, 38, 38)\n", + "detect_scores time: 2.0022637844085693\n", + "detect_scores: In Costa Rica, the official currency used is know\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029990673065185547\n", + "detect_scores: Nashville, Tennessee operates in the Eastern Time\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007097721099853516\n", + "detect_scores: Adolf Hitler died on April 30, 1945. He committed\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01066899299621582\n", + "detect_scores: The largest country by area within Europe, if con\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6707-6715: `seconds `\n", + "Group 2 found at 6715-6723: `seconds `\n", + "Group 3 found at 6715-6723: `seconds `\n", + "\n", + "Group 1 found at 8025-8033: `ability `\n", + "Group 2 found at 8033-8041: `ability `\n", + "Group 3 found at 8033-8041: `ability `\n", + "(0, 32, 32)\n", + "detect_scores time: 2.3010261058807373\n", + "detect_scores: As a language model, I cannot provide real-time d\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007439851760864258\n", + "detect_scores: Slovakia is bordered by five countries: the Czech\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016446113586425781\n", + "detect_scores: James Abram Garfield, the 20th President of the U\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.039961814880371094\n", + "detect_scores: David Beckham is a retired professional footballe\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008018016815185547\n", + "detect_scores: Taylor Swift, primarily known as a singer-songwri\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010122060775756836\n", + "detect_scores: Brett Favale attended the University of Notre Dam\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008654117584228516\n", + "detect_scores: Alex Chillion is not known to be an actual public\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00479578971862793\n", + "detect_scores: Martin Luther King Jr. attended Morehouse College\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004392862319946289\n", + "detect_scores: Farah Fawcett died from an underlying form of leu\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011248588562011719\n", + "detect_scores: Michael Jackson's ex-wife was Lisa Marie Presley.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005788087844848633\n", + "detect_scores: In Costa Rica, the currency used is known as the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.18400120735168457\n", + "detect_scores: Joe Walsh, the renowned rock musician and former \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005767107009887695\n", + "detect_scores: In Spain, the currency used is the Euro (€). The \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013057947158813477\n", + "detect_scores: Drew Barrymore sought treatment in a drug and alc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002869844436645508\n", + "detect_scores: Darth Vader was originally portrayed by actor Dav\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006478786468505859\n", + "detect_scores: The Texas Rangers play at Globe Life Field in Arl\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009751319885253906\n", + "detect_scores: The Arkansas State Capitol, located in Little Roc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.026569843292236328\n", + "detect_scores: William Taft, the 27th President of the United St\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1757-1762: `een s`\n", + "Group 2 found at 1762-1767: `een s`\n", + "Group 3 found at 1762-1767: `een s`\n", + "\n", + "Group 1 found at 4549-4568: `dependent variable `\n", + "Group 2 found at 4568-4587: `dependent variable `\n", + "Group 3 found at 4568-4587: `dependent variable `\n", + "\n", + "Group 1 found at 6770-6776: ` whole`\n", + "Group 2 found at 6776-6782: ` whole`\n", + "Group 3 found at 6776-6782: ` whole`\n", + "\n", + "Group 1 found at 7152-7162: ` implement`\n", + "Group 2 found at 7162-7172: ` implement`\n", + "Group 3 found at 7162-7172: ` implement`\n", + "\n", + "Group 1 found at 7658-7664: ` rapid`\n", + "Group 2 found at 7664-7670: ` rapid`\n", + "Group 3 found at 7664-7670: ` rapid`\n", + "\n", + "Group 1 found at 7680-7689: `ly sudden`\n", + "Group 2 found at 7689-7699: `ly sudden `\n", + "Group 3 found at 7689-7698: `ly sudden`\n", + "\n", + "Group 1 found at 7758-7766: ` awesome`\n", + "Group 2 found at 7766-7775: ` awesome `\n", + "Group 3 found at 7766-7774: ` awesome`\n", + "(0, 128, 128)\n", + "detect_scores time: 2.1828441619873047\n", + "detect_scores: I'm sorry, but there is no public record or infor\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011012792587280273\n", + "detect_scores: I cannot provide real-time data or information on\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0035142898559570312\n", + "detect_scores: Central America consists of seven countries. They\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8282-8292: `plicate re`\n", + "Group 2 found at 8292-8302: `plicate re`\n", + "Group 3 found at 8292-8302: `plicate re`\n", + "\n", + "Group 1 found at 8713-8718: `t uni`\n", + "Group 2 found at 8718-8723: `t uni`\n", + "Group 3 found at 8718-8723: `t uni`\n", + "\n", + "Group 1 found at 8854-8862: `ity grav`\n", + "Group 2 found at 8862-8870: `ity grav`\n", + "Group 3 found at 8862-8870: `ity grav`\n", + "\n", + "Group 1 found at 9439-9444: `hole `\n", + "Group 2 found at 9444-9449: `hole `\n", + "Group 3 found at 9444-9449: `hole `\n", + "\n", + "Group 1 found at 10512-10518: ` magic`\n", + "Group 2 found at 10518-10524: ` magic`\n", + "Group 3 found at 10518-10524: ` magic`\n", + "(0, 68, 68)\n", + "detect_scores time: 1.7303481101989746\n", + "detect_scores: Derek Fisher attended the University of Arkansas \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005132913589477539\n", + "detect_scores: The New Orleans Hornets, now known as the Charlot\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002171039581298828\n", + "detect_scores: Anne Boleyn, the second wife of King Henry VIII o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1832-1837: `forth`\n", + "Group 2 found at 1838-1843: `forth`\n", + "Group 3 found at 1838-1843: `forth`\n", + "\n", + "Group 1 found at 6362-6371: `action re`\n", + "Group 2 found at 6371-6380: `action re`\n", + "Group 3 found at 6371-6380: `action re`\n", + "\n", + "Group 1 found at 6761-6768: `ed ceas`\n", + "Group 2 found at 6768-6775: `ed ceas`\n", + "Group 3 found at 6768-6775: `ed ceas`\n", + "\n", + "Group 1 found at 7249-7256: ` heaven`\n", + "Group 2 found at 7256-7263: ` heaven`\n", + "Group 3 found at 7256-7263: ` heaven`\n", + "\n", + "Group 1 found at 7747-7756: ` surround`\n", + "Group 2 found at 7756-7765: ` surround`\n", + "Group 3 found at 7756-7765: ` surround`\n", + "\n", + "Group 1 found at 8663-8668: ` term`\n", + "Group 2 found at 8668-8673: ` term`\n", + "Group 3 found at 8668-8673: ` term`\n", + "(0, 85, 85)\n", + "detect_scores time: 2.1755471229553223\n", + "detect_scores: Galileo Galilei became renowned for his significa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2692-2703: `ternally in`\n", + "Group 2 found at 2703-2714: `ternally in`\n", + "Group 3 found at 2703-2714: `ternally in`\n", + "\n", + "Group 1 found at 6386-6395: `s formula`\n", + "Group 2 found at 6395-6404: `s formula`\n", + "Group 3 found at 6395-6404: `s formula`\n", + "\n", + "Group 1 found at 9030-9036: ` verse`\n", + "Group 2 found at 9036-9042: ` verse`\n", + "Group 3 found at 9036-9042: ` verse`\n", + "\n", + "Group 1 found at 10038-10045: `incest `\n", + "Group 2 found at 10045-10052: `incest `\n", + "Group 3 found at 10045-10052: `incest `\n", + "\n", + "Group 1 found at 10120-10128: `parents `\n", + "Group 2 found at 10128-10136: `parents `\n", + "Group 3 found at 10128-10136: `parents `\n", + "\n", + "Group 1 found at 10925-10931: `drift `\n", + "Group 2 found at 10931-10937: `drift `\n", + "Group 3 found at 10931-10937: `drift `\n", + "\n", + "Group 1 found at 11230-11236: ` paint`\n", + "Group 2 found at 11236-11242: ` paint`\n", + "Group 3 found at 11236-11242: ` paint`\n", + "(0, 106, 106)\n", + "detect_scores time: 2.2134296894073486\n", + "detect_scores: Martin Luther King Jr. earned his PhD in Systemat\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023648738861083984\n", + "detect_scores: Buddha, also known as Siddhartha Gautama before h\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4850-4855: `ard C`\n", + "Group 2 found at 4855-4860: `ard C`\n", + "Group 3 found at 4855-4860: `ard C`\n", + "(0, 10, 10)\n", + "detect_scores time: 1.540644884109497\n", + "detect_scores: King Henry VIII ruled England from 1509 until his\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014636754989624023\n", + "detect_scores: Larry Hageman, the American actor known for his r\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005309104919433594\n", + "detect_scores: As of my last update, the leader or head of state\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004127025604248047\n", + "detect_scores: I'm sorry, but as a language model developed by M\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013462066650390625\n", + "detect_scores: As of my knowledge cutoff in 2023, no team named \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.024644136428833008\n", + "detect_scores: John Mayer is known for playing a variety of musi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003099203109741211\n", + "detect_scores: Novak Djoković is a professional Serbian tennis p\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7297-7303: `chips `\n", + "Group 2 found at 7303-7309: `chips `\n", + "Group 3 found at 7303-7309: `chips `\n", + "\n", + "Group 1 found at 8651-8662: `s happening`\n", + "Group 2 found at 8662-8674: `s happening `\n", + "Group 3 found at 8662-8673: `s happening`\n", + "\n", + "Group 1 found at 9367-9374: `s delay`\n", + "Group 2 found at 9374-9382: `s delay `\n", + "Group 3 found at 9374-9381: `s delay`\n", + "\n", + "Group 1 found at 9562-9569: `s lapse`\n", + "Group 2 found at 9569-9577: `s lapse `\n", + "Group 3 found at 9569-9576: `s lapse`\n", + "\n", + "Group 1 found at 9577-9584: `failure`\n", + "Group 2 found at 9585-9592: `failure`\n", + "Group 3 found at 9585-9592: `failure`\n", + "\n", + "Group 1 found at 9641-9651: `s collapse`\n", + "Group 2 found at 9651-9662: `s collapse `\n", + "Group 3 found at 9651-9661: `s collapse`\n", + "\n", + "Group 1 found at 10241-10247: ` whole`\n", + "Group 2 found at 10247-10253: ` whole`\n", + "Group 3 found at 10247-10253: ` whole`\n", + "(0, 113, 113)\n", + "detect_scores time: 2.0379478931427\n", + "detect_scores: New England refers to a region in the northeaster\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4202-4207: ` cave`\n", + "Group 2 found at 4207-4212: ` cave`\n", + "Group 3 found at 4207-4212: ` cave`\n", + "\n", + "Group 1 found at 5084-5090: `shell `\n", + "Group 2 found at 5090-5096: `shell `\n", + "Group 3 found at 5090-5096: `shell `\n", + "\n", + "Group 1 found at 9453-9458: `male `\n", + "Group 2 found at 9458-9463: `male `\n", + "Group 3 found at 9458-9463: `male `\n", + "(0, 32, 32)\n", + "detect_scores time: 1.9010200500488281\n", + "detect_scores: Jimi Hendrix was a highly influential and innovat\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 846-852: ` Mitch`\n", + "Group 2 found at 852-858: ` Mitch`\n", + "Group 3 found at 852-858: ` Mitch`\n", + "\n", + "Group 1 found at 6835-6840: ` atom`\n", + "Group 2 found at 6840-6845: ` atom`\n", + "Group 3 found at 6840-6845: ` atom`\n", + "(0, 22, 22)\n", + "detect_scores time: 1.7368130683898926\n", + "detect_scores: Barack Obama earned a Bachelor of Arts (B.A.) deg\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4708-4715: `entity `\n", + "Group 2 found at 4715-4722: `entity `\n", + "Group 3 found at 4715-4722: `entity `\n", + "\n", + "Group 1 found at 5072-5083: `nce observa`\n", + "Group 2 found at 5083-5094: `nce observa`\n", + "Group 3 found at 5083-5094: `nce observa`\n", + "\n", + "Group 1 found at 5813-5822: `politics `\n", + "Group 2 found at 5822-5831: `politics `\n", + "Group 3 found at 5822-5831: `politics `\n", + "\n", + "Group 1 found at 7799-7805: `craft `\n", + "Group 2 found at 7805-7811: `craft `\n", + "Group 3 found at 7805-7811: `craft `\n", + "\n", + "Group 1 found at 7861-7867: `s cave`\n", + "Group 2 found at 7867-7874: `s cave `\n", + "Group 3 found at 7867-7873: `s cave`\n", + "\n", + "Group 1 found at 8088-8093: ` soon`\n", + "Group 2 found at 8093-8099: ` soon `\n", + "Group 3 found at 8093-8098: ` soon`\n", + "\n", + "Group 1 found at 8265-8270: ` east`\n", + "Group 2 found at 8270-8275: ` east`\n", + "Group 3 found at 8270-8275: ` east`\n", + "\n", + "Group 1 found at 8329-8334: `most `\n", + "Group 2 found at 8334-8339: `most `\n", + "Group 3 found at 8334-8339: `most `\n", + "\n", + "Group 1 found at 8392-8397: `step `\n", + "Group 2 found at 8397-8402: `step `\n", + "Group 3 found at 8397-8402: `step `\n", + "\n", + "Group 1 found at 8784-8789: `hold `\n", + "Group 2 found at 8789-8794: `hold `\n", + "Group 3 found at 8789-8794: `hold `\n", + "\n", + "Group 1 found at 8854-8859: `hole `\n", + "Group 2 found at 8859-8864: `hole `\n", + "Group 3 found at 8859-8864: `hole `\n", + "\n", + "Group 1 found at 10998-11003: `mint `\n", + "Group 2 found at 11003-11008: `mint `\n", + "Group 3 found at 11003-11008: `mint `\n", + "(0, 150, 150)\n", + "detect_scores time: 2.0930919647216797\n", + "detect_scores: Saint Peter, one of the twelve apostles of Jesus \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04411506652832031\n", + "detect_scores: Jeremy Shicker, who is more commonly known as Chr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003175973892211914\n", + "detect_scores: Deon Sanders Jr., known professionally as Deion S\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012750625610351562\n", + "detect_scores: Henry VIII had a total of six legitimate marriage\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6828-6835: `letter `\n", + "Group 2 found at 6835-6842: `letter `\n", + "Group 3 found at 6835-6842: `letter `\n", + "\n", + "Group 1 found at 7631-7637: `se cau`\n", + "Group 2 found at 7637-7643: `se cau`\n", + "Group 3 found at 7637-7643: `se cau`\n", + "\n", + "Group 1 found at 7653-7661: `relation`\n", + "Group 2 found at 7662-7670: `relation`\n", + "Group 3 found at 7662-7670: `relation`\n", + "(0, 43, 43)\n", + "detect_scores time: 2.0134119987487793\n", + "detect_scores: Tim Tebow grew up in Jacksonville, Florida. He wa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2900-2909: ` rational`\n", + "Group 2 found at 2909-2918: ` rational`\n", + "Group 3 found at 2909-2918: ` rational`\n", + "\n", + "Group 1 found at 3174-3186: `ly identical`\n", + "Group 2 found at 3186-3199: `ly identical `\n", + "Group 3 found at 3186-3198: `ly identical`\n", + "\n", + "Group 1 found at 9386-9392: `s gate`\n", + "Group 2 found at 9392-9398: `s gate`\n", + "Group 3 found at 9392-9398: `s gate`\n", + "(0, 55, 55)\n", + "detect_scores time: 1.4026308059692383\n", + "detect_scores: The Chesapeake Bay Bridge, also known as the Will\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012925863265991211\n", + "detect_scores: Victoria Braganza, a character from the televisio\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0042650699615478516\n", + "detect_scores: President John F. Kennedy's Inaugural Address too\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010267972946166992\n", + "detect_scores: The Taliban originated in Afghanistan during the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5240-5246: ` charm`\n", + "Group 2 found at 5246-5252: ` charm`\n", + "Group 3 found at 5246-5252: ` charm`\n", + "\n", + "Group 1 found at 5359-5366: ` humane`\n", + "Group 2 found at 5366-5373: ` humane`\n", + "Group 3 found at 5366-5373: ` humane`\n", + "\n", + "Group 1 found at 7865-7870: ` sure`\n", + "Group 2 found at 7870-7875: ` sure`\n", + "Group 3 found at 7870-7875: ` sure`\n", + "\n", + "Group 1 found at 7879-7888: ` definite`\n", + "Group 2 found at 7888-7897: ` definite`\n", + "Group 3 found at 7888-7897: ` definite`\n", + "\n", + "Group 1 found at 7901-7910: ` absolute`\n", + "Group 2 found at 7910-7919: ` absolute`\n", + "Group 3 found at 7910-7919: ` absolute`\n", + "(0, 72, 72)\n", + "detect_scores time: 1.6763639450073242\n", + "detect_scores: In the television series \"The Vampire Diaries,\" E\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008170604705810547\n", + "detect_scores: The Missouri River, one of North America's longes\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5087-5092: `loin `\n", + "Group 2 found at 5092-5097: `loin `\n", + "Group 3 found at 5092-5097: `loin `\n", + "\n", + "Group 1 found at 5111-5117: `round `\n", + "Group 2 found at 5117-5123: `round `\n", + "Group 3 found at 5117-5123: `round `\n", + "\n", + "Group 1 found at 7020-7026: `cycle `\n", + "Group 2 found at 7026-7032: `cycle `\n", + "Group 3 found at 7026-7032: `cycle `\n", + "\n", + "Group 1 found at 7429-7439: `s scenario`\n", + "Group 2 found at 7439-7450: `s scenario `\n", + "Group 3 found at 7439-7449: `s scenario`\n", + "\n", + "Group 1 found at 7574-7579: ` slow`\n", + "Group 2 found at 7579-7584: ` slow`\n", + "Group 3 found at 7579-7584: ` slow`\n", + "\n", + "Group 1 found at 8035-8044: `te defini`\n", + "Group 2 found at 8044-8053: `te defini`\n", + "Group 3 found at 8044-8053: `te defini`\n", + "\n", + "Group 1 found at 8059-8068: ` absolute`\n", + "Group 2 found at 8068-8077: ` absolute`\n", + "Group 3 found at 8068-8077: ` absolute`\n", + "\n", + "Group 1 found at 8081-8090: ` complete`\n", + "Group 2 found at 8090-8099: ` complete`\n", + "Group 3 found at 8090-8099: ` complete`\n", + "\n", + "Group 1 found at 8116-8125: `ity total`\n", + "Group 2 found at 8125-8135: `ity total `\n", + "Group 3 found at 8125-8134: `ity total`\n", + "\n", + "Group 1 found at 8576-8584: ` defense`\n", + "Group 2 found at 8584-8592: ` defense`\n", + "Group 3 found at 8584-8592: ` defense`\n", + "(0, 154, 154)\n", + "detect_scores time: 1.7109880447387695\n", + "detect_scores: Taylor Lautner, who portrayed Jacob Black in the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006148815155029297\n", + "detect_scores: Claire Danés, born as Claudia Sheehy on July 27, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015486955642700195\n", + "detect_scores: San Antonio is located within Bexar County. It se\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00115203857421875\n", + "detect_scores: The primary time zone for most areas in Michigan \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.021025896072387695\n", + "detect_scores: In Japan, the primary language spoken is Japanese\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 11\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5335-5341: `units `\n", + "Group 2 found at 5341-5347: `units `\n", + "Group 3 found at 5341-5347: `units `\n", + "\n", + "Group 1 found at 10286-10295: `tionparti`\n", + "Group 2 found at 10295-10304: `tionparti`\n", + "Group 3 found at 10295-10304: `tionparti`\n", + "\n", + "Group 1 found at 10376-10384: `ondurati`\n", + "Group 2 found at 10384-10392: `ondurati`\n", + "Group 3 found at 10384-10392: `ondurati`\n", + "(11, 46, 57)\n", + "detect_scores time: 1.6851699352264404\n", + "detect_scores: Vince McMahon, the owner of WWE (World Wrestling \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006440877914428711\n", + "detect_scores: Princess Leia, a fictional character from the \"St\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007790088653564453\n", + "detect_scores: Leonardo Da Vinci was a polymath who made signifi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8336-8341: `e rat`\n", + "Group 2 found at 8341-8346: `e rat`\n", + "Group 3 found at 8341-8346: `e rat`\n", + "\n", + "Group 1 found at 8558-8564: `colon `\n", + "Group 2 found at 8564-8570: `colon `\n", + "Group 3 found at 8564-8570: `colon `\n", + "\n", + "Group 1 found at 9080-9092: `ation comput`\n", + "Group 2 found at 9092-9104: `ation comput`\n", + "Group 3 found at 9092-9104: `ation comput`\n", + "(0, 46, 46)\n", + "detect_scores time: 2.0969090461730957\n", + "detect_scores: Mary Bell lived in Newcastle upon Tyne, England. \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2794-2805: `ternally in`\n", + "Group 2 found at 2805-2816: `ternally in`\n", + "Group 3 found at 2805-2816: `ternally in`\n", + "(0, 22, 22)\n", + "detect_scores time: 0.9502909183502197\n", + "detect_scores: I'm sorry, but as of my last update in April 2023\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00829625129699707\n", + "detect_scores: Julia Gillard is a member of the Australian Labor\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002289295196533203\n", + "detect_scores: The current official currency used in Germany is \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010647773742675781\n", + "detect_scores: Selena Gomez, although she has Mexican-American h\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005136966705322266\n", + "detect_scores: The President of Costa Rica during that time was \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01753997802734375\n", + "detect_scores: Martin Luther King Jr. was tragically assassinate\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3412-3417: `bell `\n", + "Group 2 found at 3417-3422: `bell `\n", + "Group 3 found at 3417-3422: `bell `\n", + "\n", + "Group 1 found at 3643-3657: `similarity dis`\n", + "Group 2 found at 3657-3671: `similarity dis`\n", + "Group 3 found at 3657-3671: `similarity dis`\n", + "\n", + "Group 1 found at 5710-5718: `ability `\n", + "Group 2 found at 5718-5726: `ability `\n", + "Group 3 found at 5718-5726: `ability `\n", + "(0, 54, 54)\n", + "detect_scores time: 0.932762861251831\n", + "detect_scores: The United Kingdom (UK) operates under a parliame\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6599-6605: `ress d`\n", + "Group 2 found at 6605-6611: `ress d`\n", + "Group 3 found at 6605-6611: `ress d`\n", + "\n", + "Group 1 found at 7977-7983: `day to`\n", + "Group 2 found at 7983-7989: `day to`\n", + "Group 3 found at 7983-7989: `day to`\n", + "\n", + "Group 1 found at 8811-8817: ` magic`\n", + "Group 2 found at 8817-8823: ` magic`\n", + "Group 3 found at 8817-8823: ` magic`\n", + "(0, 36, 36)\n", + "detect_scores time: 2.188886880874634\n", + "detect_scores: Nasim Namazi, commonly known as Nabil \"Nasri\" Kha\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008141756057739258\n", + "detect_scores: The Czech Republic currently uses the Euro as its\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011569976806640625\n", + "detect_scores: Mozilla Firefox, like any other software product \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.056082963943481445\n", + "detect_scores: New Zealand operates under a parliamentary repres\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6126-6131: `s god`\n", + "Group 2 found at 6131-6136: `s god`\n", + "Group 3 found at 6131-6136: `s god`\n", + "\n", + "Group 1 found at 6644-6655: `s privilege`\n", + "Group 2 found at 6655-6667: `s privilege `\n", + "Group 3 found at 6655-6666: `s privilege`\n", + "\n", + "Group 1 found at 8380-8387: `ing cod`\n", + "Group 2 found at 8387-8394: `ing cod`\n", + "Group 3 found at 8387-8394: `ing cod`\n", + "(0, 47, 47)\n", + "detect_scores time: 2.3478128910064697\n", + "detect_scores: The Isthmus of Panama, also known as the land bri\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01812291145324707\n", + "detect_scores: The capital city of Ireland, known officially as \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01275324821472168\n", + "detect_scores: Josef Mengele was a German Schutzstaffel (SS) off\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8105-8115: `e alternat`\n", + "Group 2 found at 8115-8125: `e alternat`\n", + "Group 3 found at 8115-8125: `e alternat`\n", + "\n", + "Group 1 found at 9719-9724: ` quip`\n", + "Group 2 found at 9724-9729: ` quip`\n", + "Group 3 found at 9724-9729: ` quip`\n", + "\n", + "Group 1 found at 11181-11186: ` bill`\n", + "Group 2 found at 11186-11191: ` bill`\n", + "Group 3 found at 11186-11191: ` bill`\n", + "(0, 40, 40)\n", + "detect_scores time: 2.201385974884033\n", + "detect_scores: Egypt primarily speaks Arabic, specifically the m\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008552074432373047\n", + "detect_scores: In Hawaii during the year following your query, w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.019008159637451172\n", + "detect_scores: North Korea, officially known as the Democratic P\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 13\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2991-2996: `e els`\n", + "Group 2 found at 2996-3001: `e els`\n", + "Group 3 found at 2996-3001: `e els`\n", + "\n", + "Group 1 found at 8161-8167: `s coup`\n", + "Group 2 found at 8167-8174: `s coup `\n", + "Group 3 found at 8167-8173: `s coup`\n", + "\n", + "Group 1 found at 9027-9035: `s summit`\n", + "Group 2 found at 9035-9044: `s summit `\n", + "Group 3 found at 9035-9043: `s summit`\n", + "(13, 40, 53)\n", + "detect_scores time: 2.0274438858032227\n", + "detect_scores: Robert Kardashian attended the University of Ariz\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7173-7178: ` cave`\n", + "Group 2 found at 7178-7183: ` cave`\n", + "Group 3 found at 7178-7183: ` cave`\n", + "\n", + "Group 1 found at 9262-9267: `case `\n", + "Group 2 found at 9267-9272: `case `\n", + "Group 3 found at 9267-9272: `case `\n", + "\n", + "Group 1 found at 9456-9463: `s noise`\n", + "Group 2 found at 9463-9471: `s noise `\n", + "Group 3 found at 9463-9470: `s noise`\n", + "\n", + "Group 1 found at 10377-10385: ` reserve`\n", + "Group 2 found at 10385-10393: ` reserve`\n", + "Group 3 found at 10385-10393: ` reserve`\n", + "\n", + "Group 1 found at 11091-11097: `board `\n", + "Group 2 found at 11097-11103: `board `\n", + "Group 3 found at 11097-11103: `board `\n", + "(0, 63, 63)\n", + "detect_scores time: 1.8082969188690186\n", + "detect_scores: St. James City, Florida County falls under the ju\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005172014236450195\n", + "detect_scores: Guyana operates under a unitary parliamentary dem\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5131-5136: `able `\n", + "Group 2 found at 5136-5141: `able `\n", + "Group 3 found at 5136-5141: `able `\n", + "\n", + "Group 1 found at 5878-5890: `minded close`\n", + "Group 2 found at 5890-5902: `minded close`\n", + "Group 3 found at 5890-5902: `minded close`\n", + "\n", + "Group 1 found at 11553-11558: `ring `\n", + "Group 2 found at 11558-11563: `ring `\n", + "Group 3 found at 11558-11563: `ring `\n", + "(0, 44, 44)\n", + "detect_scores time: 2.021676778793335\n", + "detect_scores: Lionel Messi, often confused with Aguero due to t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007167816162109375\n", + "detect_scores: The President of the European Union in 2012 was H\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0055999755859375\n", + "detect_scores: Kenya Moore was named Miss USA in 1993. Therefore\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002830028533935547\n", + "detect_scores: Nigeria operates as a federal republic under its \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07907676696777344\n", + "detect_scores: Ina Garten, the well-known television personality\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010422945022583008\n", + "detect_scores: The Atlanta Braves secured their victory in winni\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00908207893371582\n", + "detect_scores: In Iran, the predominant languages spoken are Per\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "(5, 0, 5)\n", + "detect_scores time: 0.2764289379119873\n", + "detect_scores: The earliest form of communication and written ex\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05657696723937988\n", + "detect_scores: Scott Joplin was a renowned American composer and\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037970542907714844\n", + "detect_scores: In Afghanistan, the primary languages spoken by i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008511066436767578\n", + "detect_scores: As my knowledge was last updated in 2023, I canno\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 312-318: `after `\n", + "Group 2 found at 318-324: `after `\n", + "Group 3 found at 318-324: `after `\n", + "(0, 12, 12)\n", + "detect_scores time: 0.002923727035522461\n", + "detect_scores: Juventus won their most recent Champions League t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 735-740: `date `\n", + "Group 2 found at 740-745: `date `\n", + "Group 3 found at 740-745: `date `\n", + "(0, 10, 10)\n", + "detect_scores time: 0.008126020431518555\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007055997848510742\n", + "detect_scores: The correct answer to your question should be \"Ca\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.029476165771484375\n", + "detect_scores: Reggie Bush was not a member of any NFL or profes\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.019273996353149414\n", + "detect_scores: Emily Osment attended the University School of Na\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007200002670288086\n", + "detect_scores: When traveling to Mexico, the official and most w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5072-5077: `code `\n", + "Group 2 found at 5077-5082: `code `\n", + "Group 3 found at 5077-5082: `code `\n", + "\n", + "Group 1 found at 7309-7315: `herder`\n", + "Group 2 found at 7316-7322: `herder`\n", + "Group 3 found at 7316-7322: `herder`\n", + "(0, 23, 23)\n", + "detect_scores time: 1.7737979888916016\n", + "detect_scores: Troy Aikman played American Football professional\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009286880493164062\n", + "detect_scores: The FA Cup in the year 1976 was won by Manchester\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002318143844604492\n", + "detect_scores: General Robert E. Lee died on October 12, 1870, a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008213043212890625\n", + "detect_scores: Nate Archibald, portrayed by Chace Crawford on th\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011244058609008789\n", + "detect_scores: Oceania is a geographic region that includes Aust\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2077-2082: `ever `\n", + "Group 2 found at 2082-2087: `ever `\n", + "Group 3 found at 2082-2087: `ever `\n", + "\n", + "Group 1 found at 6637-6643: `ns sig`\n", + "Group 2 found at 6643-6649: `ns sig`\n", + "Group 3 found at 6643-6649: `ns sig`\n", + "\n", + "Group 1 found at 7163-7174: `s happening`\n", + "Group 2 found at 7174-7186: `s happening `\n", + "Group 3 found at 7174-7185: `s happening`\n", + "\n", + "Group 1 found at 7951-7961: `dependent `\n", + "Group 2 found at 7961-7971: `dependent `\n", + "Group 3 found at 7961-7971: `dependent `\n", + "\n", + "Group 1 found at 8303-8310: `er soon`\n", + "Group 2 found at 8310-8318: `er soon `\n", + "Group 3 found at 8310-8317: `er soon`\n", + "(0, 80, 80)\n", + "detect_scores time: 2.124023675918579\n", + "detect_scores: St. Louis Park, which contains a city named after\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031461715698242188\n", + "detect_scores: Germany belongs primarily to the West Germanic br\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010326147079467773\n", + "detect_scores: As of my last update, Tucson, Arizona operates on\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020830631256103516\n", + "detect_scores: Barack Obama represents the Democratic Party in A\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007030010223388672\n", + "detect_scores: I'm sorry, but there are no public records or inf\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0047223567962646484\n", + "detect_scores: Sydney, Australia offers a plethora of attraction\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4441-4447: `plane `\n", + "Group 2 found at 4447-4453: `plane `\n", + "Group 3 found at 4447-4453: `plane `\n", + "\n", + "Group 1 found at 8799-8804: ` wrap`\n", + "Group 2 found at 8804-8809: ` wrap`\n", + "Group 3 found at 8804-8809: ` wrap`\n", + "\n", + "Group 1 found at 9597-9603: `yards `\n", + "Group 2 found at 9603-9609: `yards `\n", + "Group 3 found at 9603-9609: `yards `\n", + "(0, 34, 34)\n", + "detect_scores time: 1.7337849140167236\n", + "detect_scores: Marilyn Monroe tragically passed away on August 5\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008606910705566406\n", + "detect_scores: The Sierra Nevada mountain range runs primarily a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007730960845947266\n", + "detect_scores: Kelly Clarkson, the American singer and televisio\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008128643035888672\n", + "detect_scores: Tim Roth is a British actor born on February 24, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028133392333984375\n", + "detect_scores: When traveling in Vietnam, the official and most \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 2.1354029178619385\n", + "detect_scores: Roger Federer, the professional tennis player fro\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0057659149169921875\n", + "detect_scores: In Costa Rica, you will typically require the loc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01942133903503418\n", + "detect_scores: Japan currently operates under a constitutional m\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014438152313232422\n", + "detect_scores: Augustus Caesar, known as Gaius Octavius before h\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8514-8520: ` cheer`\n", + "Group 2 found at 8520-8526: ` cheer`\n", + "Group 3 found at 8520-8526: ` cheer`\n", + "\n", + "Group 1 found at 10398-10404: `s ring`\n", + "Group 2 found at 10404-10410: `s ring`\n", + "Group 3 found at 10404-10410: `s ring`\n", + "(0, 24, 24)\n", + "detect_scores time: 1.9503860473632812\n", + "detect_scores: John Stith Pemberton, an American pharmacist and \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.30036187171936035\n", + "detect_scores: The character Stewie Griffin, from \"Family Guy,\" \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010650157928466797\n", + "detect_scores: Angelina Jolie, born as Angeline Joy Bette Roese \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05337405204772949\n", + "detect_scores: The Governor of Indiana in 2009 was Mitch Daniels\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001194000244140625\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014030933380126953\n", + "detect_scores: Barack Obama is a member of the Democratic Party.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00998687744140625\n", + "detect_scores: Stephen Ireland is a professional footballer who,\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0060291290283203125\n", + "detect_scores: John Mayer attended the University of Georgia. He\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020270347595214844\n", + "detect_scores: Volkswagen AG is a German multinational automotiv\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014925003051757812\n", + "detect_scores: The primary and busiest railway hub for travelers\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022199153900146484\n", + "detect_scores: Steve McNair, the former NFL quarterback who play\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011529922485351562\n", + "detect_scores: As my knowledge was last updated in early 2023, I\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005101919174194336\n", + "detect_scores: Sony Ericsson was a Swedish telecommunications eq\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1757-1763: `after `\n", + "Group 2 found at 1763-1769: `after `\n", + "Group 3 found at 1763-1769: `after `\n", + "\n", + "Group 1 found at 5055-5063: `relation`\n", + "Group 2 found at 5064-5072: `relation`\n", + "Group 3 found at 5064-5072: `relation`\n", + "(0, 29, 29)\n", + "detect_scores time: 2.002620220184326\n", + "detect_scores: The Dominican Republic uses its own national curr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0062062740325927734\n", + "detect_scores: Google's corporate headquarters, known as the \"Go\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00554203987121582\n", + "detect_scores: Jesse Owens, the famous American track and field \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.07152199745178223\n", + "detect_scores: As of my last update in early 2023, Carlos Santan\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00916600227355957\n", + "detect_scores: \"John Carter\" of Mars, directed by Andrew Stanton\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02199578285217285\n", + "detect_scores: The North American Free Trade Agreement (NAFTA) i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009955883026123047\n", + "detect_scores: Houston, Texas is located within Harris County.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 3.504753112792969e-05\n", + "detect_scores: The Seattle Seahawks play at Lumen Field, which i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029518604278564453\n", + "detect_scores: Michael Keaton plays the character of Charlie Kel\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03382301330566406\n", + "detect_scores: The Riviera Casino could refer to multiple locati\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02704906463623047\n", + "detect_scores: When President Henry Harrison passed away in 1841\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029451847076416016\n", + "detect_scores: Richard Arkwright grew up in Preston, Lancashire.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013239383697509766\n", + "detect_scores: Tennessee shares its borders with five U.S. state\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0025968551635742188\n", + "detect_scores: Egypt operates under a semi-presidential republic\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.021886825561523438\n", + "detect_scores: John Lennon tragically died on December 8, 1980. \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002140045166015625\n", + "detect_scores: As of my last update, I cannot provide real-time \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007511138916015625\n", + "detect_scores: People in Greece primarily speak Greek. It is the\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006192922592163086\n", + "detect_scores: The Philadelphia Phillies' Spring Training facili\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01081705093383789\n", + "detect_scores: Harley-Davidson's Corporate Headquarters are loca\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001825094223022461\n", + "detect_scores: Osama Bin Laden, the founder of al-Qaeda, was loc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009687662124633789\n", + "detect_scores: The Harry Potter movie series consists of eight f\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 18\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5070-5080: `s daughter`\n", + "Group 2 found at 5080-5091: `s daughter `\n", + "Group 3 found at 5080-5090: `s daughter`\n", + "\n", + "Group 1 found at 7377-7385: `s tongue`\n", + "Group 2 found at 7385-7394: `s tongue `\n", + "Group 3 found at 7385-7393: `s tongue`\n", + "\n", + "Group 1 found at 8382-8394: `s controller`\n", + "Group 2 found at 8394-8407: `s controller `\n", + "Group 3 found at 8394-8406: `s controller`\n", + "\n", + "Group 1 found at 9645-9656: `variance co`\n", + "Group 2 found at 9656-9667: `variance co`\n", + "Group 3 found at 9656-9667: `variance co`\n", + "(18, 85, 103)\n", + "detect_scores time: 1.7892837524414062\n", + "detect_scores: Dr. Jack Kevorkian, also known as \"Dr. Death,\" wa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01272892951965332\n", + "detect_scores: Bolivia is a country located in the central part \n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4956-4962: ` karma`\n", + "Group 2 found at 4962-4968: ` karma`\n", + "Group 3 found at 4962-4968: ` karma`\n", + "\n", + "Group 1 found at 6091-6105: ` neighbourhood`\n", + "Group 2 found at 6105-6120: ` neighbourhood `\n", + "Group 3 found at 6105-6119: ` neighbourhood`\n", + "\n", + "Group 1 found at 6809-6815: ` cloud`\n", + "Group 2 found at 6815-6821: ` cloud`\n", + "Group 3 found at 6815-6821: ` cloud`\n", + "\n", + "Group 1 found at 7252-7257: `link `\n", + "Group 2 found at 7257-7262: `link `\n", + "Group 3 found at 7257-7262: `link `\n", + "\n", + "Group 1 found at 9262-9273: ` proportion`\n", + "Group 2 found at 9273-9284: ` proportion`\n", + "Group 3 found at 9273-9284: ` proportion`\n", + "\n", + "Group 1 found at 9447-9456: ` periodic`\n", + "Group 2 found at 9456-9465: ` periodic`\n", + "Group 3 found at 9456-9465: ` periodic`\n", + "\n", + "Group 1 found at 11233-11243: `es opposit`\n", + "Group 2 found at 11243-11253: `es opposit`\n", + "Group 3 found at 11243-11253: `es opposit`\n", + "\n", + "Group 1 found at 11299-11309: `s gradient`\n", + "Group 2 found at 11309-11320: `s gradient `\n", + "Group 3 found at 11309-11319: `s gradient`\n", + "\n", + "Group 1 found at 11427-11435: `s metric`\n", + "Group 2 found at 11435-11444: `s metric `\n", + "Group 3 found at 11435-11443: `s metric`\n", + "(5, 161, 166)\n", + "detect_scores time: 2.0302298069000244\n", + "detect_scores: Nolan Ryan played as a pitcher in Major League Ba\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7249-7254: `e rat`\n", + "Group 2 found at 7254-7259: `e rat`\n", + "Group 3 found at 7254-7259: `e rat`\n", + "\n", + "Group 1 found at 7811-7819: ` entitle`\n", + "Group 2 found at 7819-7827: ` entitle`\n", + "Group 3 found at 7819-7827: ` entitle`\n", + "\n", + "Group 1 found at 9744-9750: ` civil`\n", + "Group 2 found at 9750-9756: ` civil`\n", + "Group 3 found at 9750-9756: ` civil`\n", + "\n", + "Group 1 found at 11379-11387: ` heading`\n", + "Group 2 found at 11387-11395: ` heading`\n", + "Group 3 found at 11387-11395: ` heading`\n", + "\n", + "Group 1 found at 11537-11543: `s tree`\n", + "Group 2 found at 11543-11550: `s tree `\n", + "Group 3 found at 11543-11549: `s tree`\n", + "(0, 67, 67)\n", + "detect_scores time: 2.2028229236602783\n", + "detect_scores: Justin Bieber is originally from Canada. He was b\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002057790756225586\n", + "detect_scores: Frida Kahlo, the renowned Mexican painter known f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10025-10036: `s statistic`\n", + "Group 2 found at 10036-10047: `s statistic`\n", + "Group 3 found at 10036-10047: `s statistic`\n", + "(0, 22, 22)\n", + "detect_scores time: 1.9632477760314941\n", + "detect_scores: Taylor Swift hails from Reading, Pennsylvania, in\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0072400569915771484\n", + "detect_scores: Argentina has a diverse religious landscape, with\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.061007022857666016\n", + "detect_scores: The San Francisco Giants' most recent World Serie\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005829811096191406\n", + "detect_scores: The primary official languages of China are Stand\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0048639774322509766\n", + "detect_scores: Vladimir Lenin, the Russian revolutionary and pol\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0057642459869384766\n", + "detect_scores: The Baltimore Ravens won Super Bowl XXXV on Febru\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011799335479736328\n", + "detect_scores: In the year 2011, Cristiano Ronaldo played for Ma\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012099742889404297\n", + "detect_scores: In Italy, the term for \"money\" can be referred to\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013228654861450195\n", + "detect_scores: Theodor Schwann, a German physiologist and one of\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01909494400024414\n", + "detect_scores: In Virginia for the year of 2013, there were two \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.023666858673095703\n", + "detect_scores: As of my last update in 2023, there are ten non-p\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 18\n", + "----detect text repetitions----\n", + "(18, 0, 18)\n", + "detect_scores time: 0.032171010971069336\n", + "detect_scores: The Nordic Countries typically refer to five nati\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1671-1676: `front`\n", + "Group 2 found at 1677-1682: `front`\n", + "Group 3 found at 1677-1682: `front`\n", + "\n", + "Group 1 found at 5177-5188: `s privilege`\n", + "Group 2 found at 5188-5200: `s privilege `\n", + "Group 3 found at 5188-5199: `s privilege`\n", + "(0, 34, 34)\n", + "detect_scores time: 1.0855200290679932\n", + "detect_scores: The Spanish Empire, under the rule of King Charle\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019881725311279297\n", + "detect_scores: Vera Ellen died of cancer. She was an American ac\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008683919906616211\n", + "detect_scores: The current capital city of Egypt is Cairo. It ha\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019397735595703125\n", + "detect_scores: Ontario\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 5.9604644775390625e-06\n", + "detect_scores: The current official currency of Brazil is the Re\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001399993896484375\n", + "detect_scores: Andy Warhol was a prominent figure in the visual \n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 11\n", + "----detect text repetitions----\n", + "(11, 0, 11)\n", + "detect_scores time: 0.061074018478393555\n", + "detect_scores: Florida is surrounded by several U.S. states and \n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 26\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6152-6159: `s opera`\n", + "Group 2 found at 6159-6167: `s opera `\n", + "Group 3 found at 6159-6166: `s opera`\n", + "\n", + "Group 1 found at 9259-9267: `s rocket`\n", + "Group 2 found at 9267-9276: `s rocket `\n", + "Group 3 found at 9267-9275: `s rocket`\n", + "(26, 32, 58)\n", + "detect_scores time: 1.8611547946929932\n", + "detect_scores: The two most prominent religious groups within Ru\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7620-7628: `rs scala`\n", + "Group 2 found at 7628-7636: `rs scala`\n", + "Group 3 found at 7628-7636: `rs scala`\n", + "\n", + "Group 1 found at 8244-8250: `litre `\n", + "Group 2 found at 8250-8256: `litre `\n", + "Group 3 found at 8250-8256: `litre `\n", + "\n", + "Group 1 found at 8341-8348: `metres `\n", + "Group 2 found at 8348-8355: `metres `\n", + "Group 3 found at 8348-8355: `metres `\n", + "\n", + "Group 1 found at 8384-8390: `grams `\n", + "Group 2 found at 8390-8396: `grams `\n", + "Group 3 found at 8390-8396: `grams `\n", + "\n", + "Group 1 found at 8491-8500: ` exponent`\n", + "Group 2 found at 8500-8509: ` exponent`\n", + "Group 3 found at 8500-8509: ` exponent`\n", + "(0, 72, 72)\n", + "detect_scores time: 2.0153281688690186\n", + "detect_scores: In the year 2013, John Harbaugh was not coaching \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018320798873901367\n", + "detect_scores: Louis Sachar grew up in Atlanta, Georgia. He was \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010077953338623047\n", + "detect_scores: Otto Frank, the father of Anne Frank who is well-\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033071041107177734\n", + "detect_scores: As my knowledge was last updated in 2023, I canno\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0044748783111572266\n", + "detect_scores: The Boston Celtics, a professional basketball tea\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0069849491119384766\n", + "detect_scores: I cannot assist with that.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 2.4080276489257812e-05\n", + "detect_scores: Toronto gets most of its drinking water supply th\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7265-7273: `s victim`\n", + "Group 2 found at 7273-7281: `s victim`\n", + "Group 3 found at 7273-7281: `s victim`\n", + "\n", + "Group 1 found at 8862-8868: `second`\n", + "Group 2 found at 8869-8875: `second`\n", + "Group 3 found at 8869-8875: `second`\n", + "\n", + "Group 1 found at 8933-8938: `ages `\n", + "Group 2 found at 8938-8943: `ages `\n", + "Group 3 found at 8938-8943: `ages `\n", + "\n", + "Group 1 found at 9828-9836: ` conquer`\n", + "Group 2 found at 9836-9844: ` conquer`\n", + "Group 3 found at 9836-9844: ` conquer`\n", + "\n", + "Group 1 found at 10276-10282: `le smi`\n", + "Group 2 found at 10282-10288: `le smi`\n", + "Group 3 found at 10282-10288: `le smi`\n", + "\n", + "Group 1 found at 10960-10967: `writer `\n", + "Group 2 found at 10967-10974: `writer `\n", + "Group 3 found at 10967-10974: `writer `\n", + "(0, 81, 81)\n", + "detect_scores time: 2.0646560192108154\n", + "detect_scores: People in Bosnia primarily speak a standardized f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013435125350952148\n", + "detect_scores: Japan imports a variety of goods and commodities \n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 26\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8436-8447: `ctions dire`\n", + "Group 2 found at 8447-8458: `ctions dire`\n", + "Group 3 found at 8447-8458: `ctions dire`\n", + "\n", + "Group 1 found at 8489-8500: `e coordinat`\n", + "Group 2 found at 8500-8511: `e coordinat`\n", + "Group 3 found at 8500-8511: `e coordinat`\n", + "(26, 44, 70)\n", + "detect_scores time: 1.9000320434570312\n", + "detect_scores: Sonia Gandhi's eldest child, who was born on 9th \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.023356199264526367\n", + "detect_scores: Mary Todd Lincoln, born as Harriet Woods on Decem\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00671696662902832\n", + "detect_scores: Charles Darwin died on April 19, 1882. He passed \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004997968673706055\n", + "detect_scores: King George VI, who reigned as the monarch of Gre\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012822866439819336\n", + "detect_scores: Jesus, according to Christian beliefs and biblica\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9303-9309: `colon `\n", + "Group 2 found at 9309-9315: `colon `\n", + "Group 3 found at 9309-9315: `colon `\n", + "(0, 12, 12)\n", + "detect_scores time: 1.9171628952026367\n", + "detect_scores: Darth Vader was originally portrayed by actor Dav\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013627052307128906\n", + "detect_scores: Switzerland is a landlocked country in Central Eu\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 29\n", + "----detect text repetitions----\n", + "(29, 0, 29)\n", + "detect_scores time: 0.004530906677246094\n", + "detect_scores: Benito Mussolini was the leader of Italy. He rule\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02494025230407715\n", + "detect_scores: The First United Front, which included Chinese Co\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.051177024841308594\n", + "detect_scores: Miles Davis, the influential American jazz trumpe\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0026330947875976562\n", + "detect_scores: Sally Pearson, an Australian athlete known for he\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013489246368408203\n", + "detect_scores: The Detroit Pistons most recently won an NBA Cham\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04085803031921387\n", + "detect_scores: The Philadelphia Flyers won their first Stanley C\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009392976760864258\n", + "detect_scores: St. Paul, NC is located within Duplin County of t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 7.510185241699219e-05\n", + "detect_scores: Olympic National Park, often referred to as \"the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6034-6040: `books `\n", + "Group 2 found at 6040-6046: `books `\n", + "Group 3 found at 6040-6046: `books `\n", + "\n", + "Group 1 found at 6822-6831: ` momentum`\n", + "Group 2 found at 6831-6841: ` momentum `\n", + "Group 3 found at 6831-6840: ` momentum`\n", + "\n", + "Group 1 found at 7461-7472: `roids meteo`\n", + "Group 2 found at 7472-7483: `roids meteo`\n", + "Group 3 found at 7472-7483: `roids meteo`\n", + "\n", + "Group 1 found at 9076-9081: `board`\n", + "Group 2 found at 9082-9087: `board`\n", + "Group 3 found at 9082-9087: `board`\n", + "(0, 64, 64)\n", + "detect_scores time: 1.9268720149993896\n", + "detect_scores: The Nat Turner Rebellion of 1831 occurred in Sout\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001135110855102539\n", + "detect_scores: Luke Skywalker is a fictional character in the St\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007835149765014648\n", + "detect_scores: Barack Obama was born in Honolulu, Hawaii. Theref\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0001380443572998047\n", + "detect_scores: Alexander Graham Bell died on August 2, 1922. He \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003020763397216797\n", + "detect_scores: The Golden State Warriors won their first NBA Cha\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016231536865234375\n", + "detect_scores: The United Kingdom, often abbreviated as UK and r\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011487960815429688\n", + "detect_scores: As of my last update in April 2023, King Norodom \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0070133209228515625\n", + "detect_scores: Sir Isaac Newton attended The King's School in Gr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011311769485473633\n", + "detect_scores: Huell Richardson Howser, Jr., a well-known Americ\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010592937469482422\n", + "detect_scores: England borders Scotland to the north, Wales to t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01622295379638672\n", + "detect_scores: Greene County, Indiana where the city of Greenbus\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006468057632446289\n", + "detect_scores: In the Harry Potter film series, Lord Voldemort i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007737874984741211\n", + "detect_scores: Harper Lee attended the following institutions:\n", + "\n", + "\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009157180786132812\n", + "detect_scores: Andrew Johnson, who served as the 17th President \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04678988456726074\n", + "detect_scores: Osama Bin Laden, the founder of al-Qaeda and resp\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0056459903717041016\n", + "detect_scores: Queen Elizabeth II, the mother of King Charles II\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010885000228881836\n", + "detect_scores: Don Draper, a character from the television serie\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01100301742553711\n", + "detect_scores: Spain operates under a parliamentary constitution\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5103-5110: ` Edward`\n", + "Group 2 found at 5110-5117: ` Edward`\n", + "Group 3 found at 5110-5117: ` Edward`\n", + "(0, 14, 14)\n", + "detect_scores time: 1.095763921737671\n", + "detect_scores: Alaska is a state within the United States of Ame\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009710073471069336\n", + "detect_scores: Kansas City, often referred to as KC or Greater K\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006553173065185547\n", + "detect_scores: Brett Gardner played as a center fielder and righ\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0265657901763916\n", + "detect_scores: San Diego County is located in the southern regio\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3127-3132: ` sure`\n", + "Group 2 found at 3132-3137: ` sure`\n", + "Group 3 found at 3132-3137: ` sure`\n", + "\n", + "Group 1 found at 7404-7411: `thesis `\n", + "Group 2 found at 7411-7418: `thesis `\n", + "Group 3 found at 7411-7418: `thesis `\n", + "\n", + "Group 1 found at 9801-9808: ` sensor`\n", + "Group 2 found at 9808-9815: ` sensor`\n", + "Group 3 found at 9808-9815: ` sensor`\n", + "\n", + "Group 1 found at 10583-10596: `s equivalence`\n", + "Group 2 found at 10596-10610: `s equivalence `\n", + "Group 3 found at 10596-10609: `s equivalence`\n", + "(0, 65, 65)\n", + "detect_scores time: 2.0102710723876953\n", + "detect_scores: As of my last update in April 2023, Tua Tagovailo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005815029144287109\n", + "detect_scores: Adolf Hitler committed suicide on April 30, 1945.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005811929702758789\n", + "detect_scores: In Germany, the primary language spoken is German\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003412008285522461\n", + "detect_scores: The Denver Broncos' most recent Super Bowl win wa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009369850158691406\n", + "detect_scores: Bessie Smith, known as the \"Empress of the Blues,\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011038780212402344\n", + "detect_scores: As of my last update, Chicago operates on Eastern\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007698774337768555\n", + "detect_scores: The Vice President serving alongside Ronald Reaga\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002062082290649414\n", + "detect_scores: The Chicago White Sox primarily play their home g\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03197002410888672\n", + "detect_scores: When traveling to Barbados, the local currency is\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009314775466918945\n", + "detect_scores: Tennessee Williams attended the University of Mis\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006833791732788086\n", + "detect_scores: The primary international and major commercial pa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002880096435546875\n", + "detect_scores: Queen Victoria's husband was Prince Albert of Sax\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008274078369140625\n", + "detect_scores: Barbara Bush was the wife of George H. W. Bush, w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011352062225341797\n", + "detect_scores: Scottie Pippen, a former professional basketball \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5244-5252: `ed admir`\n", + "Group 2 found at 5252-5260: `ed admir`\n", + "Group 3 found at 5252-5260: `ed admir`\n", + "(0, 16, 16)\n", + "detect_scores time: 2.0117082595825195\n", + "detect_scores: The Dallas Cowboys' most recent Super Bowl win oc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006990194320678711\n", + "detect_scores: Ireland, as a national team in the sport of Rugby\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009202957153320312\n", + "detect_scores: Lee Harvey Oswald was the accused assassin of Pre\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4088-4095: `ly sure`\n", + "Group 2 found at 4095-4103: `ly sure `\n", + "Group 3 found at 4095-4102: `ly sure`\n", + "\n", + "Group 1 found at 4497-4507: `ybody ever`\n", + "Group 2 found at 4507-4517: `ybody ever`\n", + "Group 3 found at 4507-4517: `ybody ever`\n", + "\n", + "Group 1 found at 5548-5558: `rupted dis`\n", + "Group 2 found at 5558-5568: `rupted dis`\n", + "Group 3 found at 5558-5568: `rupted dis`\n", + "\n", + "Group 1 found at 8027-8035: ` measure`\n", + "Group 2 found at 8035-8043: ` measure`\n", + "Group 3 found at 8035-8043: ` measure`\n", + "\n", + "Group 1 found at 8501-8506: `link `\n", + "Group 2 found at 8506-8511: `link `\n", + "Group 3 found at 8506-8511: `link `\n", + "\n", + "Group 1 found at 9718-9723: `sound`\n", + "Group 2 found at 9724-9729: `sound`\n", + "Group 3 found at 9724-9729: `sound`\n", + "\n", + "Group 1 found at 10195-10202: `ts floa`\n", + "Group 2 found at 10202-10209: `ts floa`\n", + "Group 3 found at 10202-10209: `ts floa`\n", + "\n", + "Group 1 found at 10299-10304: `s log`\n", + "Group 2 found at 10304-10309: `s log`\n", + "Group 3 found at 10304-10309: `s log`\n", + "\n", + "Group 1 found at 10634-10639: `book `\n", + "Group 2 found at 10639-10644: `book `\n", + "Group 3 found at 10639-10644: `book `\n", + "(0, 126, 126)\n", + "detect_scores time: 1.7792580127716064\n", + "detect_scores: The New York Knickerbockers, commonly known as th\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008331060409545898\n", + "detect_scores: The Boston Celtics won their most recent NBA Cham\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02713489532470703\n", + "detect_scores: Oceania is a geographic region that includes Aust\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 127\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4012-4020: ` Scanner`\n", + "Group 2 found at 4020-4028: ` Scanner`\n", + "Group 3 found at 4020-4028: ` Scanner`\n", + "\n", + "Group 1 found at 4708-4719: `Certificate`\n", + "Group 2 found at 4720-4731: `Certificate`\n", + "Group 3 found at 4720-4731: `Certificate`\n", + "\n", + "Group 1 found at 5323-5331: ` Package`\n", + "Group 2 found at 5331-5339: ` Package`\n", + "Group 3 found at 5331-5339: ` Package`\n", + "\n", + "Group 1 found at 9330-9335: ` clip`\n", + "Group 2 found at 9335-9340: ` clip`\n", + "Group 3 found at 9335-9340: ` clip`\n", + "(127, 65, 192)\n", + "detect_scores time: 1.4543302059173584\n", + "detect_scores: Nicki Minaj hails from Trinidad and Tobago. She w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0026900768280029297\n", + "detect_scores: Nawaz Sharif served as the Prime Minister of Paki\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014863967895507812\n", + "detect_scores: The capital city of Morocco is Rabat. It's import\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006803989410400391\n", + "detect_scores: Nancy Pelosi represents California's 12th congres\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005444049835205078\n", + "detect_scores: George H.W. Bush attended Yale University for his\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2186-2197: `existing co`\n", + "Group 2 found at 2197-2208: `existing co`\n", + "Group 3 found at 2197-2208: `existing co`\n", + "\n", + "Group 1 found at 3215-3220: `able `\n", + "Group 2 found at 3220-3225: `able `\n", + "Group 3 found at 3220-3225: `able `\n", + "\n", + "Group 1 found at 4870-4878: `ability `\n", + "Group 2 found at 4878-4886: `ability `\n", + "Group 3 found at 4878-4886: `ability `\n", + "\n", + "Group 1 found at 5042-5047: `i kam`\n", + "Group 2 found at 5047-5052: `i kam`\n", + "Group 3 found at 5047-5052: `i kam`\n", + "\n", + "Group 1 found at 5113-5120: `bishop `\n", + "Group 2 found at 5120-5127: `bishop `\n", + "Group 3 found at 5120-5127: `bishop `\n", + "\n", + "Group 1 found at 5169-5176: ` prince`\n", + "Group 2 found at 5176-5183: ` prince`\n", + "Group 3 found at 5176-5183: ` prince`\n", + "\n", + "Group 1 found at 5753-5758: ` fine`\n", + "Group 2 found at 5758-5763: ` fine`\n", + "Group 3 found at 5758-5763: ` fine`\n", + "\n", + "Group 1 found at 8797-8803: `colon `\n", + "Group 2 found at 8803-8809: `colon `\n", + "Group 3 found at 8803-8809: `colon `\n", + "\n", + "Group 1 found at 9056-9066: ` continent`\n", + "Group 2 found at 9066-9076: ` continent`\n", + "Group 3 found at 9066-9076: ` continent`\n", + "\n", + "Group 1 found at 9585-9590: `bolts`\n", + "Group 2 found at 9590-9595: `bolts`\n", + "Group 3 found at 9590-9595: `bolts`\n", + "\n", + "Group 1 found at 10523-10535: `bjectivitysu`\n", + "Group 2 found at 10535-10547: `bjectivitysu`\n", + "Group 3 found at 10535-10547: `bjectivitysu`\n", + "\n", + "Group 1 found at 10633-10644: `dimensional`\n", + "Group 2 found at 10644-10655: `dimensional`\n", + "Group 3 found at 10644-10655: `dimensional`\n", + "(0, 184, 184)\n", + "detect_scores time: 1.8272020816802979\n", + "detect_scores: For a great time outdoors and entertainment optio\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6665-6679: `s Encyclopedia`\n", + "Group 2 found at 6679-6694: `s Encyclopedia `\n", + "Group 3 found at 6679-6693: `s Encyclopedia`\n", + "(5, 29, 34)\n", + "detect_scores time: 1.3273611068725586\n", + "detect_scores: Kim Kardashian is a well-known American personali\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008077144622802734\n", + "detect_scores: Justin Bieber is originally from Stratford, Ontar\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00026679039001464844\n", + "detect_scores: Nicolas Cage portrays Charlie Brown, also known a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009682178497314453\n", + "detect_scores: R. Kelly attended Benjamin Elijah Mays High Schoo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0003268718719482422\n", + "detect_scores: The events that took place in Benghazi refer to t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10458-10467: `terior ex`\n", + "Group 2 found at 10467-10476: `terior ex`\n", + "Group 3 found at 10467-10476: `terior ex`\n", + "\n", + "Group 1 found at 11086-11093: ` record`\n", + "Group 2 found at 11093-11100: ` record`\n", + "Group 3 found at 11093-11100: ` record`\n", + "(0, 32, 32)\n", + "detect_scores time: 2.0697858333587646\n", + "detect_scores: Nike, Inc. was founded and incorporated on May 30\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013759136199951172\n", + "detect_scores: When traveling to Mexico, it's important to carry\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3158-3167: `orderless`\n", + "Group 2 found at 3168-3177: `orderless`\n", + "Group 3 found at 3168-3177: `orderless`\n", + "\n", + "Group 1 found at 9398-9404: `agree `\n", + "Group 2 found at 9404-9410: `agree `\n", + "Group 3 found at 9404-9410: `agree `\n", + "(5, 31, 36)\n", + "detect_scores time: 1.9600741863250732\n", + "detect_scores: Angelina Jolie is an acclaimed American actress, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.98471999168396\n", + "detect_scores: William Shatner portrayed Captain Kirk in the ori\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01245427131652832\n", + "detect_scores: Dana Scully, a character from the television seri\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0035097599029541016\n", + "detect_scores: F. Scott Fitzgerald was an American novelist, ess\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.2676281929016113\n", + "detect_scores: The predominant and official languages of Jamaica\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031309127807617188\n", + "detect_scores: As of my last update in April 2023, the head coac\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028657913208007812\n", + "detect_scores: As a public figure and the current Oakland Mayor,\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006824016571044922\n", + "detect_scores: England, being a part of the United Kingdom (UK),\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011753082275390625\n", + "detect_scores: Mali, officially known as the Republic of Mali si\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7330-7338: `ing bear`\n", + "Group 2 found at 7338-7346: `ing bear`\n", + "Group 3 found at 7338-7346: `ing bear`\n", + "(0, 16, 16)\n", + "detect_scores time: 2.0683529376983643\n", + "detect_scores: In the year 2010, Cristiano Ronaldo played primar\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008233070373535156\n", + "detect_scores: Jacksonville, Florida operates in the Eastern Tim\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016829967498779297\n", + "detect_scores: King Henry VII had two legitimate surviving child\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2990-2998: ` present`\n", + "Group 2 found at 2998-3006: ` present`\n", + "Group 3 found at 2998-3006: ` present`\n", + "\n", + "Group 1 found at 10159-10164: `fish `\n", + "Group 2 found at 10164-10169: `fish `\n", + "Group 3 found at 10164-10169: `fish `\n", + "(0, 26, 26)\n", + "detect_scores time: 2.027949810028076\n", + "detect_scores: Kurt Russell portrayed the character Denver Dolla\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009829998016357422\n", + "detect_scores: The Cleveland Cavaliers, as of my last update in \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005160808563232422\n", + "detect_scores: Anne Frank was a young Jewish girl who is best kn\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01985907554626465\n", + "detect_scores: The official currency of Italy is the Euro (€). I\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028662681579589844\n", + "detect_scores: The official currency used in Italy is called the\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019528865814208984\n", + "detect_scores: Audrey Hepburn was born in Ixelles, which at the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009102106094360352\n", + "detect_scores: Douglas MacArthur, the prominent American five-st\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5101-5109: `ity grav`\n", + "Group 2 found at 5109-5117: `ity grav`\n", + "Group 3 found at 5109-5117: `ity grav`\n", + "\n", + "Group 1 found at 5292-5298: `se cau`\n", + "Group 2 found at 5298-5304: `se cau`\n", + "Group 3 found at 5298-5304: `se cau`\n", + "\n", + "Group 1 found at 5766-5773: `similar`\n", + "Group 2 found at 5774-5781: `similar`\n", + "Group 3 found at 5774-5781: `similar`\n", + "\n", + "Group 1 found at 6210-6218: `relation`\n", + "Group 2 found at 6219-6227: `relation`\n", + "Group 3 found at 6219-6227: `relation`\n", + "\n", + "Group 1 found at 6685-6691: `s cave`\n", + "Group 2 found at 6691-6697: `s cave`\n", + "Group 3 found at 6691-6697: `s cave`\n", + "\n", + "Group 1 found at 8131-8138: `tion ac`\n", + "Group 2 found at 8138-8145: `tion ac`\n", + "Group 3 found at 8138-8145: `tion ac`\n", + "\n", + "Group 1 found at 8830-8838: ` entitle`\n", + "Group 2 found at 8838-8846: ` entitle`\n", + "Group 3 found at 8838-8846: ` entitle`\n", + "\n", + "Group 1 found at 9877-9882: `room `\n", + "Group 2 found at 9882-9887: `room `\n", + "Group 3 found at 9882-9887: `room `\n", + "(0, 112, 112)\n", + "detect_scores time: 2.265887975692749\n", + "detect_scores: The official currency used in China is called Ren\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015101432800292969\n", + "detect_scores: As of my last update in early 2023, Lamar Odom wa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0042400360107421875\n", + "detect_scores: The Great Pyramid of Giza, also known as the Pyra\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04726386070251465\n", + "detect_scores: Australians predominantly speak English, which is\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004374980926513672\n", + "detect_scores: King Tutankhamun's tomb, also known as the Boy Ki\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00251007080078125\n", + "detect_scores: Abraham, a key figure in the religious traditions\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7075-7080: `t uni`\n", + "Group 2 found at 7080-7085: `t uni`\n", + "Group 3 found at 7080-7085: `t uni`\n", + "\n", + "Group 1 found at 7152-7158: `meter `\n", + "Group 2 found at 7158-7164: `meter `\n", + "Group 3 found at 7158-7164: `meter `\n", + "\n", + "Group 1 found at 7174-7179: `gram `\n", + "Group 2 found at 7179-7184: `gram `\n", + "Group 3 found at 7179-7184: `gram `\n", + "\n", + "Group 1 found at 9171-9176: `lease`\n", + "Group 2 found at 9176-9181: `lease`\n", + "Group 3 found at 9176-9181: `lease`\n", + "(0, 42, 42)\n", + "detect_scores time: 1.5091228485107422\n", + "detect_scores: George Washington Carver attended Simpson College\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6127-6137: `ly evident`\n", + "Group 2 found at 6137-6148: `ly evident `\n", + "Group 3 found at 6137-6147: `ly evident`\n", + "\n", + "Group 1 found at 8365-8373: ` entitle`\n", + "Group 2 found at 8373-8381: ` entitle`\n", + "Group 3 found at 8373-8381: ` entitle`\n", + "(0, 37, 37)\n", + "detect_scores time: 1.9226200580596924\n", + "detect_scores: Spain is known for its rich sporting culture and \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3930-3937: `length `\n", + "Group 2 found at 3937-3944: `length `\n", + "Group 3 found at 3937-3944: `length `\n", + "\n", + "Group 1 found at 7301-7314: `ometer electr`\n", + "Group 2 found at 7314-7327: `ometer electr`\n", + "Group 3 found at 7314-7327: `ometer electr`\n", + "\n", + "Group 1 found at 8361-8366: ` safe`\n", + "Group 2 found at 8366-8371: ` safe`\n", + "Group 3 found at 8366-8371: ` safe`\n", + "\n", + "Group 1 found at 9216-9223: `fields `\n", + "Group 2 found at 9223-9230: `fields `\n", + "Group 3 found at 9223-9230: `fields `\n", + "(0, 64, 64)\n", + "detect_scores time: 1.8612630367279053\n", + "detect_scores: Barack Obama, the 44th President of the United St\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.032350778579711914\n", + "detect_scores: In Poland, a variety of popular and traditional s\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4711-4718: ` marine`\n", + "Group 2 found at 4718-4725: ` marine`\n", + "Group 3 found at 4718-4725: ` marine`\n", + "\n", + "Group 1 found at 5039-5051: ` philosopher`\n", + "Group 2 found at 5051-5063: ` philosopher`\n", + "Group 3 found at 5051-5063: ` philosopher`\n", + "\n", + "Group 1 found at 5064-5073: ` logician`\n", + "Group 2 found at 5073-5082: ` logician`\n", + "Group 3 found at 5073-5082: ` logician`\n", + "\n", + "Group 1 found at 8932-8939: `letter `\n", + "Group 2 found at 8939-8946: `letter `\n", + "Group 3 found at 8939-8946: `letter `\n", + "(5, 70, 75)\n", + "detect_scores time: 1.5281498432159424\n", + "detect_scores: I'm sorry, but your question about Demi Lovato is\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003062009811401367\n", + "detect_scores: Scarlett Johansson is a versatile actress with nu\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9025-9033: ` control`\n", + "Group 2 found at 9033-9041: ` control`\n", + "Group 3 found at 9033-9041: ` control`\n", + "\n", + "Group 1 found at 9091-9096: ` ipod`\n", + "Group 2 found at 9096-9102: ` ipod `\n", + "Group 3 found at 9096-9101: ` ipod`\n", + "\n", + "Group 1 found at 9401-9407: ` cover`\n", + "Group 2 found at 9407-9413: ` cover`\n", + "Group 3 found at 9407-9413: ` cover`\n", + "(0, 39, 39)\n", + "detect_scores time: 2.0387723445892334\n", + "detect_scores: Amy Squires is a character from the movie \"Bad Te\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004981040954589844\n", + "detect_scores: Boeing Corporation, one of the largest aerospace \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006632328033447266\n", + "detect_scores: Viggo Mortenson played the character Aragorn, als\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008057832717895508\n", + "detect_scores: Sir Isaac Newton, born on January 4th (December 2\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3695-3700: ` wait`\n", + "Group 2 found at 3700-3705: ` wait`\n", + "Group 3 found at 3700-3705: ` wait`\n", + "\n", + "Group 1 found at 5944-5951: `meters `\n", + "Group 2 found at 5951-5958: `meters `\n", + "Group 3 found at 5951-5958: `meters `\n", + "\n", + "Group 1 found at 6188-6194: `meter `\n", + "Group 2 found at 6194-6200: `meter `\n", + "Group 3 found at 6194-6200: `meter `\n", + "\n", + "Group 1 found at 6242-6247: ` ohms`\n", + "Group 2 found at 6247-6252: ` ohms`\n", + "Group 3 found at 6247-6252: ` ohms`\n", + "\n", + "Group 1 found at 8992-8999: ` clergy`\n", + "Group 2 found at 8999-9006: ` clergy`\n", + "Group 3 found at 8999-9006: ` clergy`\n", + "\n", + "Group 1 found at 10353-10363: `dependent `\n", + "Group 2 found at 10363-10373: `dependent `\n", + "Group 3 found at 10363-10373: `dependent `\n", + "\n", + "Group 1 found at 10412-10422: `certainty `\n", + "Group 2 found at 10422-10432: `certainty `\n", + "Group 3 found at 10422-10432: `certainty `\n", + "(0, 100, 100)\n", + "detect_scores time: 2.0408389568328857\n", + "detect_scores: William Shakespeare got married to Anne Hathaway.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0031709671020507812\n", + "detect_scores: Michelle Obama, born Flavia Crépin and later know\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01364278793334961\n", + "detect_scores: Franz Liszt was a 19th-century Hungarian composer\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7301-7311: ` signature`\n", + "Group 2 found at 7311-7321: ` signature`\n", + "Group 3 found at 7311-7321: ` signature`\n", + "\n", + "Group 1 found at 8803-8816: `imates approx`\n", + "Group 2 found at 8816-8829: `imates approx`\n", + "Group 3 found at 8816-8829: `imates approx`\n", + "\n", + "Group 1 found at 10348-10358: `dependent `\n", + "Group 2 found at 10358-10368: `dependent `\n", + "Group 3 found at 10358-10368: `dependent `\n", + "\n", + "Group 1 found at 11008-11017: `finite in`\n", + "Group 2 found at 11017-11026: `finite in`\n", + "Group 3 found at 11017-11026: `finite in`\n", + "\n", + "Group 1 found at 11622-11631: `s program`\n", + "Group 2 found at 11631-11640: `s program`\n", + "Group 3 found at 11631-11640: `s program`\n", + "\n", + "Group 1 found at 11680-11690: ` remainder`\n", + "Group 2 found at 11690-11700: ` remainder`\n", + "Group 3 found at 11690-11700: ` remainder`\n", + "\n", + "Group 1 found at 11860-11868: `ons reas`\n", + "Group 2 found at 11868-11876: `ons reas`\n", + "Group 3 found at 11868-11876: `ons reas`\n", + "\n", + "Group 1 found at 11950-11959: `s routine`\n", + "Group 2 found at 11959-11969: `s routine `\n", + "Group 3 found at 11959-11968: `s routine`\n", + "(0, 157, 157)\n", + "detect_scores time: 2.3823699951171875\n", + "detect_scores: David Luíz currently plays soccer (football) in t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022149085998535156\n", + "detect_scores: Victoria, British Columbia can be found on the so\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012866020202636719\n", + "detect_scores: The official currency of France is called the Eur\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02279806137084961\n", + "detect_scores: David Beckham played for the Los Angeles Galaxy d\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03900265693664551\n", + "detect_scores: WNYC, which stands for New York Public Radio (for\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006918907165527344\n", + "detect_scores: John Jay, an important figure in American history\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021228790283203125\n", + "detect_scores: Mount Fuji, also known as Fujisan in Japanese, is\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8382-8388: `metre `\n", + "Group 2 found at 8388-8394: `metre `\n", + "Group 3 found at 8388-8394: `metre `\n", + "\n", + "Group 1 found at 8429-8434: `gram `\n", + "Group 2 found at 8434-8439: `gram `\n", + "Group 3 found at 8434-8439: `gram `\n", + "\n", + "Group 1 found at 9367-9374: `es phas`\n", + "Group 2 found at 9374-9381: `es phas`\n", + "Group 3 found at 9374-9381: `es phas`\n", + "\n", + "Group 1 found at 10837-10842: `code `\n", + "Group 2 found at 10842-10847: `code `\n", + "Group 3 found at 10842-10847: `code `\n", + "(0, 46, 46)\n", + "detect_scores time: 2.10073184967041\n", + "detect_scores: Toussaint L’Ouverture, the leader of Haiti during\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009560108184814453\n", + "detect_scores: The United Kingdom (UK) is made up of four consti\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "(5, 0, 5)\n", + "detect_scores time: 0.038255929946899414\n", + "detect_scores: The answer to your query, according to Wikipedia \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005568981170654297\n", + "detect_scores: Before France adopted the Euro as its official cu\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012521982192993164\n", + "detect_scores: The official motto of Kentucky, which also serves\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002830982208251953\n", + "detect_scores: Samantha Stephenson is not a widely recognized ch\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011530160903930664\n", + "detect_scores: Sir Isaac Newton studied physics and mathematics.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010453939437866211\n", + "detect_scores: San Diego County is located on the southern borde\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016175270080566406\n", + "detect_scores: Canada, which lies to the North of Mexico and bor\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016978979110717773\n", + "detect_scores: Santa Claus, also known as Saint Nicholas or Kris\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014642000198364258\n", + "detect_scores: Coretta Scott King, the wife of civil rights lead\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002104043960571289\n", + "detect_scores: Adolf Hitler was raised in a Roman Catholic famil\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005098104476928711\n", + "detect_scores: The Illinois River can be found in central United\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4566-4572: `ound s`\n", + "Group 2 found at 4572-4578: `ound s`\n", + "Group 3 found at 4572-4578: `ound s`\n", + "\n", + "Group 1 found at 7463-7472: `s formula`\n", + "Group 2 found at 7472-7481: `s formula`\n", + "Group 3 found at 7472-7481: `s formula`\n", + "(0, 30, 30)\n", + "detect_scores time: 1.9373350143432617\n", + "detect_scores: Honduras is a country located in Central America,\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1412-1417: `e els`\n", + "Group 2 found at 1417-1422: `e els`\n", + "Group 3 found at 1417-1422: `e els`\n", + "\n", + "Group 1 found at 3001-3009: ` present`\n", + "Group 2 found at 3009-3017: ` present`\n", + "Group 3 found at 3009-3017: ` present`\n", + "\n", + "Group 1 found at 8385-8394: `tor credi`\n", + "Group 2 found at 8394-8403: `tor credi`\n", + "Group 3 found at 8394-8403: `tor credi`\n", + "\n", + "Group 1 found at 10342-10354: ` instruction`\n", + "Group 2 found at 10354-10366: ` instruction`\n", + "Group 3 found at 10354-10366: ` instruction`\n", + "\n", + "Group 1 found at 11275-11281: `ts uni`\n", + "Group 2 found at 11281-11287: `ts uni`\n", + "Group 3 found at 11281-11287: `ts uni`\n", + "\n", + "Group 1 found at 11364-11376: `s opposition`\n", + "Group 2 found at 11376-11389: `s opposition `\n", + "Group 3 found at 11376-11388: `s opposition`\n", + "(0, 105, 105)\n", + "detect_scores time: 1.8360657691955566\n", + "detect_scores: As of my last update in April 2023, Ronaldho was \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004119157791137695\n", + "detect_scores: Galileo Galilei, an Italian astronomer and physic\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 13\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6468-6479: `imeter mill`\n", + "Group 2 found at 6479-6490: `imeter mill`\n", + "Group 3 found at 6479-6490: `imeter mill`\n", + "\n", + "Group 1 found at 6612-6619: ` league`\n", + "Group 2 found at 6619-6626: ` league`\n", + "Group 3 found at 6619-6626: ` league`\n", + "\n", + "Group 1 found at 6638-6645: `meters `\n", + "Group 2 found at 6645-6652: `meters `\n", + "Group 3 found at 6645-6652: `meters `\n", + "\n", + "Group 1 found at 7247-7253: `plane `\n", + "Group 2 found at 7253-7259: `plane `\n", + "Group 3 found at 7253-7259: `plane `\n", + "\n", + "Group 1 found at 7331-7336: `d sle`\n", + "Group 2 found at 7336-7341: `d sle`\n", + "Group 3 found at 7336-7341: `d sle`\n", + "\n", + "Group 1 found at 7601-7606: `melon`\n", + "Group 2 found at 7607-7612: `melon`\n", + "Group 3 found at 7607-7612: `melon`\n", + "\n", + "Group 1 found at 9356-9362: ` cloth`\n", + "Group 2 found at 9362-9368: ` cloth`\n", + "Group 3 found at 9362-9368: ` cloth`\n", + "\n", + "Group 1 found at 9495-9501: `s suit`\n", + "Group 2 found at 9501-9508: `s suit `\n", + "Group 3 found at 9501-9507: `s suit`\n", + "(13, 108, 121)\n", + "detect_scores time: 1.9358398914337158\n", + "detect_scores: Germany's largest and most significant trade rela\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4877-4883: `aware `\n", + "Group 2 found at 4883-4889: `aware `\n", + "Group 3 found at 4883-4889: `aware `\n", + "\n", + "Group 1 found at 8520-8530: `magnetism `\n", + "Group 2 found at 8530-8540: `magnetism `\n", + "Group 3 found at 8530-8540: `magnetism `\n", + "(0, 32, 32)\n", + "detect_scores time: 1.9763062000274658\n", + "detect_scores: Mitt Romney, the former Governor of Massachusetts\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011031150817871094\n", + "detect_scores: Sean Hinton attended the University of Michigan. \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004477977752685547\n", + "detect_scores: Central America consists primarily of 7 countries\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 7\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6602-6613: `ness single`\n", + "Group 2 found at 6613-6624: `ness single`\n", + "Group 3 found at 6613-6624: `ness single`\n", + "\n", + "Group 1 found at 9169-9177: ` channel`\n", + "Group 2 found at 9177-9185: ` channel`\n", + "Group 3 found at 9177-9185: ` channel`\n", + "\n", + "Group 1 found at 11201-11206: `book `\n", + "Group 2 found at 11206-11211: `book `\n", + "Group 3 found at 11206-11211: `book `\n", + "(7, 48, 55)\n", + "detect_scores time: 2.148698329925537\n", + "detect_scores: I'm sorry, but there seems to be some confusion. \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018507003784179688\n", + "detect_scores: The Amazon Rainforest, also known as Amazonia or \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.029955148696899414\n", + "detect_scores: Claude Monet was a French painter and one of the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006582975387573242\n", + "detect_scores: Kurt Cobain, the lead vocalist and primary songwr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003075122833251953\n", + "detect_scores: Jennifer Lawrence played the character of \"Rebecc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03371787071228027\n", + "detect_scores: The Governor of Virginia in 2011 was Bob McDonnel\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0036220550537109375\n", + "detect_scores: Jackie Kennedy, born Jacqueline Lee Bouvier and t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008656978607177734\n", + "detect_scores: Lauren Conrad Major graduated from the Fashion In\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0330812931060791\n", + "detect_scores: Pennsylvania's current standard time would depend\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016670942306518555\n", + "detect_scores: Mario López is a Mexican actor, singer and model.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011483907699584961\n", + "detect_scores: Sarah Dessen's novels have been adapted into seve\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8667-8673: ` equal`\n", + "Group 2 found at 8673-8679: ` equal`\n", + "Group 3 found at 8673-8679: ` equal`\n", + "\n", + "Group 1 found at 10030-10038: `relation`\n", + "Group 2 found at 10039-10047: `relation`\n", + "Group 3 found at 10039-10047: `relation`\n", + "(0, 29, 29)\n", + "detect_scores time: 2.279287099838257\n", + "detect_scores: As an AI, I can't provide real-time data. However\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013104915618896484\n", + "detect_scores: Farrah Fawcett, the American actress and model kn\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018210411071777344\n", + "detect_scores: John Steinbeck, the acclaimed American author and\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6503-6515: `tions estima`\n", + "Group 2 found at 6515-6527: `tions estima`\n", + "Group 3 found at 6515-6527: `tions estima`\n", + "\n", + "Group 1 found at 8692-8704: `e certificat`\n", + "Group 2 found at 8704-8716: `e certificat`\n", + "Group 3 found at 8704-8716: `e certificat`\n", + "(0, 48, 48)\n", + "detect_scores time: 1.9288790225982666\n", + "detect_scores: As of my knowledge cutoff in 2023, Cuba operates \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0070552825927734375\n", + "detect_scores: The current capital of Italy, as it has been sinc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001837015151977539\n", + "detect_scores: In The Bahamas, English is predominantly spoken a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029649734497070312\n", + "detect_scores: George Michael, the famous pop singer and musicia\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011376142501831055\n", + "detect_scores: In the year 2010, Cristiano Ronaldo played as a f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016665220260620117\n", + "detect_scores: The Bahamas operates on Atlantic Standard Time (A\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01250004768371582\n", + "detect_scores: In Brazil, the primary and official language spok\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018258094787597656\n", + "detect_scores: Samuel Taylor Coleridge was significantly influen\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 11\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4261-4273: `osphere trop`\n", + "Group 2 found at 4273-4285: `osphere trop`\n", + "Group 3 found at 4273-4285: `osphere trop`\n", + "\n", + "Group 1 found at 9871-9878: ` virtue`\n", + "Group 2 found at 9878-9885: ` virtue`\n", + "Group 3 found at 9878-9885: ` virtue`\n", + "\n", + "Group 1 found at 10101-10112: `e preferenc`\n", + "Group 2 found at 10112-10123: `e preferenc`\n", + "Group 3 found at 10112-10123: `e preferenc`\n", + "(11, 60, 71)\n", + "detect_scores time: 1.7897241115570068\n", + "detect_scores: Kim Kardashian is best known for her career in me\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.019992828369140625\n", + "detect_scores: The Mississippi River does not technically \"end\" \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008720874786376953\n", + "detect_scores: As of my last update in April 2023, the President\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018010139465332031\n", + "detect_scores: Harley Quinn is a character from DC Comics, and s\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7827-7833: ` motto`\n", + "Group 2 found at 7833-7839: ` motto`\n", + "Group 3 found at 7833-7839: ` motto`\n", + "\n", + "Group 1 found at 7846-7853: `phrase `\n", + "Group 2 found at 7853-7860: `phrase `\n", + "Group 3 found at 7853-7860: `phrase `\n", + "\n", + "Group 1 found at 8360-8368: ` fortune`\n", + "Group 2 found at 8368-8376: ` fortune`\n", + "Group 3 found at 8368-8376: ` fortune`\n", + "\n", + "Group 1 found at 10040-10045: `clip `\n", + "Group 2 found at 10045-10050: `clip `\n", + "Group 3 found at 10045-10050: `clip `\n", + "\n", + "Group 1 found at 10529-10537: ` speaker`\n", + "Group 2 found at 10537-10545: ` speaker`\n", + "Group 3 found at 10537-10545: ` speaker`\n", + "(0, 68, 68)\n", + "detect_scores time: 1.8860232830047607\n", + "detect_scores: Ziva David began her tenure as an NCIS Special Ag\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005345821380615234\n", + "detect_scores: Canadian National Anthem\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 1.4781951904296875e-05\n", + "detect_scores: Mark Zuckerberg studied computer science and psyc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0038793087005615234\n", + "detect_scores: Michael Jackson, the famous pop singer known as \"\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014159679412841797\n", + "detect_scores: Stephen R. Covey was an American educator, author\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0404360294342041\n", + "detect_scores: Joseph Stalin, as a historical figure and leader \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008403301239013672\n", + "detect_scores: Monta Ellis's highest-achieving season in terms o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007083892822265625\n", + "detect_scores: Rihanna, whose full name is Robyn Rihanna Fenty, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002978801727294922\n", + "detect_scores: Joakim Noah attended the University of Florida, w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007189035415649414\n", + "detect_scores: The role of Billy Elliott in the original film \"B\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018391609191894531\n", + "detect_scores: Kourtney Kardashian has been in relationships wit\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030570030212402344\n", + "detect_scores: Australia operates under a federal parliamentary \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6017-6024: `s token`\n", + "Group 2 found at 6024-6031: `s token`\n", + "Group 3 found at 6024-6031: `s token`\n", + "\n", + "Group 1 found at 9163-9178: `ostatics electr`\n", + "Group 2 found at 9178-9193: `ostatics electr`\n", + "Group 3 found at 9178-9193: `ostatics electr`\n", + "\n", + "Group 1 found at 10800-10806: `start `\n", + "Group 2 found at 10806-10812: `start `\n", + "Group 3 found at 10806-10812: `start `\n", + "(0, 56, 56)\n", + "detect_scores time: 2.1152288913726807\n", + "detect_scores: Howie Long played for several NFL teams throughou\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02466416358947754\n", + "detect_scores: Elizabethtown, Kentucky operates in the Eastern T\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00819706916809082\n", + "detect_scores: Chris Paul, the professional basketball player kn\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5110-5121: `variance co`\n", + "Group 2 found at 5121-5132: `variance co`\n", + "Group 3 found at 5121-5132: `variance co`\n", + "\n", + "Group 1 found at 6235-6241: `colon `\n", + "Group 2 found at 6241-6247: `colon `\n", + "Group 3 found at 6241-6247: `colon `\n", + "\n", + "Group 1 found at 6399-6406: ` screen`\n", + "Group 2 found at 6406-6413: ` screen`\n", + "Group 3 found at 6406-6413: ` screen`\n", + "\n", + "Group 1 found at 7765-7770: `list `\n", + "Group 2 found at 7770-7775: `list `\n", + "Group 3 found at 7770-7775: `list `\n", + "\n", + "Group 1 found at 10839-10844: ` pipe`\n", + "Group 2 found at 10844-10849: ` pipe`\n", + "Group 3 found at 10844-10849: ` pipe`\n", + "\n", + "Group 1 found at 11306-11313: `parent `\n", + "Group 2 found at 11313-11320: `parent `\n", + "Group 3 found at 11313-11320: `parent `\n", + "\n", + "Group 1 found at 11369-11377: `body any`\n", + "Group 2 found at 11377-11385: `body any`\n", + "Group 3 found at 11377-11385: `body any`\n", + "\n", + "Group 1 found at 11491-11496: ` soon`\n", + "Group 2 found at 11496-11501: ` soon`\n", + "Group 3 found at 11496-11501: ` soon`\n", + "\n", + "Group 1 found at 11707-11716: `nce comme`\n", + "Group 2 found at 11716-11725: `nce comme`\n", + "Group 3 found at 11716-11725: `nce comme`\n", + "(0, 126, 126)\n", + "detect_scores time: 1.9335100650787354\n", + "detect_scores: The New York Giants, a professional American foot\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002038717269897461\n", + "detect_scores: Sir Isaac Newton, primarily known for his groundb\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 18\n", + "----detect text repetitions----\n", + "(18, 0, 18)\n", + "detect_scores time: 0.0737142562866211\n", + "detect_scores: Shaquille O'Neal, known as \"Shaq,\" was drafted by\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004169940948486328\n", + "detect_scores: The original Mickey Mouse character, created by W\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011679887771606445\n", + "detect_scores: Michael Vick was a professional American football\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008157014846801758\n", + "detect_scores: The Columbia River starts in the Rocky Mountains \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6539-6549: ` implement`\n", + "Group 2 found at 6549-6559: ` implement`\n", + "Group 3 found at 6549-6559: ` implement`\n", + "\n", + "Group 1 found at 10520-10530: `agreement `\n", + "Group 2 found at 10530-10540: `agreement `\n", + "Group 3 found at 10530-10540: `agreement `\n", + "\n", + "Group 1 found at 10542-10551: `solution `\n", + "Group 2 found at 10551-10560: `solution `\n", + "Group 3 found at 10551-10560: `solution `\n", + "(0, 58, 58)\n", + "detect_scores time: 1.8515300750732422\n", + "detect_scores: The Harry Potter series, written by J.K. Rowling,\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9512-9523: `conference `\n", + "Group 2 found at 9523-9534: `conference `\n", + "Group 3 found at 9523-9534: `conference `\n", + "(0, 22, 22)\n", + "detect_scores time: 1.5882911682128906\n", + "detect_scores: In Barbados, the official and legal tender is kno\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008780956268310547\n", + "detect_scores: Angelina Jolie, born Angela Evangeline Assad on J\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009782075881958008\n", + "detect_scores: Ninevah City does not exist as a recognized locat\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01730203628540039\n", + "detect_scores: Eowyn is a character from J.R.R. Tolkien's Middle\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014696836471557617\n", + "detect_scores: Eva Perón, also known as Evita and the First Lady\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006157875061035156\n", + "detect_scores: The Baltimore Ravens won the Super Bowl in 2013. \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004667997360229492\n", + "detect_scores: Ohio is often regarded as a Midwestern state in t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6943-6951: `parents `\n", + "Group 2 found at 6951-6959: `parents `\n", + "Group 3 found at 6951-6959: `parents `\n", + "\n", + "Group 1 found at 8758-8767: `s formula`\n", + "Group 2 found at 8767-8777: `s formula `\n", + "Group 3 found at 8767-8776: `s formula`\n", + "\n", + "Group 1 found at 9413-9420: `l seque`\n", + "Group 2 found at 9420-9427: `l seque`\n", + "Group 3 found at 9420-9427: `l seque`\n", + "\n", + "Group 1 found at 9550-9565: `ation authentic`\n", + "Group 2 found at 9565-9580: `ation authentic`\n", + "Group 3 found at 9565-9580: `ation authentic`\n", + "(0, 79, 79)\n", + "detect_scores time: 2.0791780948638916\n", + "detect_scores: Cristiano Ronaldo currently plays for the club Ma\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0046770572662353516\n", + "detect_scores: As of my last update in 2023, Michigan operates o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0039179325103759766\n", + "detect_scores: John Tyler served as the 10th President of the Un\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8115-8121: `about `\n", + "Group 2 found at 8121-8127: `about `\n", + "Group 3 found at 8121-8127: `about `\n", + "\n", + "Group 1 found at 10047-10054: `forever`\n", + "Group 2 found at 10061-10068: `forever`\n", + "Group 3 found at 10061-10068: `forever`\n", + "(0, 33, 33)\n", + "detect_scores time: 2.0840320587158203\n", + "detect_scores: In Jamaica, the official and legal tender used fo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013345956802368164\n", + "detect_scores: Jay Gould Jr., who was also known as \"Jungle Jim\"\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008701801300048828\n", + "detect_scores: I'm sorry, but there are no public records or rep\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023539066314697266\n", + "detect_scores: The Carolina Panthers made it to the Super Bowl f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0024480819702148438\n", + "detect_scores: As of my last update, there hasn't been a recent \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008108139038085938\n", + "detect_scores: Helen Flanagan is a former Irish television prese\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014837980270385742\n", + "detect_scores: The Tennessee River originates in the Appalachian\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00848698616027832\n", + "detect_scores: Corey Taylor, the lead vocalist of Slipknot and S\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005603790283203125\n", + "detect_scores: The President of the United States who served imm\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004137992858886719\n", + "detect_scores: Kate Gosselin, known for her reality television s\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010889291763305664\n", + "detect_scores: The United States Government operates under a fed\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008885860443115234\n", + "detect_scores: Mount Lassen, often referred to as simply \"Lassen\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015305280685424805\n", + "detect_scores: The State Motto of Ohio is \"With God, all things \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0034477710723876953\n", + "detect_scores: Wolfgang Amadeus Mozart, a prolific and influenti\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010052919387817383\n", + "detect_scores: The Kennedy Family, as commonly known due to its \n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 11\n", + "----detect text repetitions----\n", + "(11, 0, 11)\n", + "detect_scores time: 2.095649003982544\n", + "detect_scores: The Barcelona Airport that's nearest to Port of B\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01881694793701172\n", + "detect_scores: Adolf Hitler, the leader of Nazi Germany, initiat\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0013811588287353516\n", + "detect_scores: Canada is part of the North American continent. I\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003676176071166992\n", + "detect_scores: George Wilson is best known as the character from\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007809877395629883\n", + "detect_scores: Adolf Hitler, born on April 20th, 1889 in Braunau\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 7\n", + "----detect text repetitions----\n", + "(7, 0, 7)\n", + "detect_scores time: 0.08708691596984863\n", + "detect_scores: After the Iranian Revolution in 1979, Iran establ\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007990121841430664\n", + "detect_scores: Harper Lee attended Monroeville High School in Al\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002331256866455078\n", + "detect_scores: J.R.R. Tolkien attended Exeter College at the Uni\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033652782440185547\n", + "detect_scores: Wassily Kandinsky was a Russian painter and art t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013994932174682617\n", + "detect_scores: Antoni Gaudí, the renowned Catalan architect know\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0607609748840332\n", + "detect_scores: Paris offers an array of accommodation options to\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7427-7433: `watch `\n", + "Group 2 found at 7433-7439: `watch `\n", + "Group 3 found at 7433-7439: `watch `\n", + "\n", + "Group 1 found at 7544-7551: ` hammer`\n", + "Group 2 found at 7551-7558: ` hammer`\n", + "Group 3 found at 7551-7558: ` hammer`\n", + "\n", + "Group 1 found at 10152-10160: `rs scala`\n", + "Group 2 found at 10160-10168: `rs scala`\n", + "Group 3 found at 10160-10168: `rs scala`\n", + "\n", + "Group 1 found at 10280-10287: `meters `\n", + "Group 2 found at 10287-10294: `meters `\n", + "Group 3 found at 10287-10294: `meters `\n", + "(0, 56, 56)\n", + "detect_scores time: 2.009781837463379\n", + "detect_scores: Benjamin Franklin's first wife was Deborah Read. \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005152702331542969\n", + "detect_scores: The largest and most populous city in Spain is Ma\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0023250579833984375\n", + "detect_scores: Pudge Rodriguez is a former professional baseball\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004985809326171875\n", + "detect_scores: The Milwaukee Brewers' home ballpark, as of my la\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009374856948852539\n", + "detect_scores: The Gallipoli Campaign, also known as the Battle \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.025166988372802734\n", + "detect_scores: Shakira Isabel Mebarak Ripoll, born on February 2\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 428-433: `Waka `\n", + "Group 2 found at 433-438: `Waka `\n", + "Group 3 found at 433-438: `Waka `\n", + "(0, 10, 10)\n", + "detect_scores time: 0.00801706314086914\n", + "detect_scores: Ian Holm portrayed Bilbo Baggins, a central chara\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015537738800048828\n", + "detect_scores: The Tennessee River is a major waterway in the so\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016937255859375\n", + "detect_scores: Utah's State Capitol, located in Salt Lake City, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01807999610900879\n", + "detect_scores: Benjamin Franklin, one of the Founding Fathers of\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 11\n", + "----detect text repetitions----\n", + "(11, 0, 11)\n", + "detect_scores time: 1.8187627792358398\n", + "detect_scores: Jeremy Lin played for the Houston Rockets in the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006555318832397461\n", + "detect_scores: Steve Nash was Canadian by birth. He holds both A\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00061798095703125\n", + "detect_scores: As my knowledge is current only up to early 2023,\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004436969757080078\n", + "detect_scores: France primarily speaks French, which is a Romanc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05486583709716797\n", + "detect_scores: Martin Luther King Jr. earned a doctorate in syst\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001981019973754883\n", + "detect_scores: St. Louis, often referred to as Saint Louie or Th\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033669471740722656\n", + "detect_scores: Peyton Manning's father, John Henry \"Jack\" Mannin\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2320-2330: ` identical`\n", + "Group 2 found at 2330-2340: ` identical`\n", + "Group 3 found at 2330-2340: ` identical`\n", + "\n", + "Group 1 found at 2365-2371: ` equal`\n", + "Group 2 found at 2371-2377: ` equal`\n", + "Group 3 found at 2371-2377: ` equal`\n", + "\n", + "Group 1 found at 5116-5125: `s concept`\n", + "Group 2 found at 5125-5134: `s concept`\n", + "Group 3 found at 5125-5134: `s concept`\n", + "\n", + "Group 1 found at 5686-5691: `e hat`\n", + "Group 2 found at 5691-5696: `e hat`\n", + "Group 3 found at 5691-5696: `e hat`\n", + "\n", + "Group 1 found at 10187-10195: `ity grav`\n", + "Group 2 found at 10195-10203: `ity grav`\n", + "Group 3 found at 10195-10203: `ity grav`\n", + "\n", + "Group 1 found at 10225-10234: `magnetic `\n", + "Group 2 found at 10234-10243: `magnetic `\n", + "Group 3 found at 10234-10243: `magnetic `\n", + "(0, 94, 94)\n", + "detect_scores time: 2.228334903717041\n", + "detect_scores: The official currency used in Peru is called the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00013589859008789062\n", + "detect_scores: The United Kingdom is comprised of four constitue\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4481-4487: ` plain`\n", + "Group 2 found at 4487-4493: ` plain`\n", + "Group 3 found at 4487-4493: ` plain`\n", + "\n", + "Group 1 found at 7403-7409: `hills `\n", + "Group 2 found at 7409-7415: `hills `\n", + "Group 3 found at 7409-7415: `hills `\n", + "(0, 24, 24)\n", + "detect_scores time: 1.8076400756835938\n", + "detect_scores: Robert F. Kennedy attended several educational in\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03227710723876953\n", + "detect_scores: The Fukushima Daiichi Nuclear Power Station, also\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8132-8138: ` popup`\n", + "Group 2 found at 8138-8145: ` popup `\n", + "Group 3 found at 8138-8144: ` popup`\n", + "\n", + "Group 1 found at 8188-8196: `loading `\n", + "Group 2 found at 8196-8204: `loading `\n", + "Group 3 found at 8196-8204: `loading `\n", + "\n", + "Group 1 found at 8307-8314: `tion ac`\n", + "Group 2 found at 8314-8321: `tion ac`\n", + "Group 3 found at 8314-8321: `tion ac`\n", + "(0, 43, 43)\n", + "detect_scores time: 2.083488941192627\n", + "detect_scores: Los Angeles, California operates in the Pacific T\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005682945251464844\n", + "detect_scores: If you are planning a trip from the United States\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8858-8864: `laces `\n", + "Group 2 found at 8864-8870: `laces `\n", + "Group 3 found at 8864-8870: `laces `\n", + "\n", + "Group 1 found at 9640-9650: ` dimension`\n", + "Group 2 found at 9650-9660: ` dimension`\n", + "Group 3 found at 9650-9660: ` dimension`\n", + "\n", + "Group 1 found at 10610-10617: ` parsec`\n", + "Group 2 found at 10617-10624: ` parsec`\n", + "Group 3 found at 10617-10624: ` parsec`\n", + "\n", + "Group 1 found at 10744-10750: `e Tonn`\n", + "Group 2 found at 10750-10756: `e Tonn`\n", + "Group 3 found at 10750-10756: `e Tonn`\n", + "(0, 58, 58)\n", + "detect_scores time: 1.9657588005065918\n", + "detect_scores: As my knowledge was last updated in 2023, I canno\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002835988998413086\n", + "detect_scores: In Scotland, the primary language spoken is Engli\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021898746490478516\n", + "detect_scores: John Dalton was an English chemist, physicist and\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.019997119903564453\n", + "detect_scores: Glastonbury, England can be found in Somerset. It\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0027589797973632812\n", + "detect_scores: The American Federation of Labor (AFL) was founde\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.030778884887695312\n", + "detect_scores: Thomas Hobbes, the influential English philosophe\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8545-8551: ` orbit`\n", + "Group 2 found at 8551-8557: ` orbit`\n", + "Group 3 found at 8551-8557: ` orbit`\n", + "\n", + "Group 1 found at 8839-8846: `second `\n", + "Group 2 found at 8846-8853: `second `\n", + "Group 3 found at 8846-8853: `second `\n", + "\n", + "Group 1 found at 11423-11432: `er debugg`\n", + "Group 2 found at 11432-11441: `er debugg`\n", + "Group 3 found at 11432-11441: `er debugg`\n", + "(0, 44, 44)\n", + "detect_scores time: 2.226794958114624\n", + "detect_scores: John F. Kennedy, the 35th President of the United\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5122-5129: ` effect`\n", + "Group 2 found at 5129-5136: ` effect`\n", + "Group 3 found at 5129-5136: ` effect`\n", + "\n", + "Group 1 found at 7048-7056: `ability `\n", + "Group 2 found at 7056-7064: `ability `\n", + "Group 3 found at 7056-7064: `ability `\n", + "\n", + "Group 1 found at 8145-8150: `e rat`\n", + "Group 2 found at 8150-8155: `e rat`\n", + "Group 3 found at 8150-8155: `e rat`\n", + "\n", + "Group 1 found at 8231-8242: ` coordinate`\n", + "Group 2 found at 8242-8253: ` coordinate`\n", + "Group 3 found at 8242-8253: ` coordinate`\n", + "\n", + "Group 1 found at 9362-9368: ` loose`\n", + "Group 2 found at 9368-9374: ` loose`\n", + "Group 3 found at 9368-9374: ` loose`\n", + "\n", + "Group 1 found at 9545-9552: `e petit`\n", + "Group 2 found at 9552-9559: `e petit`\n", + "Group 3 found at 9552-9559: `e petit`\n", + "\n", + "Group 1 found at 9612-9621: `division `\n", + "Group 2 found at 9621-9630: `division `\n", + "Group 3 found at 9621-9630: `division `\n", + "\n", + "Group 1 found at 10948-10959: ` substitute`\n", + "Group 2 found at 10959-10971: ` substitute `\n", + "Group 3 found at 10959-10970: ` substitute`\n", + "(0, 129, 129)\n", + "detect_scores time: 1.7489619255065918\n", + "detect_scores: Montreal is a city in the Canadian province of Qu\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004148960113525391\n", + "detect_scores: Franz Liszt, the renowned 19th-century Hungarian \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06102776527404785\n", + "detect_scores: Argentina shares its borders with five South Amer\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0022950172424316406\n", + "detect_scores: The primary official language spoken by the major\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00593113899230957\n", + "detect_scores: The predominant religion in Israel is Judaism. Ap\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007325887680053711\n", + "detect_scores: As of my last update in April 2023, Rodney Harris\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011343717575073242\n", + "detect_scores: Toronto operates on Eastern Standard Time (EST) d\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018694162368774414\n", + "detect_scores: Robert Burns, also known as Rabbie Burns and the \n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8059-8064: `verb `\n", + "Group 2 found at 8064-8069: `verb `\n", + "Group 3 found at 8064-8069: `verb `\n", + "\n", + "Group 1 found at 9253-9261: `relation`\n", + "Group 2 found at 9262-9270: `relation`\n", + "Group 3 found at 9262-9270: `relation`\n", + "\n", + "Group 1 found at 9307-9313: ` route`\n", + "Group 2 found at 9313-9319: ` route`\n", + "Group 3 found at 9313-9319: ` route`\n", + "(5, 39, 44)\n", + "detect_scores time: 1.652655839920044\n", + "detect_scores: As of my last update in April 2023, the Utah Atto\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0020537376403808594\n", + "detect_scores: The Carolina Panthers are coached by Pat McAfee a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004762887954711914\n", + "detect_scores: South Africa shares its international land bounda\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.05024886131286621\n", + "detect_scores: Mark Hamill reprised his role as Darth Vader in \"\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.023250818252563477\n", + "detect_scores: The Kentucky State Bird is the Northern Cardinal.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006639957427978516\n", + "detect_scores: The Canadian Prime Minister in the year 1993 was \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037789344787597656\n", + "detect_scores: I cannot respond to questions on election-related\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00031495094299316406\n", + "detect_scores: The United Kingdom is a multilingual country with\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 7\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3883-3893: `tability s`\n", + "Group 2 found at 3893-3903: `tability s`\n", + "Group 3 found at 3893-3903: `tability s`\n", + "\n", + "Group 1 found at 8473-8479: `metre `\n", + "Group 2 found at 8479-8485: `metre `\n", + "Group 3 found at 8479-8485: `metre `\n", + "\n", + "Group 1 found at 8583-8589: ` arrow`\n", + "Group 2 found at 8589-8595: ` arrow`\n", + "Group 3 found at 8589-8595: ` arrow`\n", + "\n", + "Group 1 found at 10466-10474: `e entitl`\n", + "Group 2 found at 10474-10482: `e entitl`\n", + "Group 3 found at 10474-10482: `e entitl`\n", + "(7, 60, 67)\n", + "detect_scores time: 2.215837001800537\n", + "detect_scores: Pope John Paul II, born Karol Józef Wojtyła on Ma\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.023457050323486328\n", + "detect_scores: Franklin Pierce, who served as the 14th President\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9019-9025: `cycle `\n", + "Group 2 found at 9025-9031: `cycle `\n", + "Group 3 found at 9025-9031: `cycle `\n", + "\n", + "Group 1 found at 9487-9495: `ity grav`\n", + "Group 2 found at 9495-9503: `ity grav`\n", + "Group 3 found at 9495-9503: `ity grav`\n", + "\n", + "Group 1 found at 10048-10053: `mail `\n", + "Group 2 found at 10053-10058: `mail `\n", + "Group 3 found at 10053-10058: `mail `\n", + "\n", + "Group 1 found at 10678-10684: `magnet`\n", + "Group 2 found at 10685-10691: `magnet`\n", + "Group 3 found at 10685-10691: `magnet`\n", + "\n", + "Group 1 found at 11655-11663: ` feeling`\n", + "Group 2 found at 11663-11671: ` feeling`\n", + "Group 3 found at 11663-11671: ` feeling`\n", + "(0, 67, 67)\n", + "detect_scores time: 2.3225789070129395\n", + "detect_scores: As of my knowledge cutoff in early 2023, the most\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010689020156860352\n", + "detect_scores: Michelangelo Buonarroti, one of the most prominen\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 8\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8977-8988: `variance co`\n", + "Group 2 found at 8988-8999: `variance co`\n", + "Group 3 found at 8988-8999: `variance co`\n", + "\n", + "Group 1 found at 11546-11551: `venge`\n", + "Group 2 found at 11552-11557: `venge`\n", + "Group 3 found at 11552-11557: `venge`\n", + "(8, 33, 41)\n", + "detect_scores time: 1.8627049922943115\n", + "detect_scores: Monsanto, now owned by Bayer since its acquisitio\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014384746551513672\n", + "detect_scores: Woody Harrelson played the character \"Steve Holt\"\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001512765884399414\n", + "detect_scores: In Sweden, the primary languages spoken are Swedi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009251832962036133\n", + "detect_scores: The Philippines operates under a democratic and c\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002089977264404297\n", + "detect_scores: Mitt Romney attended Brigham Young University (BY\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.027718782424926758\n", + "detect_scores: Ibrahim Afellay hails from Tétouan, which is a ci\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002707958221435547\n", + "detect_scores: In New Zealand, the official currencies are the N\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008263111114501953\n", + "detect_scores: When planning activities for children visiting As\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8616-8621: ` sand`\n", + "Group 2 found at 8621-8626: ` sand`\n", + "Group 3 found at 8621-8626: ` sand`\n", + "\n", + "Group 1 found at 9312-9321: `magnetic `\n", + "Group 2 found at 9321-9330: `magnetic `\n", + "Group 3 found at 9321-9330: `magnetic `\n", + "\n", + "Group 1 found at 10778-10785: `en elev`\n", + "Group 2 found at 10785-10792: `en elev`\n", + "Group 3 found at 10785-10792: `en elev`\n", + "(0, 42, 42)\n", + "detect_scores time: 1.9552409648895264\n", + "detect_scores: Kurt Russell played the character named \"Kurt War\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2295-2302: `s exist`\n", + "Group 2 found at 2302-2309: `s exist`\n", + "Group 3 found at 2302-2309: `s exist`\n", + "\n", + "Group 1 found at 6957-6964: ` anchor`\n", + "Group 2 found at 6964-6971: ` anchor`\n", + "Group 3 found at 6964-6971: ` anchor`\n", + "\n", + "Group 1 found at 8250-8256: ` aware`\n", + "Group 2 found at 8256-8262: ` aware`\n", + "Group 3 found at 8256-8262: ` aware`\n", + "(0, 40, 40)\n", + "detect_scores time: 2.059126853942871\n", + "detect_scores: Pablo Picasso, the renowned Spanish painter and s\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2775-2783: ` perfect`\n", + "Group 2 found at 2783-2791: ` perfect`\n", + "Group 3 found at 2783-2791: ` perfect`\n", + "\n", + "Group 1 found at 8031-8040: `s upgrade`\n", + "Group 2 found at 8040-8050: `s upgrade `\n", + "Group 3 found at 8040-8049: `s upgrade`\n", + "\n", + "Group 1 found at 8181-8192: `evolution r`\n", + "Group 2 found at 8192-8203: `evolution r`\n", + "Group 3 found at 8192-8203: `evolution r`\n", + "\n", + "Group 1 found at 10809-10814: `chip `\n", + "Group 2 found at 10814-10819: `chip `\n", + "Group 3 found at 10814-10819: `chip `\n", + "(0, 67, 67)\n", + "detect_scores time: 2.0663230419158936\n", + "detect_scores: When traveling from the United States or most oth\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011700868606567383\n", + "detect_scores: As of my last update in April 2023, Raúl Ibañez w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007627964019775391\n", + "detect_scores: Actor Samuel L. Jackson portrays the character of\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018911361694335938\n", + "detect_scores: As of my last update in early 2023, Michelle Pfei\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00467991828918457\n", + "detect_scores: Laura Ingalls Wilder is most famously known as an\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.046608924865722656\n", + "detect_scores: As of my last update in April 2023, Dwyane Wade r\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009186744689941406\n", + "detect_scores: I'm sorry, but as a large language model develope\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008133888244628906\n", + "detect_scores: Madonna Louise Ciccone, known professionally as M\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.020625829696655273\n", + "detect_scores: The capital city of Brazil is Brasília. It was of\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0032498836517333984\n", + "detect_scores: John Stockton, the legendary basketball player kn\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02829909324645996\n", + "detect_scores: Mexico uses the Mexican Peso as its official curr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029387474060058594\n", + "detect_scores: As of my knowledge cutoff in early 2023, Chrysler\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018291234970092773\n", + "detect_scores: Gregor Mendel, often referred to as the \"Father o\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "(5, 0, 5)\n", + "detect_scores time: 0.08046984672546387\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft wi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0027573108673095703\n", + "detect_scores: Joe Biden was the individual who ran as Barack Ob\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0002300739288330078\n", + "detect_scores: People in the UK primarily speak English. However\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007667064666748047\n", + "detect_scores: South Korea operates under a presidential represe\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.023401975631713867\n", + "detect_scores: Ben Franklin, one of the Founding Fathers of the \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008807182312011719\n", + "detect_scores: The Sri Lankan capital is Colombo. It serves as t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00956273078918457\n", + "detect_scores: Cyprus uses the Euro (€) as its official currency\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011069774627685547\n", + "detect_scores: Johnny Depp is known for playing a variety of gui\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0033800601959228516\n", + "detect_scores: Dustin Johnson, born on February 20, 1987, in Edm\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007467031478881836\n", + "detect_scores: I'm sorry, but as of my last update in 2023, Cher\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029990673065185547\n", + "detect_scores: The University of Oregon State, often referred to\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.08411788940429688\n", + "detect_scores: The official currency of Turkey is named as Turki\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019860267639160156\n", + "detect_scores: Mark Zuckerberg attended Hillside Elementary Scho\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012454748153686523\n", + "detect_scores: As of my knowledge cutoff in March 2023, Kate Mid\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04069828987121582\n", + "detect_scores: Marc Chagall was a Russian-French artist renowned\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01092219352722168\n", + "detect_scores: Billy Dee Williams played the role of Lando Calri\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0007328987121582031\n", + "detect_scores: Wilfred Owen, the renowned British poet known for\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7692-7697: `eight`\n", + "Group 2 found at 7697-7702: `eight`\n", + "Group 3 found at 7697-7702: `eight`\n", + "\n", + "Group 1 found at 10194-10200: `cancel`\n", + "Group 2 found at 10200-10206: `cancel`\n", + "Group 3 found at 10200-10206: `cancel`\n", + "(0, 22, 22)\n", + "detect_scores time: 1.7994768619537354\n", + "detect_scores: AirTran Airways, which operated from 1971 until i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00722193717956543\n", + "detect_scores: The City of Paris gets its name from several poss\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6518-6525: `measure`\n", + "Group 2 found at 6526-6533: `measure`\n", + "Group 3 found at 6526-6533: `measure`\n", + "\n", + "Group 1 found at 8792-8800: `ability `\n", + "Group 2 found at 8800-8808: `ability `\n", + "Group 3 found at 8800-8808: `ability `\n", + "(0, 31, 31)\n", + "detect_scores time: 1.8055450916290283\n", + "detect_scores: Sandra Bullock, the acclaimed actress and filmmak\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00692296028137207\n", + "detect_scores: Olympic National Park, often referred to as the \"\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3791-3799: `ability `\n", + "Group 2 found at 3799-3807: `ability `\n", + "Group 3 found at 3799-3807: `ability `\n", + "\n", + "Group 1 found at 4470-4479: ` commence`\n", + "Group 2 found at 4479-4488: ` commence`\n", + "Group 3 found at 4479-4488: ` commence`\n", + "\n", + "Group 1 found at 6569-6576: `avour s`\n", + "Group 2 found at 6576-6583: `avour s`\n", + "Group 3 found at 6576-6583: `avour s`\n", + "(0, 48, 48)\n", + "detect_scores time: 0.7962520122528076\n", + "detect_scores: Yale University is located in New Haven, Connecti\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 5.507469177246094e-05\n", + "detect_scores: Thomas Paine died on June 8, 1799. He passed away\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006671905517578125\n", + "detect_scores: Barack Hussein Obama Sr. was born on December 1, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006310939788818359\n", + "detect_scores: The New England Patriots' current home field as o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003196239471435547\n", + "detect_scores: Kate Chopin, born Katherine O'Flaherty on Februar\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.048896074295043945\n", + "detect_scores: Bill Clinton attended Georgetown University for h\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006239891052246094\n", + "detect_scores: Staffordshire Terrier, also known as the American\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3925-3934: `e retriev`\n", + "Group 2 found at 3934-3943: `e retriev`\n", + "Group 3 found at 3934-3943: `e retriev`\n", + "\n", + "Group 1 found at 6105-6111: `cards `\n", + "Group 2 found at 6111-6117: `cards `\n", + "Group 3 found at 6111-6117: `cards `\n", + "\n", + "Group 1 found at 7236-7242: `system`\n", + "Group 2 found at 7243-7249: `system`\n", + "Group 3 found at 7243-7249: `system`\n", + "(5, 43, 48)\n", + "detect_scores time: 1.7503149509429932\n", + "detect_scores: Michael J. Fox's biological mother was Phyllis An\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004815101623535156\n", + "detect_scores: Sanjaya Gupta attended medical schools and reside\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008746862411499023\n", + "detect_scores: The North American Free Trade Agreement (NAFTA) o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02020096778869629\n", + "detect_scores: The Cayman Islands are not a part of any continen\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009876012802124023\n", + "detect_scores: In Brazil, the primary official and national lang\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003526926040649414\n", + "detect_scores: The Pittsburgh Steelers' most recent Super Bowl w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004645347595214844\n", + "detect_scores: Switzerland is a multilingual country with four o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.04006600379943848\n", + "detect_scores: Barack Obama represents the Democratic Party in A\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0032308101654052734\n", + "detect_scores: Emperor Constantine, also known as Constantius Ch\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.028705120086669922\n", + "detect_scores: Mali, often spelled \"Mali,\" is a landlocked count\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0073070526123046875\n", + "detect_scores: As of my last update in 2023, I cannot provide re\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013731002807617188\n", + "detect_scores: The very first Microsoft Headquarters, known as M\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013905048370361328\n", + "detect_scores: John Steinbeck, the acclaimed American author kno\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006200075149536133\n", + "detect_scores: Niels Bohr, a Danish physicist who made foundatio\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018966197967529297\n", + "detect_scores: Ryan Reynold, the well-known actor and comedian, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005294084548950195\n", + "detect_scores: Newt Gingrich's ex-wife, whom he was married to f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001476287841796875\n", + "detect_scores: Antonio Vivaldi was a Baroque composer and violin\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01312112808227539\n", + "detect_scores: As of my last update in April 2023, specific pers\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008520841598510742\n", + "detect_scores: Samuel Langhorne Clemens, better recognized by hi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4086-4093: ` decent`\n", + "Group 2 found at 4093-4100: ` decent`\n", + "Group 3 found at 4093-4100: ` decent`\n", + "\n", + "Group 1 found at 8602-8607: `a vit`\n", + "Group 2 found at 8607-8612: `a vit`\n", + "Group 3 found at 8607-8612: `a vit`\n", + "(0, 24, 24)\n", + "detect_scores time: 1.365635871887207\n", + "detect_scores: After William Henry Harrison, the 9th President o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012197494506835938\n", + "detect_scores: George W. Bush's memoir, titled \"Decision Points,\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0032548904418945312\n", + "detect_scores: Antoine Lavoisier, often regarded as the father o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00980687141418457\n", + "detect_scores: The Queen consort to King George VI was Elizabeth\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0051729679107666016\n", + "detect_scores: The Seattle Seahawks went to their first Super Bo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018420219421386719\n", + "detect_scores: Sami Yusuf, a well-known British singer and music\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012666702270507812\n", + "detect_scores: The official languages of Brazil are Portuguese a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002354145050048828\n", + "detect_scores: The New York Mets' most recent World Series win w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003936052322387695\n", + "detect_scores: Florida Panther National Wildlife Refuge, which i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015213966369628906\n", + "detect_scores: New York University (NYU) was not the brainchild \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3949-3957: `fense de`\n", + "Group 2 found at 3957-3965: `fense de`\n", + "Group 3 found at 3957-3965: `fense de`\n", + "\n", + "Group 1 found at 3997-4004: `action `\n", + "Group 2 found at 4004-4011: `action `\n", + "Group 3 found at 4004-4011: `action `\n", + "\n", + "Group 1 found at 5338-5346: `onym hyp`\n", + "Group 2 found at 5346-5354: `onym hyp`\n", + "Group 3 found at 5346-5354: `onym hyp`\n", + "\n", + "Group 1 found at 6529-6540: `s mechanism`\n", + "Group 2 found at 6540-6552: `s mechanism `\n", + "Group 3 found at 6540-6551: `s mechanism`\n", + "\n", + "Group 1 found at 6695-6702: `s rival`\n", + "Group 2 found at 6702-6710: `s rival `\n", + "Group 3 found at 6702-6709: `s rival`\n", + "\n", + "Group 1 found at 7888-7895: ` heaven`\n", + "Group 2 found at 7895-7902: ` heaven`\n", + "Group 3 found at 7895-7902: ` heaven`\n", + "\n", + "Group 1 found at 9105-9112: `dermis `\n", + "Group 2 found at 9112-9119: `dermis `\n", + "Group 3 found at 9112-9119: `dermis `\n", + "\n", + "Group 1 found at 9460-9469: ` rotation`\n", + "Group 2 found at 9469-9478: ` rotation`\n", + "Group 3 found at 9469-9478: ` rotation`\n", + "\n", + "Group 1 found at 10036-10042: `tytwen`\n", + "Group 2 found at 10042-10048: `tytwen`\n", + "Group 3 found at 10042-10048: `tytwen`\n", + "\n", + "Group 1 found at 10684-10693: `particle `\n", + "Group 2 found at 10693-10702: `particle `\n", + "Group 3 found at 10693-10702: `particle `\n", + "(0, 160, 160)\n", + "detect_scores time: 1.870974063873291\n", + "detect_scores: North Africa comprises several countries along it\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 23\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6293-6303: `s gradient`\n", + "Group 2 found at 6303-6314: `s gradient `\n", + "Group 3 found at 6303-6313: `s gradient`\n", + "\n", + "Group 1 found at 6804-6811: `s tempo`\n", + "Group 2 found at 6811-6819: `s tempo `\n", + "Group 3 found at 6811-6818: `s tempo`\n", + "\n", + "Group 1 found at 9625-9631: ` locks`\n", + "Group 2 found at 9631-9637: ` locks`\n", + "Group 3 found at 9631-9637: ` locks`\n", + "(23, 48, 71)\n", + "detect_scores time: 1.8637988567352295\n", + "detect_scores: John Mayer is a talented American singer-songwrit\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6862-6869: `meters `\n", + "Group 2 found at 6869-6876: `meters `\n", + "Group 3 found at 6869-6876: `meters `\n", + "\n", + "Group 1 found at 7726-7731: `fire `\n", + "Group 2 found at 7731-7736: `fire `\n", + "Group 3 found at 7731-7736: `fire `\n", + "(0, 24, 24)\n", + "detect_scores time: 1.8575108051300049\n", + "detect_scores: Patrick Swayze, the acclaimed actor known for his\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011148452758789062\n", + "detect_scores: Barack Obama is a distinguished alumnus of the Un\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015313863754272461\n", + "detect_scores: The Jamaican currency is known as the Jamaican Do\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021953582763671875\n", + "detect_scores: The Arizona Cardinals Stadium, known as State Far\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002988100051879883\n", + "detect_scores: Sir Isaac Newton's theories primarily revolve aro\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 9159-9170: `s alignment`\n", + "Group 2 found at 9170-9182: `s alignment `\n", + "Group 3 found at 9170-9181: `s alignment`\n", + "\n", + "Group 1 found at 9486-9498: `s allocation`\n", + "Group 2 found at 9498-9511: `s allocation `\n", + "Group 3 found at 9498-9510: `s allocation`\n", + "\n", + "Group 1 found at 9711-9717: `s flow`\n", + "Group 2 found at 9717-9724: `s flow `\n", + "Group 3 found at 9717-9723: `s flow`\n", + "\n", + "Group 1 found at 9825-9831: `s sign`\n", + "Group 2 found at 9831-9837: `s sign`\n", + "Group 3 found at 9831-9837: `s sign`\n", + "(5, 73, 78)\n", + "detect_scores time: 2.1117889881134033\n", + "detect_scores: Pablo Picasso, one of the most influential artist\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 10\n", + "----detect text repetitions----\n", + "(10, 0, 10)\n", + "detect_scores time: 0.0881350040435791\n", + "detect_scores: As of the knowledge cutoff date, Pennsylvania's p\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008944034576416016\n", + "detect_scores: I cannot provide real-time or current event infor\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004106044769287109\n", + "detect_scores: Queen Isabella I of Castile's (Isabella the Catho\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.020526885986328125\n", + "detect_scores: I'm sorry, but as an AI developed by Microsoft, I\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005396842956542969\n", + "detect_scores: As of my last update, Judaism remains by far Isra\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3607-3616: ` definite`\n", + "Group 2 found at 3616-3625: ` definite`\n", + "Group 3 found at 3616-3625: ` definite`\n", + "\n", + "Group 1 found at 3629-3638: ` absolute`\n", + "Group 2 found at 3638-3647: ` absolute`\n", + "Group 3 found at 3638-3647: ` absolute`\n", + "\n", + "Group 1 found at 7078-7086: `relation`\n", + "Group 2 found at 7087-7095: `relation`\n", + "Group 3 found at 7087-7095: `relation`\n", + "\n", + "Group 1 found at 7614-7627: `conductivity `\n", + "Group 2 found at 7627-7640: `conductivity `\n", + "Group 3 found at 7627-7640: `conductivity `\n", + "\n", + "Group 1 found at 8596-8607: `components `\n", + "Group 2 found at 8607-8618: `components `\n", + "Group 3 found at 8607-8618: `components `\n", + "\n", + "Group 1 found at 9023-9033: `planes air`\n", + "Group 2 found at 9033-9043: `planes air`\n", + "Group 3 found at 9033-9043: `planes air`\n", + "(0, 121, 121)\n", + "detect_scores time: 1.8271417617797852\n", + "detect_scores: The Thames River, known as one of London's most i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6596-6602: `lists `\n", + "Group 2 found at 6602-6608: `lists `\n", + "Group 3 found at 6602-6608: `lists `\n", + "\n", + "Group 1 found at 7570-7579: `mum extre`\n", + "Group 2 found at 7579-7588: `mum extre`\n", + "Group 3 found at 7579-7588: `mum extre`\n", + "\n", + "Group 1 found at 8098-8103: `bench`\n", + "Group 2 found at 8104-8109: `bench`\n", + "Group 3 found at 8104-8109: `bench`\n", + "(0, 41, 41)\n", + "detect_scores time: 1.7317733764648438\n", + "detect_scores: In Pakistan, the primary languages spoken are Urd\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0086669921875\n", + "detect_scores: Kim Jong-il, the former leader of North Korea, di\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008233308792114258\n", + "detect_scores: The FedEx Cup was awarded to Rickie Fowler in the\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.054451942443847656\n", + "detect_scores: The main languages officially recognized and wide\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006326198577880859\n", + "detect_scores: The character Alf from the TV Show \"Frasier\" was \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0019021034240722656\n", + "detect_scores: Gerald Ford served as the Vice President of the U\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014227867126464844\n", + "detect_scores: Raphael Sanzio, known simply as Raffaello or more\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01857781410217285\n", + "detect_scores: In Malta, the primary languages spoken are Maltes\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.06978034973144531\n", + "detect_scores: King Louis XIV of France, also known as the Sun K\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007581949234008789\n", + "detect_scores: Shane Douglas \"Shannon\" Hoon died on April 14, 20\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004378080368041992\n", + "detect_scores: Nicholas Copernicus was a Renaissance-era mathema\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.026192188262939453\n", + "detect_scores: Manny Ramírez, a professional baseball player kno\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 11\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8718-8729: `variance co`\n", + "Group 2 found at 8729-8740: `variance co`\n", + "Group 3 found at 8729-8740: `variance co`\n", + "\n", + "Group 1 found at 9841-9853: `es eigenvalu`\n", + "Group 2 found at 9853-9865: `es eigenvalu`\n", + "Group 3 found at 9853-9865: `es eigenvalu`\n", + "\n", + "Group 1 found at 10620-10628: `s meteor`\n", + "Group 2 found at 10628-10636: `s meteor`\n", + "Group 3 found at 10628-10636: `s meteor`\n", + "(11, 62, 73)\n", + "detect_scores time: 1.9398729801177979\n", + "detect_scores: The Appalachian Mountains, often referred to as t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5135-5140: ` cove`\n", + "Group 2 found at 5140-5145: ` cove`\n", + "Group 3 found at 5140-5145: ` cove`\n", + "\n", + "Group 1 found at 7552-7562: `ers debugg`\n", + "Group 2 found at 7562-7572: `ers debugg`\n", + "Group 3 found at 7562-7572: `ers debugg`\n", + "\n", + "Group 1 found at 9495-9501: `s talk`\n", + "Group 2 found at 9501-9508: `s talk `\n", + "Group 3 found at 9501-9507: `s talk`\n", + "\n", + "Group 1 found at 10037-10052: `ation exponenti`\n", + "Group 2 found at 10052-10067: `ation exponenti`\n", + "Group 3 found at 10052-10067: `ation exponenti`\n", + "(0, 73, 73)\n", + "detect_scores time: 1.9625489711761475\n", + "detect_scores: Jerry Brown, who served as the Governor of Califo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013529062271118164\n", + "detect_scores: The Pacific Ocean surrounds Hawaii. Specifically,\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00119781494140625\n", + "detect_scores: The most commonly spoken native language in Argen\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0059850215911865234\n", + "detect_scores: Tunisia is a country located in North Africa, bor\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012356042861938477\n", + "detect_scores: St. Trinian's is a series of British comic books \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0117340087890625\n", + "detect_scores: Mexico operates under a federal presidential repr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007516145706176758\n", + "detect_scores: The Dominican Republic uses the Dominican Peso as\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00047206878662109375\n", + "detect_scores: Michael Jackson, known as the \"King of Pop,\" was \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6649-6655: ` loose`\n", + "Group 2 found at 6655-6661: ` loose`\n", + "Group 3 found at 6655-6661: ` loose`\n", + "\n", + "Group 1 found at 6877-6882: `owed `\n", + "Group 2 found at 6882-6887: `owed `\n", + "Group 3 found at 6882-6887: `owed `\n", + "(0, 22, 22)\n", + "detect_scores time: 2.0304858684539795\n", + "detect_scores: I cannot respond to questions on identities. Plea\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00031685829162597656\n", + "detect_scores: The three official languages of Belgium are Dutch\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 34\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5452-5457: `s god`\n", + "Group 2 found at 5457-5462: `s god`\n", + "Group 3 found at 5457-5462: `s god`\n", + "(34, 10, 44)\n", + "detect_scores time: 1.510828971862793\n", + "detect_scores: Frank Baum, the author famous for writing \"The Wo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004441261291503906\n", + "detect_scores: Tunis, also known as Tunisia's capital city and l\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00410914421081543\n", + "detect_scores: Mary Wollstonecraft was a pioneering advocate of \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.015781879425048828\n", + "detect_scores: Icelanders primarily speak Icelandic, which is a \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0059740543365478516\n", + "detect_scores: In Scotland, the primary languages spoken are Eng\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005110025405883789\n", + "detect_scores: Mark Zuckerberg attended the private, co-educatio\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0015828609466552734\n", + "detect_scores: Shaquille O'Neal, known as \"Shaq,\" entered the NB\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00252532958984375\n", + "detect_scores: The character Darth Vader, a central figure from \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00595402717590332\n", + "detect_scores: Louis Armstrong was a legendary jazz trumpeter, c\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2923-2932: `e infinit`\n", + "Group 2 found at 2932-2941: `e infinit`\n", + "Group 3 found at 2932-2941: `e infinit`\n", + "\n", + "Group 1 found at 6799-6804: `s sea`\n", + "Group 2 found at 6804-6810: `s sea `\n", + "Group 3 found at 6804-6809: `s sea`\n", + "\n", + "Group 1 found at 6892-6898: `es cav`\n", + "Group 2 found at 6898-6904: `es cav`\n", + "Group 3 found at 6898-6904: `es cav`\n", + "\n", + "Group 1 found at 7330-7335: `shop `\n", + "Group 2 found at 7335-7340: `shop `\n", + "Group 3 found at 7335-7340: `shop `\n", + "\n", + "Group 1 found at 8206-8212: `staff `\n", + "Group 2 found at 8212-8218: `staff `\n", + "Group 3 found at 8212-8218: `staff `\n", + "(0, 63, 63)\n", + "detect_scores time: 1.6643359661102295\n", + "detect_scores: Germany uses the Euro (€) as its official and leg\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0032126903533935547\n", + "detect_scores: King Solomon, known for his wisdom and as a ruler\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.028035879135131836\n", + "detect_scores: Andy Irvine, the Irish musician known for his wor\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012001991271972656\n", + "detect_scores: Adolf Hitler, the infamous dictator of Germany du\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008823633193969727\n", + "detect_scores: As an AI developed by Microsoft, I cannot provide\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005933046340942383\n", + "detect_scores: The Appalachian Mountains, often referred to as t\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5722-5727: `great`\n", + "Group 2 found at 5727-5732: `great`\n", + "Group 3 found at 5727-5732: `great`\n", + "\n", + "Group 1 found at 5754-5759: `child`\n", + "Group 2 found at 5760-5765: `child`\n", + "Group 3 found at 5760-5765: `child`\n", + "\n", + "Group 1 found at 6766-6777: `scension de`\n", + "Group 2 found at 6777-6788: `scension de`\n", + "Group 3 found at 6777-6788: `scension de`\n", + "\n", + "Group 1 found at 7954-7960: `cycle `\n", + "Group 2 found at 7960-7966: `cycle `\n", + "Group 3 found at 7960-7966: `cycle `\n", + "\n", + "Group 1 found at 9024-9031: `tion ac`\n", + "Group 2 found at 9031-9038: `tion ac`\n", + "Group 3 found at 9031-9038: `tion ac`\n", + "\n", + "Group 1 found at 10277-10282: `safe `\n", + "Group 2 found at 10282-10287: `safe `\n", + "Group 3 found at 10282-10287: `safe `\n", + "\n", + "Group 1 found at 10908-10916: `s figure`\n", + "Group 2 found at 10916-10924: `s figure`\n", + "Group 3 found at 10916-10924: `s figure`\n", + "(0, 95, 95)\n", + "detect_scores time: 2.1216657161712646\n", + "detect_scores: Spain uses the Euro (€) as its official currency.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010942935943603516\n", + "detect_scores: As of my knowledge cutoff in 2023, Major League B\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003065824508666992\n", + "detect_scores: I'm sorry, but as a language model developed by O\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008378028869628906\n", + "detect_scores: The most common official and spoken language in N\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006627798080444336\n", + "detect_scores: Benjamin Franklin attended the Boston Latin Schoo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007342100143432617\n", + "detect_scores: ElectroLUX Corporation, known for its brand of ho\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02544689178466797\n", + "detect_scores: The Houston Time Zone corresponds to the Central \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0065860748291015625\n", + "detect_scores: Shakespeare's first wife, Anne Hathaway, is not a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007920980453491211\n", + "detect_scores: Mount St. Helens, an active stratovolcano situate\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01459503173828125\n", + "detect_scores: St. Paul, Minnesota is located within Ramsey Coun\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005578041076660156\n", + "detect_scores: King Henry VIII's only legitimate male heir, who \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5469-5475: `laces `\n", + "Group 2 found at 5475-5481: `laces `\n", + "Group 3 found at 5475-5481: `laces `\n", + "\n", + "Group 1 found at 5533-5540: `s clasp`\n", + "Group 2 found at 5540-5548: `s clasp `\n", + "Group 3 found at 5540-5547: `s clasp`\n", + "(0, 27, 27)\n", + "detect_scores time: 1.1582839488983154\n", + "detect_scores: In the television series Smallville, Lex Luthor i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010938644409179688\n", + "detect_scores: The official currency of the Czech Republic is th\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005456209182739258\n", + "detect_scores: The LA Kings' most recent win in a postseason ser\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010624170303344727\n", + "detect_scores: Spencer Pratt attended several educational instit\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014729022979736328\n", + "detect_scores: Abraham Lincoln, the 16th President of the United\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 470-475: `or po`\n", + "Group 2 found at 475-480: `or po`\n", + "Group 3 found at 475-480: `or po`\n", + "\n", + "Group 1 found at 6560-6569: ` hangover`\n", + "Group 2 found at 6569-6578: ` hangover`\n", + "Group 3 found at 6569-6578: ` hangover`\n", + "\n", + "Group 1 found at 9564-9569: `null `\n", + "Group 2 found at 9569-9574: `null `\n", + "Group 3 found at 9569-9574: `null `\n", + "(0, 38, 38)\n", + "detect_scores time: 1.5394959449768066\n", + "detect_scores: The current head coach of the Vancouver Canucks, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0014042854309082031\n", + "detect_scores: C.S. Lewis, whose full name is CS (Clive Staples)\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4713-4721: `e upgrad`\n", + "Group 2 found at 4721-4729: `e upgrad`\n", + "Group 3 found at 4721-4729: `e upgrad`\n", + "\n", + "Group 1 found at 5479-5489: `cessor suc`\n", + "Group 2 found at 5489-5499: `cessor suc`\n", + "Group 3 found at 5489-5499: `cessor suc`\n", + "\n", + "Group 1 found at 8450-8459: ` exponent`\n", + "Group 2 found at 8459-8468: ` exponent`\n", + "Group 3 found at 8459-8468: ` exponent`\n", + "\n", + "Group 1 found at 10891-10896: `here `\n", + "Group 2 found at 10896-10901: `here `\n", + "Group 3 found at 10896-10901: `here `\n", + "\n", + "Group 1 found at 10931-10938: `body no`\n", + "Group 2 found at 10938-10945: `body no`\n", + "Group 3 found at 10938-10945: `body no`\n", + "(0, 78, 78)\n", + "detect_scores time: 2.0090980529785156\n", + "detect_scores: In Peru, the primary languages spoken are Spanish\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004845142364501953\n", + "detect_scores: Arsenal Football Club, commonly known as Arsenal \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.024953842163085938\n", + "detect_scores: As of my last update, Phoenix, Arizona operates o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0028738975524902344\n", + "detect_scores: South Portland, Maine refers to a city located in\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002463102340698242\n", + "detect_scores: Claudius Ptolemaeus, commonly known as Ptolemy, w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3466-3471: `e cav`\n", + "Group 2 found at 3471-3476: `e cav`\n", + "Group 3 found at 3471-3476: `e cav`\n", + "(0, 10, 10)\n", + "detect_scores time: 1.7593858242034912\n", + "detect_scores: The name of Henry VIII's first wife was Catherine\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012590169906616211\n", + "detect_scores: The Paraná River is one of the principal rivers i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.037760019302368164\n", + "detect_scores: Theodor Schwann, a renowned German physiologist a\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 7\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 11230-11240: ` continent`\n", + "Group 2 found at 11240-11250: ` continent`\n", + "Group 3 found at 11240-11250: ` continent`\n", + "\n", + "Group 1 found at 11414-11427: `chemistry bio`\n", + "Group 2 found at 11427-11440: `chemistry bio`\n", + "Group 3 found at 11427-11440: `chemistry bio`\n", + "(7, 46, 53)\n", + "detect_scores time: 2.20103120803833\n", + "detect_scores: The Houston Rockets won their first NBA Champions\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0011699199676513672\n", + "detect_scores: Most Russians reside within its European part, pa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007935047149658203\n", + "detect_scores: The Holy Roman Empire was not situated in a singl\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009339094161987305\n", + "detect_scores: In \"The Young And The Restless,\" Nicholas Newmann\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001445770263671875\n", + "detect_scores: The original creators and co-writers Matt Stone a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007364988327026367\n", + "detect_scores: Angelina Jolie's biological sibling, as publicly \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3773-3780: `writer `\n", + "Group 2 found at 3780-3787: `writer `\n", + "Group 3 found at 3780-3787: `writer `\n", + "\n", + "Group 1 found at 4872-4880: `together`\n", + "Group 2 found at 4880-4888: `together`\n", + "Group 3 found at 4880-4888: `together`\n", + "\n", + "Group 1 found at 5796-5802: ` cheer`\n", + "Group 2 found at 5802-5808: ` cheer`\n", + "Group 3 found at 5802-5808: ` cheer`\n", + "\n", + "Group 1 found at 7508-7519: `s neighbour`\n", + "Group 2 found at 7519-7530: `s neighbour`\n", + "Group 3 found at 7519-7530: `s neighbour`\n", + "\n", + "Group 1 found at 7671-7681: `roid meteo`\n", + "Group 2 found at 7681-7691: `roid meteo`\n", + "Group 3 found at 7681-7691: `roid meteo`\n", + "\n", + "Group 1 found at 7704-7714: ` satellite`\n", + "Group 2 found at 7714-7724: ` satellite`\n", + "Group 3 found at 7714-7724: ` satellite`\n", + "\n", + "Group 1 found at 7725-7732: ` rocket`\n", + "Group 2 found at 7732-7739: ` rocket`\n", + "Group 3 found at 7732-7739: ` rocket`\n", + "\n", + "Group 1 found at 8074-8081: `er soon`\n", + "Group 2 found at 8081-8089: `er soon `\n", + "Group 3 found at 8081-8088: `er soon`\n", + "\n", + "Group 1 found at 8362-8370: ` similar`\n", + "Group 2 found at 8370-8378: ` similar`\n", + "Group 3 found at 8370-8378: ` similar`\n", + "\n", + "Group 1 found at 8922-8928: ` total`\n", + "Group 2 found at 8928-8934: ` total`\n", + "Group 3 found at 8928-8934: ` total`\n", + "\n", + "Group 1 found at 11183-11192: `es pictur`\n", + "Group 2 found at 11192-11201: `es pictur`\n", + "Group 3 found at 11192-11201: `es pictur`\n", + "(0, 179, 179)\n", + "detect_scores time: 2.1160638332366943\n", + "detect_scores: The headquarters of Bank of America are located i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007214784622192383\n", + "detect_scores: Japan operates under a parliamentary system and i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2118-2129: ` Geographic`\n", + "Group 2 found at 2129-2140: ` Geographic`\n", + "Group 3 found at 2129-2140: ` Geographic`\n", + "\n", + "Group 1 found at 8613-8625: `eitschrift Z`\n", + "Group 2 found at 8625-8637: `eitschrift Z`\n", + "Group 3 found at 8625-8637: `eitschrift Z`\n", + "(0, 46, 46)\n", + "detect_scores time: 1.238889217376709\n", + "detect_scores: As of my last update in April 2023, Josh Hamilton\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03545713424682617\n", + "detect_scores: Burundi is a small landlocked country in the Grea\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6488-6495: `t rejec`\n", + "Group 2 found at 6495-6502: `t rejec`\n", + "Group 3 found at 6495-6502: `t rejec`\n", + "\n", + "Group 1 found at 8736-8744: `relation`\n", + "Group 2 found at 8745-8753: `relation`\n", + "Group 3 found at 8745-8753: `relation`\n", + "\n", + "Group 1 found at 9478-9488: `ance lumin`\n", + "Group 2 found at 9488-9498: `ance lumin`\n", + "Group 3 found at 9488-9498: `ance lumin`\n", + "\n", + "Group 1 found at 9880-9885: `verb `\n", + "Group 2 found at 9885-9890: `verb `\n", + "Group 3 found at 9885-9890: `verb `\n", + "\n", + "Group 1 found at 9901-9909: `article `\n", + "Group 2 found at 9909-9917: `article `\n", + "Group 3 found at 9909-9917: `article `\n", + "\n", + "Group 1 found at 10949-10960: ` arithmetic`\n", + "Group 2 found at 10960-10971: ` arithmetic`\n", + "Group 3 found at 10960-10971: ` arithmetic`\n", + "\n", + "Group 1 found at 11230-11237: `meters `\n", + "Group 2 found at 11237-11244: `meters `\n", + "Group 3 found at 11237-11244: `meters `\n", + "(0, 113, 113)\n", + "detect_scores time: 2.3479361534118652\n", + "detect_scores: As of my last update, Paul Ryan lived in Janesvil\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003986835479736328\n", + "detect_scores: Acadia University, known for its vibrant academic\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0034449100494384766\n", + "detect_scores: F. Scott Fitzgerald was an American novelist and \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.023287057876586914\n", + "detect_scores: TomTom's Western Europe coverage typically includ\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 1541-1546: ` safe`\n", + "Group 2 found at 1546-1551: ` safe`\n", + "Group 3 found at 1546-1551: ` safe`\n", + "\n", + "Group 1 found at 3099-3105: `acks h`\n", + "Group 2 found at 3105-3111: `acks h`\n", + "Group 3 found at 3105-3111: `acks h`\n", + "\n", + "Group 1 found at 6323-6329: `le smi`\n", + "Group 2 found at 6329-6335: `le smi`\n", + "Group 3 found at 6329-6335: `le smi`\n", + "\n", + "Group 1 found at 7396-7405: `ctivity a`\n", + "Group 2 found at 7405-7414: `ctivity a`\n", + "Group 3 found at 7405-7414: `ctivity a`\n", + "\n", + "Group 1 found at 7815-7820: ` talk`\n", + "Group 2 found at 7820-7825: ` talk`\n", + "Group 3 found at 7820-7825: ` talk`\n", + "\n", + "Group 1 found at 8403-8410: `s angle`\n", + "Group 2 found at 8410-8418: `s angle `\n", + "Group 3 found at 8410-8417: `s angle`\n", + "\n", + "Group 1 found at 8674-8680: `light `\n", + "Group 2 found at 8680-8686: `light `\n", + "Group 3 found at 8680-8686: `light `\n", + "(0, 89, 89)\n", + "detect_scores time: 2.0716819763183594\n", + "detect_scores: The official and national languages recognized in\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0071947574615478516\n", + "detect_scores: In Spain, the primary language spoken is Spanish \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8325-8332: ` marine`\n", + "Group 2 found at 8332-8339: ` marine`\n", + "Group 3 found at 8332-8339: ` marine`\n", + "(0, 14, 14)\n", + "detect_scores time: 1.7388551235198975\n", + "detect_scores: Michael Crabtree is a former professional America\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3357-3362: `s con`\n", + "Group 2 found at 3362-3367: `s con`\n", + "Group 3 found at 3362-3367: `s con`\n", + "\n", + "Group 1 found at 6373-6378: ` none`\n", + "Group 2 found at 6378-6383: ` none`\n", + "Group 3 found at 6378-6383: ` none`\n", + "\n", + "Group 1 found at 8583-8591: ` measure`\n", + "Group 2 found at 8591-8599: ` measure`\n", + "Group 3 found at 8591-8599: ` measure`\n", + "\n", + "Group 1 found at 11312-11324: ` surrounding`\n", + "Group 2 found at 11324-11336: ` surrounding`\n", + "Group 3 found at 11324-11336: ` surrounding`\n", + "\n", + "Group 1 found at 11862-11868: ` crowd`\n", + "Group 2 found at 11868-11874: ` crowd`\n", + "Group 3 found at 11868-11874: ` crowd`\n", + "\n", + "Group 1 found at 11879-11890: ` photograph`\n", + "Group 2 found at 11890-11901: ` photograph`\n", + "Group 3 found at 11890-11901: ` photograph`\n", + "(0, 94, 94)\n", + "detect_scores time: 1.9447801113128662\n", + "detect_scores: The three U.S. states that share a boundary with \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7197-7208: `s algorithm`\n", + "Group 2 found at 7208-7219: `s algorithm`\n", + "Group 3 found at 7208-7219: `s algorithm`\n", + "\n", + "Group 1 found at 8851-8863: `e concentrat`\n", + "Group 2 found at 8863-8875: `e concentrat`\n", + "Group 3 found at 8863-8875: `e concentrat`\n", + "(0, 46, 46)\n", + "detect_scores time: 1.598423957824707\n", + "detect_scores: The character Ziva David from NCIS is played by a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0038809776306152344\n", + "detect_scores: After the death of King Henry VIII in 1547, his o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010068893432617188\n", + "detect_scores: Argentina recognizes several indigenous and natio\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6144-6149: ` zero`\n", + "Group 2 found at 6149-6154: ` zero`\n", + "Group 3 found at 6149-6154: ` zero`\n", + "\n", + "Group 1 found at 6438-6446: ` polygon`\n", + "Group 2 found at 6446-6454: ` polygon`\n", + "Group 3 found at 6446-6454: ` polygon`\n", + "\n", + "Group 1 found at 7277-7282: `case `\n", + "Group 2 found at 7282-7287: `case `\n", + "Group 3 found at 7282-7287: `case `\n", + "\n", + "Group 1 found at 8425-8430: ` cave`\n", + "Group 2 found at 8430-8435: ` cave`\n", + "Group 3 found at 8430-8435: ` cave`\n", + "\n", + "Group 1 found at 8531-8538: `phrase `\n", + "Group 2 found at 8538-8545: `phrase `\n", + "Group 3 found at 8538-8545: `phrase `\n", + "\n", + "Group 1 found at 9710-9717: `t silen`\n", + "Group 2 found at 9717-9724: `t silen`\n", + "Group 3 found at 9717-9724: `t silen`\n", + "\n", + "Group 1 found at 9760-9771: `ly thorough`\n", + "Group 2 found at 9771-9783: `ly thorough `\n", + "Group 3 found at 9771-9782: `ly thorough`\n", + "\n", + "Group 1 found at 10053-10063: `specially `\n", + "Group 2 found at 10063-10073: `specially `\n", + "Group 3 found at 10063-10073: `specially `\n", + "\n", + "Group 1 found at 10314-10320: ` cheer`\n", + "Group 2 found at 10320-10326: ` cheer`\n", + "Group 3 found at 10320-10326: ` cheer`\n", + "\n", + "Group 1 found at 10411-10416: `safe `\n", + "Group 2 found at 10416-10421: `safe `\n", + "Group 3 found at 10416-10421: `safe `\n", + "\n", + "Group 1 found at 10452-10459: `able st`\n", + "Group 2 found at 10459-10466: `able st`\n", + "Group 3 found at 10459-10466: `able st`\n", + "\n", + "Group 1 found at 10793-10801: `relation`\n", + "Group 2 found at 10802-10810: `relation`\n", + "Group 3 found at 10802-10810: `relation`\n", + "(0, 170, 170)\n", + "detect_scores time: 2.0356268882751465\n", + "detect_scores: Rafael Nadal plays tennis professionally and repr\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037288665771484375\n", + "detect_scores: The Prime Minister of Spain in 2011 was José Luis\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016451120376586914\n", + "detect_scores: The famous historical figure who fits this descri\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.029093265533447266\n", + "detect_scores: Judi Dench, the renowned British actress known fo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.03155398368835449\n", + "detect_scores: In Spain, the official language is Spanish (Casti\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 654-661: `ound ar`\n", + "Group 2 found at 661-668: `ound ar`\n", + "Group 3 found at 661-668: `ound ar`\n", + "(0, 14, 14)\n", + "detect_scores time: 0.02574634552001953\n", + "detect_scores: The Sahara Desert is primarily situated in North \n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "(5, 0, 5)\n", + "detect_scores time: 0.09631109237670898\n", + "detect_scores: Michael Oher, who is well-known as the offensive \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.033982276916503906\n", + "detect_scores: Albert Einstein, the theoretical physicist renown\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 26\n", + "----detect text repetitions----\n", + "(26, 0, 26)\n", + "detect_scores time: 0.07688307762145996\n", + "detect_scores: Egypt is a significant player in the global trade\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7545-7552: ` patron`\n", + "Group 2 found at 7552-7559: ` patron`\n", + "Group 3 found at 7552-7559: ` patron`\n", + "\n", + "Group 1 found at 10006-10011: `block`\n", + "Group 2 found at 10012-10017: `block`\n", + "Group 3 found at 10012-10017: `block`\n", + "(0, 25, 25)\n", + "detect_scores time: 2.1614649295806885\n", + "detect_scores: The headquarters of the African Union (AU) are lo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0016918182373046875\n", + "detect_scores: Henri Rousseau was a French post-impressionist pa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017589092254638672\n", + "detect_scores: John Edwards was a former U.S. Senator and presid\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4200-4210: ` continent`\n", + "Group 2 found at 4210-4220: ` continent`\n", + "Group 3 found at 4210-4220: ` continent`\n", + "\n", + "Group 1 found at 7954-7965: ` Foundation`\n", + "Group 2 found at 7965-7976: ` Foundation`\n", + "Group 3 found at 7965-7976: ` Foundation`\n", + "(0, 42, 42)\n", + "detect_scores time: 1.6269969940185547\n", + "detect_scores: Huey Newton, one of the co-founders and a promine\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.010751008987426758\n", + "detect_scores: Mitt Romneys' immediate family, which includes hi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009661197662353516\n", + "detect_scores: Michael Jackson, the renowned singer and entertai\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001138925552368164\n", + "detect_scores: The Battle of Vicksburg was a significant engagem\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8140-8145: `suit `\n", + "Group 2 found at 8145-8150: `suit `\n", + "Group 3 found at 8145-8150: `suit `\n", + "\n", + "Group 1 found at 9790-9801: ` instrument`\n", + "Group 2 found at 9801-9812: ` instrument`\n", + "Group 3 found at 9801-9812: ` instrument`\n", + "(0, 32, 32)\n", + "detect_scores time: 1.926807165145874\n", + "detect_scores: Nikolái Gógol was a renowned Russian dramatist, n\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011174917221069336\n", + "detect_scores: The World Series, which is the annual championshi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008105993270874023\n", + "detect_scores: The character Simon Birch is played by actor Fore\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010819435119628906\n", + "detect_scores: In the United Kingdom, there are three main langu\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01656818389892578\n", + "detect_scores: In Jamaica, the primary language spoken is Englis\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006152153015136719\n", + "detect_scores: Wayne Gretzky's first professional hockey team wa\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5881-5886: ` sail`\n", + "Group 2 found at 5886-5891: ` sail`\n", + "Group 3 found at 5886-5891: ` sail`\n", + "\n", + "Group 1 found at 9688-9695: `stress `\n", + "Group 2 found at 9695-9702: `stress `\n", + "Group 3 found at 9695-9702: `stress `\n", + "\n", + "Group 1 found at 10520-10531: `ant contest`\n", + "Group 2 found at 10531-10542: `ant contest`\n", + "Group 3 found at 10531-10542: `ant contest`\n", + "(0, 46, 46)\n", + "detect_scores time: 1.8450889587402344\n", + "detect_scores: As of my last update in April 2023, Pedro Castill\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0017809867858886719\n", + "detect_scores: Jerry Garcia, best known as a member and leader f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.024396896362304688\n", + "detect_scores: Leonardo di ser Piero da Vinci, commonly known as\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004504680633544922\n", + "detect_scores: Rihanna, born as Robyn Rachel Fenty on February 2\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003824949264526367\n", + "detect_scores: J.R.R. Tolkien, the famous author of \"The Hobbit\"\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2750-2757: ` stable`\n", + "Group 2 found at 2757-2764: ` stable`\n", + "Group 3 found at 2757-2764: ` stable`\n", + "(0, 14, 14)\n", + "detect_scores time: 1.0682640075683594\n", + "detect_scores: Saint Louis University (SLU) is located in the ci\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0009720325469970703\n", + "detect_scores: Canada is a country with diverse religious belief\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005884885787963867\n", + "detect_scores: In Spain, the official and legal tender used for \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006063938140869141\n", + "detect_scores: Anders Celsius, the Swedish astronomer known for \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008216142654418945\n", + "detect_scores: France primarily accepts the Euro (€) as its offi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.018275022506713867\n", + "detect_scores: Massachusetts, particularly in its early colonial\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 2.002103090286255\n", + "detect_scores: Brazil operates under a federal presidential cons\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3231-3237: `s fini`\n", + "Group 2 found at 3237-3243: `s fini`\n", + "Group 3 found at 3237-3243: `s fini`\n", + "\n", + "Group 1 found at 6235-6244: `e schedul`\n", + "Group 2 found at 6244-6253: `e schedul`\n", + "Group 3 found at 6244-6253: `e schedul`\n", + "\n", + "Group 1 found at 7020-7031: `ation valid`\n", + "Group 2 found at 7031-7043: `ation valid `\n", + "Group 3 found at 7031-7042: `ation valid`\n", + "(0, 53, 53)\n", + "detect_scores time: 0.8322129249572754\n", + "detect_scores: Gregor Mendel lived during the 19th century, and \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012176036834716797\n", + "detect_scores: Laura Ingall Wilder, the author of \"Little House \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 11060-11072: `iasis Candid`\n", + "Group 2 found at 11072-11084: `iasis Candid`\n", + "Group 3 found at 11072-11084: `iasis Candid`\n", + "(0, 24, 24)\n", + "detect_scores time: 1.9568848609924316\n", + "detect_scores: Your current time zone can be determined by your \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.017699003219604492\n", + "detect_scores: In Norway, the primary language spoken is Norwegi\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004097938537597656\n", + "detect_scores: Singapore uses the Singdollar as its official cur\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003493070602416992\n", + "detect_scores: The Blackfeet Indians, also known as Amskapipikun\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006300926208496094\n", + "detect_scores: In the movie \"Prince of Thieves,\" which was relea\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0010082721710205078\n", + "detect_scores: Texas observes Central Standard Time (CST) during\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01643967628479004\n", + "detect_scores: Louis Armstrong was a renowned American trumpeter\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004183769226074219\n", + "detect_scores: Madonna, the stage name for American singer-songw\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00482177734375\n", + "detect_scores: Egypt is situated in the northeastern corner of A\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5842-5848: `fires `\n", + "Group 2 found at 5848-5854: `fires `\n", + "Group 3 found at 5848-5854: `fires `\n", + "\n", + "Group 1 found at 8145-8155: ` continent`\n", + "Group 2 found at 8155-8165: ` continent`\n", + "Group 3 found at 8155-8165: ` continent`\n", + "\n", + "Group 1 found at 8617-8625: `time any`\n", + "Group 2 found at 8625-8633: `time any`\n", + "Group 3 found at 8625-8633: `time any`\n", + "\n", + "Group 1 found at 8914-8921: `filled `\n", + "Group 2 found at 8921-8928: `filled `\n", + "Group 3 found at 8921-8928: `filled `\n", + "\n", + "Group 1 found at 9025-9036: ` successful`\n", + "Group 2 found at 9036-9047: ` successful`\n", + "Group 3 found at 9036-9047: ` successful`\n", + "\n", + "Group 1 found at 10991-11000: `solution `\n", + "Group 2 found at 11000-11009: `solution `\n", + "Group 3 found at 11000-11009: `solution `\n", + "(0, 102, 102)\n", + "detect_scores time: 2.1218690872192383\n", + "detect_scores: Richard Hammond is a well-known British televisio\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.031208038330078125\n", + "detect_scores: You would typically land at Charles de Gaulle Air\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0034742355346679688\n", + "detect_scores: Galileo made several significant discoveries that\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 18\n", + "----detect text repetitions----\n", + "(18, 0, 18)\n", + "detect_scores time: 1.6649398803710938\n", + "detect_scores: The character Tony Dinozzo, who is part of NCIS (\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0041561126708984375\n", + "detect_scores: Jesus, a central figure in Christianity and the s\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 13\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2809-2814: `e pur`\n", + "Group 2 found at 2814-2819: `e pur`\n", + "Group 3 found at 2814-2819: `e pur`\n", + "\n", + "Group 1 found at 6986-6994: ` journal`\n", + "Group 2 found at 6994-7002: ` journal`\n", + "Group 3 found at 6994-7002: ` journal`\n", + "(13, 26, 39)\n", + "detect_scores time: 1.612396001815796\n", + "detect_scores: The State Name for New York City, which serves as\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.021668195724487305\n", + "detect_scores: Portugal trades globally, engaging in commerce an\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013210058212280273\n", + "detect_scores: Brazil operates under a federal presidential cons\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016254186630249023\n", + "detect_scores: The Ancient Babylonian civilization primarily spo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008462905883789062\n", + "detect_scores: Wassily Kandinsky was a Russian-born abstract art\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009273052215576172\n", + "detect_scores: Cuba uses the Cuban Convertible Peso (CUC) and, s\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4937-4944: `linear `\n", + "Group 2 found at 4944-4951: `linear `\n", + "Group 3 found at 4944-4951: `linear `\n", + "\n", + "Group 1 found at 5875-5884: `body some`\n", + "Group 2 found at 5884-5893: `body some`\n", + "Group 3 found at 5884-5893: `body some`\n", + "\n", + "Group 1 found at 5930-5935: `here `\n", + "Group 2 found at 5935-5940: `here `\n", + "Group 3 found at 5935-5940: `here `\n", + "\n", + "Group 1 found at 5974-5979: `ever `\n", + "Group 2 found at 5979-5984: `ever `\n", + "Group 3 found at 5979-5984: `ever `\n", + "\n", + "Group 1 found at 8131-8137: `ed fac`\n", + "Group 2 found at 8137-8143: `ed fac`\n", + "Group 3 found at 8137-8143: `ed fac`\n", + "\n", + "Group 1 found at 8256-8267: `e coordinat`\n", + "Group 2 found at 8267-8278: `e coordinat`\n", + "Group 3 found at 8267-8278: `e coordinat`\n", + "\n", + "Group 1 found at 8991-8999: `s person`\n", + "Group 2 found at 8999-9008: `s person `\n", + "Group 3 found at 8999-9007: `s person`\n", + "\n", + "Group 1 found at 10587-10599: `electronics `\n", + "Group 2 found at 10599-10611: `electronics `\n", + "Group 3 found at 10599-10611: `electronics `\n", + "\n", + "Group 1 found at 11345-11353: `writing `\n", + "Group 2 found at 11353-11361: `writing `\n", + "Group 3 found at 11353-11361: `writing `\n", + "(0, 143, 143)\n", + "detect_scores time: 2.3328449726104736\n", + "detect_scores: Sweden primarily operates on Central European Tim\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.024658918380737305\n", + "detect_scores: Robert Downey Jr. has not served time in prison f\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.009401798248291016\n", + "detect_scores: Barack Obama earned a Bachelor of Arts (B.A.) deg\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.003434419631958008\n", + "detect_scores: God Shiva, also known as Mahadeva in Hinduism, re\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7782-7789: ` intent`\n", + "Group 2 found at 7789-7796: ` intent`\n", + "Group 3 found at 7789-7796: ` intent`\n", + "\n", + "Group 1 found at 9929-9934: `great`\n", + "Group 2 found at 9934-9939: `great`\n", + "Group 3 found at 9934-9939: `great`\n", + "\n", + "Group 1 found at 9951-9956: `great`\n", + "Group 2 found at 9956-9961: `great`\n", + "Group 3 found at 9956-9961: `great`\n", + "\n", + "Group 1 found at 10366-10376: ` continent`\n", + "Group 2 found at 10376-10386: ` continent`\n", + "Group 3 found at 10376-10386: ` continent`\n", + "(5, 54, 59)\n", + "detect_scores time: 2.040627956390381\n", + "detect_scores: Benjamin Franklin, one of the Founding Fathers of\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7275-7282: ` anchor`\n", + "Group 2 found at 7282-7289: ` anchor`\n", + "Group 3 found at 7282-7289: ` anchor`\n", + "\n", + "Group 1 found at 9475-9482: ` quiver`\n", + "Group 2 found at 9482-9489: ` quiver`\n", + "Group 3 found at 9482-9489: ` quiver`\n", + "\n", + "Group 1 found at 10129-10138: `er measur`\n", + "Group 2 found at 10138-10147: `er measur`\n", + "Group 3 found at 10138-10147: `er measur`\n", + "\n", + "Group 1 found at 10360-10366: `meter `\n", + "Group 2 found at 10366-10372: `meter `\n", + "Group 3 found at 10366-10372: `meter `\n", + "(5, 58, 63)\n", + "detect_scores time: 1.6601531505584717\n", + "detect_scores: The official currency used in Switzerland is call\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004136085510253906\n", + "detect_scores: The Milwaukee Brewers, known as such since their \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.02781510353088379\n", + "detect_scores: The Vice President who served alongside Bill Clin\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001699209213256836\n", + "detect_scores: The Los Angeles Kings won their first Stanley Cup\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 10128-10139: `s statistic`\n", + "Group 2 found at 10139-10150: `s statistic`\n", + "Group 3 found at 10139-10150: `s statistic`\n", + "\n", + "Group 1 found at 10617-10627: `dependent `\n", + "Group 2 found at 10627-10637: `dependent `\n", + "Group 3 found at 10627-10637: `dependent `\n", + "\n", + "Group 1 found at 10694-10705: `ses hypothe`\n", + "Group 2 found at 10705-10716: `ses hypothe`\n", + "Group 3 found at 10705-10716: `ses hypothe`\n", + "\n", + "Group 1 found at 11008-11018: `ons relati`\n", + "Group 2 found at 11018-11028: `ons relati`\n", + "Group 3 found at 11018-11028: `ons relati`\n", + "\n", + "Group 1 found at 11255-11262: `s photo`\n", + "Group 2 found at 11262-11269: `s photo`\n", + "Group 3 found at 11262-11269: `s photo`\n", + "\n", + "Group 1 found at 11657-11667: `magnetism `\n", + "Group 2 found at 11667-11677: `magnetism `\n", + "Group 3 found at 11667-11677: `magnetism `\n", + "(0, 118, 118)\n", + "detect_scores time: 2.5999197959899902\n", + "detect_scores: Egypt operates with its own currency, the Egyptia\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0027430057525634766\n", + "detect_scores: The St. Lawrence River flows into the Atlantic Oc\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0035750865936279297\n", + "detect_scores: William McKinley, the 25th President of the Unite\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01968216896057129\n", + "detect_scores: Darth Vader was portrayed by actor David Prowse, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00653529167175293\n", + "detect_scores: Kevin James attended Fordham University, where he\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005060911178588867\n", + "detect_scores: Auschwitz Concentration Camp, one of the most not\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01221609115600586\n", + "detect_scores: The Dominican Republic uses the Dominican Peso as\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.001840829849243164\n", + "detect_scores: In the Czech Republic, people speak Czech. It's a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0029408931732177734\n", + "detect_scores: William Shakespeare, the renowned English playwri\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8029-8039: `ment imple`\n", + "Group 2 found at 8039-8049: `ment imple`\n", + "Group 3 found at 8039-8049: `ment imple`\n", + "\n", + "Group 1 found at 9187-9192: ` term`\n", + "Group 2 found at 9192-9197: ` term`\n", + "Group 3 found at 9192-9197: ` term`\n", + "\n", + "Group 1 found at 9794-9800: ` lyric`\n", + "Group 2 found at 9800-9806: ` lyric`\n", + "Group 3 found at 9800-9806: ` lyric`\n", + "(0, 42, 42)\n", + "detect_scores time: 1.8835439682006836\n", + "detect_scores: Scott Fitzgerald attended the Princeton Universit\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.006636857986450195\n", + "detect_scores: Joan Crawford, the American actress known for her\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007148027420043945\n", + "detect_scores: Rob Kardashian attended Northwestern University, \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0021429061889648438\n", + "detect_scores: Allen Iverson won the NBA Most Valuable Player (M\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0018889904022216797\n", + "detect_scores: Harry S. Truman, the 33rd President of the United\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.016793012619018555\n", + "detect_scores: Utica, NY is located within Oneida County.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 2.9087066650390625e-05\n", + "detect_scores: Charles Babbage is often referred to as the \"fath\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.037034034729003906\n", + "detect_scores: In the animated television series \"King Julien,\" \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0006630420684814453\n", + "detect_scores: Rick Scott is an American businessman and politic\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00882577896118164\n", + "detect_scores: Diana Taurasi plays for the Phoenix Mercury in th\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00013184547424316406\n", + "detect_scores: In Canada, it is not just one individual who make\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5772-5783: `similarity `\n", + "Group 2 found at 5783-5794: `similarity `\n", + "Group 3 found at 5783-5794: `similarity `\n", + "\n", + "Group 1 found at 6118-6127: ` definite`\n", + "Group 2 found at 6127-6136: ` definite`\n", + "Group 3 found at 6127-6136: ` definite`\n", + "(0, 40, 40)\n", + "detect_scores time: 2.0771329402923584\n", + "detect_scores: Adam Morrison was selected in the 2006 NBA Draft \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0008440017700195312\n", + "detect_scores: Michael Jackson was an American singer, songwrite\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 4419-4427: ` speaker`\n", + "Group 2 found at 4427-4435: ` speaker`\n", + "Group 3 found at 4427-4435: ` speaker`\n", + "\n", + "Group 1 found at 5660-5666: `s file`\n", + "Group 2 found at 5666-5673: `s file `\n", + "Group 3 found at 5666-5672: `s file`\n", + "\n", + "Group 1 found at 6910-6920: `reference `\n", + "Group 2 found at 6920-6930: `reference `\n", + "Group 3 found at 6920-6930: `reference `\n", + "\n", + "Group 1 found at 8530-8541: `s privilege`\n", + "Group 2 found at 8541-8553: `s privilege `\n", + "Group 3 found at 8541-8552: `s privilege`\n", + "\n", + "Group 1 found at 9747-9752: `ash h`\n", + "Group 2 found at 9752-9757: `ash h`\n", + "Group 3 found at 9752-9757: `ash h`\n", + "\n", + "Group 1 found at 10195-10202: `fix pre`\n", + "Group 2 found at 10202-10209: `fix pre`\n", + "Group 3 found at 10202-10209: `fix pre`\n", + "(0, 96, 96)\n", + "detect_scores time: 2.0412399768829346\n", + "detect_scores: Maya Moore attended the University of Missouri, w\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.013669013977050781\n", + "detect_scores: The Los Angeles Dodgers most recently secured the\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00419306755065918\n", + "detect_scores: Robin Williams got married twice in his lifetime.\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6680-6687: `groups `\n", + "Group 2 found at 6687-6694: `groups `\n", + "Group 3 found at 6687-6694: `groups `\n", + "\n", + "Group 1 found at 7944-7949: `book `\n", + "Group 2 found at 7949-7954: `book `\n", + "Group 3 found at 7949-7954: `book `\n", + "(0, 24, 24)\n", + "detect_scores time: 2.197683811187744\n", + "detect_scores: Canada operates under a parliamentary democracy a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 2073-2081: `t presen`\n", + "Group 2 found at 2081-2089: `t presen`\n", + "Group 3 found at 2081-2089: `t presen`\n", + "\n", + "Group 1 found at 6765-6774: `nts insta`\n", + "Group 2 found at 6774-6783: `nts insta`\n", + "Group 3 found at 6774-6783: `nts insta`\n", + "\n", + "Group 1 found at 6889-6898: `forgotten`\n", + "Group 2 found at 6898-6907: `forgotten`\n", + "Group 3 found at 6898-6907: `forgotten`\n", + "\n", + "Group 1 found at 2150-2161: `tions itera`\n", + "Group 2 found at 2161-2172: `tions itera`\n", + "Group 3 found at 2161-2172: `tions itera`\n", + "\n", + "Group 1 found at 3607-3617: `cognition `\n", + "Group 2 found at 3617-3627: `cognition `\n", + "Group 3 found at 3617-3627: `cognition `\n", + "\n", + "Group 1 found at 4117-4122: `s sea`\n", + "Group 2 found at 4122-4128: `s sea `\n", + "Group 3 found at 4122-4127: `s sea`\n", + "\n", + "Group 1 found at 4187-4193: `s cave`\n", + "Group 2 found at 4193-4199: `s cave`\n", + "Group 3 found at 4193-4199: `s cave`\n", + "\n", + "Group 1 found at 5542-5549: `forever`\n", + "Group 2 found at 5549-5556: `forever`\n", + "Group 3 found at 5549-5556: `forever`\n", + "\n", + "Group 1 found at 5561-5567: `always`\n", + "Group 2 found at 5567-5573: `always`\n", + "Group 3 found at 5567-5573: `always`\n", + "\n", + "Group 1 found at 5623-5629: `morrow`\n", + "Group 2 found at 5629-5635: `morrow`\n", + "Group 3 found at 5629-5635: `morrow`\n", + "(46, 103, 149)\n", + "detect_scores time: 1.1216228008270264\n", + "detect_scores: The American Federation of Labor (AFL) was co-fou\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0012660026550292969\n", + "detect_scores: Diego Rivera, the famous Mexican painter known fo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004994869232177734\n", + "detect_scores: Switzerland primarily uses the Swiss Franc (CHF) \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004655122756958008\n", + "detect_scores: President John F. Kennedy, the 35th President of \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6925-6937: `s challenger`\n", + "Group 2 found at 6937-6950: `s challenger `\n", + "Group 3 found at 6937-6949: `s challenger`\n", + "\n", + "Group 1 found at 7362-7370: `s senior`\n", + "Group 2 found at 7370-7379: `s senior `\n", + "Group 3 found at 7370-7378: `s senior`\n", + "\n", + "Group 1 found at 7799-7804: `s bed`\n", + "Group 2 found at 7804-7809: `s bed`\n", + "Group 3 found at 7804-7809: `s bed`\n", + "\n", + "Group 1 found at 8218-8225: ` garden`\n", + "Group 2 found at 8225-8232: ` garden`\n", + "Group 3 found at 8225-8232: ` garden`\n", + "\n", + "Group 1 found at 9371-9376: ` lamp`\n", + "Group 2 found at 9376-9381: ` lamp`\n", + "Group 3 found at 9376-9381: ` lamp`\n", + "\n", + "Group 1 found at 9423-9429: `s gate`\n", + "Group 2 found at 9429-9435: `s gate`\n", + "Group 3 found at 9429-9435: `s gate`\n", + "\n", + "Group 1 found at 10628-10633: ` term`\n", + "Group 2 found at 10633-10638: ` term`\n", + "Group 3 found at 10633-10638: ` term`\n", + "(0, 98, 98)\n", + "detect_scores time: 2.140530824661255\n", + "detect_scores: Prophet Muhammad, known as the last messenger in \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.060404062271118164\n", + "detect_scores: Russia is a transcontinental nation spanning East\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 6021-6027: `s cave`\n", + "Group 2 found at 6027-6033: `s cave`\n", + "Group 3 found at 6027-6033: `s cave`\n", + "\n", + "Group 1 found at 7496-7504: `relation`\n", + "Group 2 found at 7505-7513: `relation`\n", + "Group 3 found at 7505-7513: `relation`\n", + "\n", + "Group 1 found at 7798-7806: `ability `\n", + "Group 2 found at 7806-7814: `ability `\n", + "Group 3 found at 7806-7814: `ability `\n", + "\n", + "Group 1 found at 8728-8733: ` pack`\n", + "Group 2 found at 8733-8738: ` pack`\n", + "Group 3 found at 8733-8738: ` pack`\n", + "\n", + "Group 1 found at 10702-10712: `thing some`\n", + "Group 2 found at 10712-10722: `thing some`\n", + "Group 3 found at 10712-10722: `thing some`\n", + "\n", + "Group 1 found at 10750-10755: `where`\n", + "Group 2 found at 10756-10761: `where`\n", + "Group 3 found at 10756-10761: `where`\n", + "(0, 86, 86)\n", + "detect_scores time: 1.962932825088501\n", + "detect_scores: Chris Rock was born on October 7, 1965, in Brookl\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.004616260528564453\n", + "detect_scores: The Toronto Maple Leafs most recently won their 1\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002489805221557617\n", + "detect_scores: Lola Bunny is a character from Warner Bros.' Loon\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.012416839599609375\n", + "detect_scores: As of my last update in April 2023, Kris Humphrie\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005805015563964844\n", + "detect_scores: John Franklin was a British explorer, and there a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011976957321166992\n", + "detect_scores: Sean Connery's final film role before his retirem\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.014201164245605469\n", + "detect_scores: Crabtree attended the University of Washington fo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01399993896484375\n", + "detect_scores: Fredrik Ljungberg, commonly known as \"Freddie,\" i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00514674186706543\n", + "detect_scores: As an AI developed by Microsoft, I don't have rea\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00937032699584961\n", + "detect_scores: John Adams, the second President of the United St\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 3271-3278: `essence`\n", + "Group 2 found at 3279-3286: `essence`\n", + "Group 3 found at 3279-3286: `essence`\n", + "\n", + "Group 1 found at 6175-6183: ` killing`\n", + "Group 2 found at 6183-6191: ` killing`\n", + "Group 3 found at 6183-6191: ` killing`\n", + "\n", + "Group 1 found at 6267-6277: `rs predato`\n", + "Group 2 found at 6277-6287: `rs predato`\n", + "Group 3 found at 6277-6287: `rs predato`\n", + "\n", + "Group 1 found at 6464-6471: ` heaven`\n", + "Group 2 found at 6471-6478: ` heaven`\n", + "Group 3 found at 6471-6478: ` heaven`\n", + "\n", + "Group 1 found at 6498-6504: `space `\n", + "Group 2 found at 6504-6510: `space `\n", + "Group 3 found at 6504-6510: `space `\n", + "\n", + "Group 1 found at 6696-6708: `ncorporeal i`\n", + "Group 2 found at 6708-6720: `ncorporeal i`\n", + "Group 3 found at 6708-6720: `ncorporeal i`\n", + "\n", + "Group 1 found at 7758-7769: ` resistance`\n", + "Group 2 found at 7769-7780: ` resistance`\n", + "Group 3 found at 7769-7780: ` resistance`\n", + "\n", + "Group 1 found at 7954-7962: `rs scala`\n", + "Group 2 found at 7962-7970: `rs scala`\n", + "Group 3 found at 7962-7970: `rs scala`\n", + "\n", + "Group 1 found at 8375-8381: `laces `\n", + "Group 2 found at 8381-8387: `laces `\n", + "Group 3 found at 8381-8387: `laces `\n", + "\n", + "Group 1 found at 8818-8826: `currant `\n", + "Group 2 found at 8826-8834: `currant `\n", + "Group 3 found at 8826-8834: `currant `\n", + "\n", + "Group 1 found at 9683-9688: `fish `\n", + "Group 2 found at 9688-9693: `fish `\n", + "Group 3 found at 9688-9693: `fish `\n", + "(0, 177, 177)\n", + "detect_scores time: 1.6308128833770752\n", + "detect_scores: Mike Fisher is a professional ice hockey player. \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.002482891082763672\n", + "detect_scores: Eduard Paolezzi, a renowned Scottish artist and s\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 26\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7211-7217: `notes `\n", + "Group 2 found at 7217-7223: `notes `\n", + "Group 3 found at 7217-7223: `notes `\n", + "\n", + "Group 1 found at 8524-8529: ` data`\n", + "Group 2 found at 8529-8534: ` data`\n", + "Group 3 found at 8529-8534: ` data`\n", + "(26, 22, 48)\n", + "detect_scores time: 1.8463311195373535\n", + "detect_scores: Joe Biden studied political science at the Univer\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0037949085235595703\n", + "detect_scores: Ohio is located in the Midwestern region of the U\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 5772-5782: `ers debugg`\n", + "Group 2 found at 5782-5792: `ers debugg`\n", + "Group 3 found at 5782-5792: `ers debugg`\n", + "\n", + "Group 1 found at 10477-10482: `s Map`\n", + "Group 2 found at 10482-10487: `s Map`\n", + "Group 3 found at 10482-10487: `s Map`\n", + "(0, 30, 30)\n", + "detect_scores time: 2.024380922317505\n", + "detect_scores: Kailua is not an \"island\" in the traditional sens\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007108926773071289\n", + "detect_scores: Whoopi Goldberg received her first Grammy Award i\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.028764963150024414\n", + "detect_scores: Thomas Jefferson, the third President of the Unit\n", + "----detect excessive whitespaces----\n", + "removed excessive whitespaces: 5\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 7230-7240: ` continent`\n", + "Group 2 found at 7240-7250: ` continent`\n", + "Group 3 found at 7240-7250: ` continent`\n", + "\n", + "Group 1 found at 8511-8519: ` immense`\n", + "Group 2 found at 8519-8527: ` immense`\n", + "Group 3 found at 8519-8527: ` immense`\n", + "\n", + "Group 1 found at 9457-9465: `servant `\n", + "Group 2 found at 9465-9473: `servant `\n", + "Group 3 found at 9465-9473: `servant `\n", + "(5, 52, 57)\n", + "detect_scores time: 1.90997314453125\n", + "detect_scores: In France, several religious traditions coexist a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "\n", + "Group 1 found at 8946-8951: ` cave`\n", + "Group 2 found at 8951-8956: ` cave`\n", + "Group 3 found at 8951-8956: ` cave`\n", + "(0, 10, 10)\n", + "detect_scores time: 2.0787620544433594\n", + "detect_scores: Manchester United, managed by Sir Alex Ferguson a\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00577998161315918\n", + "detect_scores: The primary timezone used throughout Japan is JST\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.00702214241027832\n", + "detect_scores: In the Czech Republic, the primary language spoke\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0026230812072753906\n", + "detect_scores: Tim Cook is the CEO of Apple Inc., and as such, h\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0030126571655273438\n", + "detect_scores: London operates in the Greenwich Mean Time (GMT) \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005815982818603516\n", + "detect_scores: Sheryl Crow was diagnosed with stage IIIC invasiv\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008344888687133789\n", + "detect_scores: Argentina currently operates under a presidential\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.024973154067993164\n", + "detect_scores: Fabio Capello is originally from Italy. He was bo\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.011509895324707031\n", + "detect_scores: Abraham Lincoln, the 16th President of the United\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.007668972015380859\n", + "detect_scores: John Steinbeck was greatly inspired by his own li\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.01798725128173828\n", + "detect_scores: Dwyane Wade, the former professional basketball p\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.005925178527832031\n", + "detect_scores: The Zambezia River flows eastward and empties its\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0068743228912353516\n", + "detect_scores: Before David Beckham joined LA Galaxy, he played \n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.025120973587036133\n", + "detect_scores: As of my knowledge cutoff in early 2023, Emmanuel\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.0074481964111328125\n", + "detect_scores: The Palace of Knossos is situated on the island o\n", + "----detect excessive whitespaces----\n", + "----detect text repetitions----\n", + "(0, 0, 0)\n", + "detect_scores time: 0.008005142211914062\n", + "CPU times: user 7min, sys: 699 ms, total: 7min\n", + "Wall time: 12min 43s\n" + ] + }, + { + "data": { + "text/plain": [ + "342.65062379837036" + ] + }, + "execution_count": 84, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "\n", + "longest_time = 0\n", + "df_v5 = df.copy()\n", + "df_v5[[\"newline_score\", \"repetition_score\", \"total_repetitions\"]] = df[\"answer\"].apply(\n", + " lambda x: detect_scores(detect_repetitions, x)\n", + ")\n", + "longest_time" + ] + }, + { + "cell_type": "code", + "execution_count": 85, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
token_countnewline_scorerepetition_scoretotal_repetitionsadjusted_precisionadjusted_recallword_countprecisionrecallf1
count1008.0000001008.0000001008.0000001008.0000001008.0000001008.0000001008.0000001008.0000001008.0000001008.000000
mean385.2470240.98809514.87698415.8650790.4273220.536768385.2470240.4577620.5669430.463820
std500.0550336.25713956.73701757.5139000.4038310.450413500.0550330.4203160.4584990.400647
min1.0000000.0000000.0000000.0000000.0000000.0000001.0000000.0000000.0000000.000000
25%92.0000000.0000000.0000000.0000000.0000000.00000092.0000000.0000000.0000000.000000
50%132.5000000.0000000.0000000.0000000.3333330.556836132.5000000.3818180.7500000.500000
75%263.0000000.0000000.0000000.0000001.0000001.000000263.0000001.0000001.0000000.861607
max1485.000000127.0000001492.0000001492.0000001.0000001.0000001485.0000001.0000001.0000001.000000
\n", + "
" + ], + "text/plain": [ + " token_count newline_score repetition_score total_repetitions \\\n", + "count 1008.000000 1008.000000 1008.000000 1008.000000 \n", + "mean 385.247024 0.988095 14.876984 15.865079 \n", + "std 500.055033 6.257139 56.737017 57.513900 \n", + "min 1.000000 0.000000 0.000000 0.000000 \n", + "25% 92.000000 0.000000 0.000000 0.000000 \n", + "50% 132.500000 0.000000 0.000000 0.000000 \n", + "75% 263.000000 0.000000 0.000000 0.000000 \n", + "max 1485.000000 127.000000 1492.000000 1492.000000 \n", + "\n", + " adjusted_precision adjusted_recall word_count precision \\\n", + "count 1008.000000 1008.000000 1008.000000 1008.000000 \n", + "mean 0.427322 0.536768 385.247024 0.457762 \n", + "std 0.403831 0.450413 500.055033 0.420316 \n", + "min 0.000000 0.000000 1.000000 0.000000 \n", + "25% 0.000000 0.000000 92.000000 0.000000 \n", + "50% 0.333333 0.556836 132.500000 0.381818 \n", + "75% 1.000000 1.000000 263.000000 1.000000 \n", + "max 1.000000 1.000000 1485.000000 1.000000 \n", + "\n", + " recall f1 \n", + "count 1008.000000 1008.000000 \n", + "mean 0.566943 0.463820 \n", + "std 0.458499 0.400647 \n", + "min 0.000000 0.000000 \n", + "25% 0.000000 0.000000 \n", + "50% 0.750000 0.500000 \n", + "75% 1.000000 0.861607 \n", + "max 1.000000 1.000000 " + ] + }, + "execution_count": 85, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_v5.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 97, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/var/folders/7x/56svhln929zdh2xhr3mwqg4r0000gn/T/ipykernel_49394/3922088151.py:36: FutureWarning: \n", + "\n", + "The `ci` parameter is deprecated. Use `errorbar=None` for the same effect.\n", + "\n", + " sns.barplot(x=\"group\", y=\"value\", hue=\"methods\", data=df_melted, ci=None)\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA0oAAAINCAYAAAAA8I+NAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAABogUlEQVR4nO3df3xP9f//8fvLZr9/mZ+j2YzJorBGfhUiIkyK1IpRJBRpYW+NDf3+IaVUiqkmq/x8yzt59zE0o8hGmRkZelspaTM/Nrbz/cOl17fXsc2m8drmdr1cXpeLc87zPM/jdbx2XrvvPM85FsMwDAEAAAAArGrYuwAAAAAAqGwISgAAAABgQlACAAAAABOCEgAAAACYEJQAAAAAwISgBAAAAAAmBCUAAAAAMCEoAQAAAICJo70LuNKKiop09OhReXp6ymKx2LscAAAAAHZiGIZOnjyphg0bqkaN0s8ZVfugdPToUfn7+9u7DAAAAACVxJEjR3TdddeV2qbaByVPT09JF3aGl5eXnasBAAAAYC+5ubny9/e3ZoTSVPug9NdwOy8vL4ISAAAAgDJdksPNHAAAAADAhKAEAAAAACYEJQAAAAAwqfbXKJWFYRg6f/68CgsL7V0KUCFq1qwpBwcHe5cBAABQZV3zQamgoEDZ2dk6ffq0vUsBKozFYtF1110nDw8Pe5cCAABQJV3TQamoqEgHDx6Ug4ODGjZsKCcnJx5KiyrPMAz99ttv+vnnnxUcHMyZJQAAgMtwTQelgoICFRUVyd/fX25ubvYuB6gwdevWVVZWls6dO0dQAgAAuAzczEFSjRrsBlQvnBkFAAD4Z0gIAAAAAGBCUAIAAAAAE4ISrrikpCRZLBb9+eefFd63xWLRypUrK7xfAAAAXNvsGpQ2bdqk/v37q2HDhiX+wpuenq4BAwbI29tb7u7uateunQ4fPnz1i0WZdOvWTRMnTrR3GQAAAMA/YtegdOrUKbVu3VpvvfVWscsPHDigLl26qEWLFkpKStKuXbsUExMjFxeXq1wpAAAAgGuJXYNSnz59NHv2bN19993FLp82bZr69u2rl156SW3btlXTpk01YMAA1atX7ypXWj1169ZNjz/+uCZOnKhatWqpfv36WrBggU6dOqURI0bI09NTzZo103/+8x/rOj/88IP69OkjDw8P1a9fXw899JB+//13SVJkZKQ2btyouXPnymKxyGKxKCsry7rujh07FBYWJjc3N3Xq1EkZGRk29cyfP19NmzaVk5OTrr/+en300Uc2yzMzM3XbbbfJxcVFN9xwg9avX2+zvKCgQOPHj5efn59cXFwUEBCg559/voL3GgAAAK4FlfYapaKiIn3xxRdq3ry5evfurXr16umWW2655PUo+fn5ys3NtXmhZIsXL1adOnX07bff6vHHH9djjz2mwYMHq1OnTvr+++/Vq1cvPfTQQzp9+rT+/PNP3X777Wrbtq22b9+uL7/8Ur/++quGDBkiSZo7d646duyoUaNGKTs7W9nZ2fL397dua9q0aXr11Ve1fft2OTo6auTIkdZlK1as0IQJE/TUU0/phx9+0KOPPqoRI0Zow4YNki58HgYNGiQnJydt27ZN77zzjqZMmWLzXt544w2tXr1an376qTIyMpSQkKDAwMArvxMBAABQ/RiVhCRjxYoV1uns7GxDkuHm5ma89tprxs6dO43nn3/esFgsRlJSUon9zJgxw5B00SsnJ+eitmfOnDH27NljnDlz5kq8pUqva9euRpcuXazT58+fN9zd3Y2HHnrIOu+v/4eUlBRj1qxZRq9evWz6OHLkiCHJyMjIsPY5YcIEmzYbNmwwJBn//e9/rfO++OILQ5J133fq1MkYNWqUzXqDBw82+vbtaxiGYaxbt85wdHQ0/ve//1mX/+c//7H53Dz++OPG7bffbhQVFV3mHqk+rvXPNgAAQHFycnJKzAZmlfqMkiSFh4frySefVJs2bTR16lT169dP77zzTonrRUdHKycnx/o6cuTI1Sq5Srrpppus/3ZwcFDt2rV14403WufVr19fknTs2DGlpaVpw4YN8vDwsL5atGgh6cL1ZOXZlp+fn7Vf6cJNOzp37mzTvnPnzkpPT7cu9/f3V8OGDa3LO3bsaNM+MjJSqampuv766/XEE0/oq6++uvQOAAAAAIrhaO8CSlKnTh05OjrqhhtusJkfEhKib775psT1nJ2d5ezsfKXLqzZq1qxpM22xWGzmWSwWSReCa15envr3768XX3zxon7+Cj5l3dbf+60ooaGhOnjwoP7zn//ov//9r4YMGaKePXvq888/r7BtAAAA4NpQaYOSk5OT2rVrd9EF//v27VNAQICdqrq2hYaGatmyZQoMDJSjY/EfHScnJxUWFpa775CQECUnJ2v48OHWecnJydagHBISoiNHjig7O9sayrZu3XpRP15eXrrvvvt033336d5779Wdd96pP/74Q76+vuWuCQAAANcuuwalvLw87d+/3zp98OBBpaamytfXV40bN9bTTz+t++67T7fddpu6d++uL7/8Uv/+97+VlJRkv6KvYePGjdOCBQt0//33a/LkyfL19dX+/fu1dOlSvf/++3JwcFBgYKC2bdumrKwseXh4lDmgPP300xoyZIjatm2rnj176t///reWL1+u//73v5Kknj17qnnz5ho+fLhefvll5ebmatq0aTZ9vPbaa/Lz81Pbtm1Vo0YNffbZZ2rQoIF8fHwqelcAAABYbbytq71LuKTd7aLsXcIljX+1v71LsGHXa5S2b9+utm3bqm3btpKkSZMmqW3btpo+fbok6e6779Y777yjl156STfeeKPef/99LVu2TF26dLFn2deshg0bKjk5WYWFherVq5duvPFGTZw4UT4+PqpR48JHKSoqSg4ODrrhhhtUt27dMj8ceODAgZo7d65eeeUVtWzZUu+++64WLVqkbt26SZJq1KihFStW6MyZM2rfvr0eeeQRPfvsszZ9eHp66qWXXlJYWJjatWunrKwsrV271lobAAAAUFYWwzAMexdxJeXm5srb21s5OTny8vKyWXb27FkdPHhQTZo04SG2qFb4bAMAcPVwRqliXI0zSqVlAzP+1A4AAAAAJgQlAAAAADAhKAEAAACACUEJAAAAAEwISgAAAABgQlACAAAAABOCEgAAAACYEJQAAAAAwISgBAAAAAAmjvYuoLK6+ekPr9q2drw87KptS5JiY2O1cuVKpaamXtXtXg1ZWVlq0qSJdu7cqTZt2pTYrlu3bmrTpo1ef/31q1YbAAAAqg7OKKHKioyM1MCBA23m+fv7Kzs7W61atZIkJSUlyWKx6M8//7Rpt3z5cs2aNesqVfrPPfHEE7r55pvl7OxcagAEAABAxSAooUKdO3fOrtt3cHBQgwYN5OhY+slSX19feXp6XqWqKsbIkSN133332bsMAACAawJBqYoqKirSSy+9pGbNmsnZ2VmNGzfWs88+K0maMmWKmjdvLjc3NwUFBSkmJuaSAWbhwoVq2bKlnJ2d5efnp/Hjx5epDovFovnz52vAgAFyd3e31rBq1SqFhobKxcVFQUFBiouL0/nz5y9ar0+fPnJ1dVVQUJA+//xzm76PHDmiIUOGyMfHR76+vgoPD1dWVpakC8MHFy9erFWrVslischisSgpKUlZWVmyWCxKTU1VVlaWunfvLkmqVauWLBaLIiMjJV0Yejdx4kTrtk6cOKFhw4apVq1acnNzU58+fZSZmWldHh8fLx8fH61bt04hISHy8PDQnXfeqezsbGubpKQktW/fXu7u7vLx8VHnzp116NChUvffvn37ZLFYtHfvXpv5c+bMUdOmTa3Tb7zxhsaNG6egoKBL/I8AAACgIhCUqqjo6Gi98MILiomJ0Z49e7RkyRLVr19fkuTp6an4+Hjt2bNHc+fO1YIFCzRnzpwS+5o/f77GjRun0aNHa/fu3Vq9erWaNWtW5lpiY2N19913a/fu3Ro5cqQ2b96sYcOGacKECdqzZ4/effddxcfHW0PUX2JiYnTPPfcoLS1NERERGjp0qNLT0yVdODPVu3dveXp6avPmzUpOTraGk4KCAkVFRWnIkCHWsJKdna1OnTrZ9O/v769ly5ZJkjIyMpSdna25c+cW+x4iIyO1fft2rV69WikpKTIMQ3379rUJmKdPn9Yrr7yijz76SJs2bdLhw4cVFRUlSTp//rwGDhyorl27ateuXUpJSdHo0aNlsVhK3XfNmzdXWFiYEhISbOYnJCTogQceKMPeBwAAwJXAzRyqoJMnT2ru3LmaN2+ehg8fLklq2rSpunTpIkl65plnrG0DAwMVFRWlpUuXavLkycX2N3v2bD311FOaMGGCdV67du3KXM8DDzygESNGWKdHjhypqVOnWmsLCgrSrFmzNHnyZM2YMcPabvDgwXrkkUckSbNmzdL69ev15ptv6u2331ZiYqKKior0/vvvW8PGokWL5OPjo6SkJPXq1Uuurq7Kz89XgwYNiq3LwcFBvr6+kqR69erJx8en2HaZmZlavXq1kpOTrWErISFB/v7+WrlypQYPHizpQnh75513rGd6xo8fr5kzZ0qScnNzlZOTo379+lmXh4SElGn/RUREaN68edZrpvbt26cdO3bo448/LtP6AAAAqHgEpSooPT1d+fn56tGjR7HLExMT9cYbb+jAgQPKy8vT+fPn5eXlVWzbY8eO6ejRoyX2VRZhYWE202lpaUpOTrY5g1RYWKizZ8/q9OnTcnNzkyR17NjRZr2OHTta78SXlpam/fv3X3Qd0dmzZ3XgwIHLrrU46enpcnR01C233GKdV7t2bV1//fXWM1yS5ObmZjMczs/PT8eOHZN04ZqnyMhI9e7dW3fccYd69uypIUOGyM/P75LbHzp0qKKiorR161Z16NBBCQkJCg0NVYsWLSrwXQIAAKA8GHpXBbm6upa4LCUlRREREerbt6/WrFmjnTt3atq0aSooKCh3X2Xl7u5uM52Xl6e4uDilpqZaX7t371ZmZqZcXFzK1GdeXp5uvvlmmz5SU1O1b98+uw1Jq1mzps20xWKRYRjW6UWLFiklJUWdOnVSYmKimjdvrq1bt16y3wYNGuj222/XkiVLJElLlixRRERExRYPAACAciEoVUHBwcFydXXV119/fdGyLVu2KCAgQNOmTVNYWJiCg4NLvaGAp6enAgMDi+3rcoWGhiojI0PNmjW76FWjxv//yJlDxNatW63D1UJDQ5WZmal69epd1Ie3t7ckycnJSYWFhaXW4uTkJEmltgsJCdH58+e1bds267zjx48rIyNDN9xwQ7nee9u2bRUdHa0tW7aoVatW1vBzKREREUpMTFRKSop++uknDR06tFzbBQAAQMUiKFVBLi4umjJliiZPnqwPP/xQBw4c0NatW/XBBx8oODhYhw8f1tKlS3XgwAG98cYbWrFiRan9xcbG6tVXX9Ubb7yhzMxMff/993rzzTcvu77p06frww8/VFxcnH788Uelp6dr6dKlNtdOSdJnn32mhQsXat++fZoxY4a+/fZb6932IiIiVKdOHYWHh2vz5s06ePCgkpKS9MQTT+jnn3+WdOH6q127dikjI0O///57sXf2CwgIkMVi0Zo1a/Tbb78pLy/vojbBwcEKDw/XqFGj9M033ygtLU0PPvigGjVqpPDw8DK954MHDyo6OlopKSk6dOiQvvrqK2VmZpb5OqVBgwbp5MmTeuyxx9S9e3c1bNjQZvn+/fuVmpqqX375RWfOnLGeYSvpTCEAAAD+Ga5RKsGOl4fZu4RSxcTEyNHRUdOnT9fRo0fl5+enMWPG6OGHH9aTTz6p8ePHKz8/X3fddZdiYmIUGxtbYl/Dhw/X2bNnNWfOHEVFRalOnTq69957L7u23r17a82aNZo5c6ZefPFF1axZUy1atLDeuOEvcXFxWrp0qcaOHSs/Pz998skn1jM4bm5u2rRpk6ZMmWINEY0aNVKPHj2s11uNGjVKSUlJCgsLU15enjZs2KDAwECbbTRq1EhxcXGaOnWqRowYoWHDhik+Pv6imhctWqQJEyaoX79+Kigo0G233aa1a9deNNyuJG5ubtq7d68WL16s48ePy8/PT+PGjdOjjz5apvU9PT3Vv39/ffrpp1q4cOFFyx955BFt3LjROt22bVtJFwKa+T0DAADgn7MYf7/IohrKzc2Vt7e3cnJyLrqhwdmzZ3Xw4EE1adKkzNfOoGJYLBatWLFCAwcOtHcp1RKfbQAArp6Nt3W1dwmXtLtdlL1LuKTxr/a/4tsoLRuYMfQOAAAAAEwISihRQkKCPDw8in21bNnS3uVVGS1btixxP5ofNAsAAIDKgWuUUKIBAwbYPFvo78p67U5JqvmITxtr164t9kYTklS/fv2rXA0AAADKgqCEEnl6el70wFeUX0BAgL1LAHCFVIXrEiSuTQCAy8HQOwAAAAAwISgBAAAAgAlBCQAAAABMCEoAAAAAYEJQAgAAAAAT7npXgsMzb7xq22o8ffdV25YkxcbGauXKlUpNTb2q270asrKy1KRJE+3cuVNt2rQpsV23bt3Upk0bvf7661etNgAAAFQdnFFClRUZGamBAwfazPP391d2drZatWolSUpKSpLFYtGff/5p02758uWaNWvWVar0n0lLS9P9998vf39/ubq6KiQkRHPnzrV3WQAAANUaZ5RQoc6dO/ePH0b7Tzg4OKhBgwaXbOfr63sVqqkYO3bsUL169fTxxx/L399fW7Zs0ejRo+Xg4KDx48fbuzwAAIBqiTNKVVRRUZFeeuklNWvWTM7OzmrcuLGeffZZSdKUKVPUvHlzubm5KSgoSDExMTp37lyp/S1cuFAtW7aUs7Oz/Pz8yvwLuMVi0fz58zVgwAC5u7tba1i1apVCQ0Pl4uKioKAgxcXF6fz58xet16dPH7m6uiooKEiff/65Td9HjhzRkCFD5OPjI19fX4WHhysrK0vSheGDixcv1qpVq2SxWGSxWJSUlKSsrCxZLBalpqYqKytL3bt3lyTVqlVLFotFkZGRki4MvZs4caJ1WydOnNCwYcNUq1Ytubm5qU+fPsrMzLQuj4+Pl4+Pj9atW6eQkBB5eHjozjvvVHZ2trVNUlKS2rdvL3d3d/n4+Khz5846dOhQqftv3759slgs2rt3r838OXPmqGnTppKkkSNHau7cueratauCgoL04IMPasSIEVq+fHkZ/ocAAABwOQhKVVR0dLReeOEFxcTEaM+ePVqyZInq168vSfL09FR8fLz27NmjuXPnasGCBZozZ06Jfc2fP1/jxo3T6NGjtXv3bq1evVrNmjUrcy2xsbG6++67tXv3bo0cOVKbN2/WsGHDNGHCBO3Zs0fvvvuu4uPjrSHqLzExMbrnnnuUlpamiIgIDR06VOnp6ZIunJnq3bu3PD09tXnzZiUnJ1vDSUFBgaKiojRkyBBrWMnOzlanTp1s+vf399eyZcskSRkZGcrOzi5xyFpkZKS2b9+u1atXKyUlRYZhqG/fvjYB8/Tp03rllVf00UcfadOmTTp8+LCioi487f78+fMaOHCgunbtql27diklJUWjR4+WxWIpdd81b95cYWFhSkhIsJmfkJCgBx54oMT1cnJyqtRZMQAAgKqGoXdV0MmTJzV37lzNmzdPw4cPlyQ1bdpUXbp0kSQ988wz1raBgYGKiorS0qVLNXny5GL7mz17tp566ilNmDDBOq9du3ZlrueBBx7QiBEjrNMjR47U1KlTrbUFBQVp1qxZmjx5smbMmGFtN3jwYD3yyCOSpFmzZmn9+vV688039fbbbysxMVFFRUV6//33rWFj0aJF8vHxUVJSknr16iVXV1fl5+eXONTOwcHBGibq1asnHx+fYttlZmZq9erVSk5OtoathIQE+fv7a+XKlRo8eLCkC+HtnXfesZ7pGT9+vGbOnClJys3NVU5Ojvr162ddHhISUqb9FxERoXnz5lmvmdq3b5927Nihjz/+uNj2W7ZsUWJior744osy9Q8AAIDyIyhVQenp6crPz1ePHj2KXZ6YmKg33nhDBw4cUF5ens6fPy8vL69i2x47dkxHjx4tsa+yCAsLs5lOS0tTcnKyzRmkwsJCnT17VqdPn5abm5skqWPHjjbrdezY0XonvrS0NO3fv1+enp42bc6ePasDBw5cdq3FSU9Pl6Ojo2655RbrvNq1a+v666+3nuGSJDc3N2sIkiQ/Pz8dO3ZM0oVrniIjI9W7d2/dcccd6tmzp4YMGSI/P79Lbn/o0KGKiorS1q1b1aFDByUkJCg0NFQtWrS4qO0PP/yg8PBwzZgxQ7169fonbxsAAAClYOhdFeTq6lrispSUFEVERKhv375as2aNdu7cqWnTpqmgoKDcfZWVu7u7zXReXp7i4uKUmppqfe3evVuZmZlycXEpU595eXm6+eabbfpITU3Vvn37Sh2SdiWZb1JhsVhkGIZ1etGiRUpJSVGnTp2UmJio5s2ba+vWrZfst0GDBrr99tu1ZMkSSdKSJUsUERFxUbs9e/aoR48eGj16tM1ZQwAAAFQ8glIVFBwcLFdXV3399dcXLduyZYsCAgI0bdo0hYWFKTg4uNQbCnh6eiowMLDYvi5XaGioMjIy1KxZs4teNWr8/4+cOURs3brVOlwtNDRUmZmZqlev3kV9eHt7S5KcnJxUWFhYai1OTk6SVGq7kJAQnT9/Xtu2bbPOO378uDIyMnTDDTeU6723bdtW0dHR2rJli1q1amUNP5cSERGhxMREpaSk6KefftLQoUNtlv/444/q3r27hg8fftG1XgAAAKh4BKUqyMXFRVOmTNHkyZP14Ycf6sCBA9q6das++OADBQcH6/Dhw1q6dKkOHDigN954QytWrCi1v9jYWL366qt64403lJmZqe+//15vvvnmZdc3ffp0ffjhh4qLi9OPP/6o9PR0LV269KKzIJ999pkWLlyoffv2acaMGfr222+td9uLiIhQnTp1FB4ers2bN+vgwYNKSkrSE088oZ9//lnSheuvdu3apYyMDP3+++/F3tkvICBAFotFa9as0W+//aa8vLyL2gQHBys8PFyjRo3SN998o7S0ND344INq1KiRwsPDy/SeDx48qOjoaKWkpOjQoUP66quvlJmZWebrlAYNGqSTJ0/qscceU/fu3dWwYUPrsh9++EHdu3dXr169NGnSJP3yyy/65Zdf9Ntvv5WpbwAAAJQf1yiVoPH03fYuoVQxMTFydHTU9OnTdfToUfn5+WnMmDF6+OGH9eSTT2r8+PHKz8/XXXfdpZiYGMXGxpbY1/Dhw3X27FnNmTNHUVFRqlOnju69997Lrq13795as2aNZs6cqRdffFE1a9ZUixYtrDdu+EtcXJyWLl2qsWPHys/PT5988on1DI6bm5s2bdqkKVOmWENEo0aN1KNHD+v1VqNGjVJSUpLCwsKUl5enDRs2KDAw0GYbjRo1UlxcnKZOnaoRI0Zo2LBhio+Pv6jmRYsWacKECerXr58KCgp02223ae3atWV+JpSbm5v27t2rxYsX6/jx4/Lz89O4ceP06KOPlml9T09P9e/fX59++qkWLlxos+zzzz/Xb7/9po8//tjmBg8BAQHW26UDAACgYlmMv19kUQ3l5ubK29tbOTk5F93Q4OzZszp48KCaNGlS5mtnUDEsFotWrFihgQMH2ruUaonPNnB1bLytq71LKJPd7aLsXcIljX+1v71LAC5bVTgWcBy4oLRsYMbQOwAAAAAwISihRAkJCfLw8Cj21bJlS3uXV2W0bNmyxP1oftAsAAAAKge7XqO0adMmvfzyy9qxY4eys7NLHYo1ZswYvfvuu5ozZ44mTpx4Veu8Vg0YMMDm2UJ/V9Zrd0pSzUd82li7dm2xN5qQpPr161/lagAAAFAWdg1Kp06dUuvWrTVy5EgNGjSoxHYrVqzQ1q1bbe4EhivP09Pzoge+ovwCAgLsXQIAAADKya5BqU+fPurTp0+pbf73v//p8ccf17p163TXXXddpcoAAAAAXMsq9e3Bi4qK9NBDD+npp58u8zUx+fn5ys/Pt07n5uZeqfIAAAAAVFOV+mYOL774ohwdHfXEE0+UeZ3nn39e3t7e1pe/v/8VrBAAAABAdVRpg9KOHTs0d+5cxcfHy2KxlHm96Oho5eTkWF9Hjhy5glUCAAAAqI4qbVDavHmzjh07psaNG8vR0VGOjo46dOiQnnrqKQUGBpa4nrOzs7y8vGxeAAAAAFAelfYapYceekg9e/a0mde7d2899NBDGjFixBXffuc3O1/xbfwl+fHkq7YtSYqNjdXKlSuVmpp6Vbd7NWRlZalJkybauXOn2rRpU2K7bt26qU2bNnr99devWm0AAACoOuwalPLy8rR//37r9MGDB5WamipfX181btxYtWvXtmlfs2ZNNWjQQNdff/3VLhWVUGRkpP7880+tXLnSOs/f31/Z2dmqU6eOJCkpKUndu3fXiRMn5OPjY223fPnyf/wsqKvl+PHjioiI0K5du3T8+HHVq1dP4eHheu655zhjCgAAcIXYNSht375d3bt3t05PmjRJkjR8+HDFx8fbqSr8E+fOnbNrAHFwcFCDBg0u2c7X1/cqVFMxatSoofDwcM2ePVt169bV/v37NW7cOP3xxx9asmSJvcsDAAColux6jVK3bt1kGMZFr5JCUlZWliZOnHhVa6ysioqK9NJLL6lZs2ZydnZW48aN9eyzz0qSpkyZoubNm8vNzU1BQUGKiYnRuXPnSu1v4cKFatmypZydneXn56fx48eXqQ6LxaL58+drwIABcnd3t9awatUqhYaGysXFRUFBQYqLi9P58+cvWq9Pnz5ydXVVUFCQPv/8c5u+jxw5oiFDhsjHx0e+vr4KDw9XVlaWpAvDBxcvXqxVq1bJYrHIYrEoKSlJWVlZslgsSk1NVVZWljWI16pVSxaLRZGRkZIufPb+/lk6ceKEhg0bplq1asnNzU19+vRRZmamdXl8fLx8fHy0bt06hYSEyMPDQ3feeaeys7OtbZKSktS+fXu5u7vLx8dHnTt31qFDh0rdf/v27ZPFYtHevXtt5s+ZM0dNmza11v7YY48pLCxMAQEB6tGjh8aOHavNmzeX4X8IAAAAl6PS3swBpYuOjtYLL7ygmJgY7dmzR0uWLFH9+vUlSZ6enoqPj9eePXs0d+5cLViwQHPmzCmxr/nz52vcuHEaPXq0du/erdWrV6tZs2ZlriU2NlZ33323du/erZEjR2rz5s0aNmyYJkyYoD179ujdd99VfHy8NUT9JSYmRvfcc4/S0tIUERGhoUOHKj09XdKFM1O9e/eWp6enNm/erOTkZGs4KSgoUFRUlIYMGWINK9nZ2erUqZNN//7+/lq2bJkkKSMjQ9nZ2Zo7d26x7yEyMlLbt2/X6tWrlZKSIsMw1LdvX5uAefr0ab3yyiv66KOPtGnTJh0+fFhRUVGSpPPnz2vgwIHq2rWrdu3apZSUFI0ePfqSd2xs3ry5wsLClJCQYDM/ISFBDzzwQLHrHD16VMuXL1fXrl1L7RsAAACXr9LezAElO3nypObOnat58+Zp+PDhkqSmTZuqS5cukqRnnnnG2jYwMFBRUVFaunSpJk+eXGx/s2fP1lNPPaUJEyZY57Vr167M9TzwwAM2N9gYOXKkpk6daq0tKChIs2bN0uTJkzVjxgxru8GDB+uRRx6RJM2aNUvr16/Xm2++qbfffluJiYkqKirS+++/bw0bixYtko+Pj5KSktSrVy+5uroqPz+/xKF2Dg4O1iF29erVs7lG6e8yMzO1evVqJScnW8NWQkKC/P39tXLlSg0ePFjShfD2zjvvWM/0jB8/XjNnzpR04cHGOTk56tevn3V5SEhImfZfRESE5s2bp1mzZkm6cJZpx44d+vjjj23a3X///Vq1apXOnDmj/v376/333y9T/wAAACg/zihVQenp6crPz1ePHj2KXZ6YmKjOnTurQYMG8vDw0DPPPKPDhw8X2/bYsWM6evRoiX2VRVhYmM10WlqaZs6cKQ8PD+tr1KhRys7O1unTp63tOnbsaLNex44drWeU0tLStH//fnl6elr78PX11dmzZ3XgwIHLrrU46enpcnR01C233GKdV7t2bV1//fXWeiTJzc3NGoIkyc/PT8eOHZN04ZqnyMhI9e7dW/3799fcuXNthuWVZujQocrKytLWrVslXQhpoaGhatGihU27OXPm6Pvvv9eqVat04MAB6zV9AAAAqHicUaqCXF1dS1yWkpKiiIgIxcXFqXfv3vL29tbSpUv16quvlruvsnJ3d7eZzsvLU1xcnAYNGnRRWxcXlzL1mZeXp5tvvvmiIWmSVLdu3csr9B8y36TCYrHIMAzr9KJFi/TEE0/oyy+/VGJiop555hmtX79eHTp0KLXfBg0a6Pbbb9eSJUvUoUMHLVmyRI899lix7Ro0aKAWLVrI19dXt956q2JiYuTn51cxbxAAAABWnFGqgoKDg+Xq6qqvv/76omVbtmxRQECApk2bprCwMAUHB5d6QwFPT08FBgYW29flCg0NVUZGhpo1a3bRq0aN//+R++sMyt+n/xquFhoaqszMTNWrV++iPry9vSVJTk5OKiwsLLUWJycnSSq1XUhIiM6fP69t27ZZ5x0/flwZGRm64YYbyvXe27Ztq+joaG3ZskWtWrUq813pIiIilJiYqJSUFP30008aOnRoqe2LiookSfn5+eWqDwAAAGXDGaUqyMXFRVOmTNHkyZPl5OSkzp0767ffftOPP/6o4OBgHT58WEuXLlW7du30xRdfaMWKFaX2FxsbqzFjxqhevXrq06ePTp48qeTkZD3++OOXVd/06dPVr18/NW7cWPfee69q1KihtLQ0/fDDD5o9e7a13WeffaawsDB16dJFCQkJ+vbbb/XBBx9IuhAcXn75ZYWHh2vmzJm67rrrdOjQIS1fvlyTJ0/Wddddp8DAQK1bt04ZGRmqXbu2NUD9XUBAgCwWi9asWaO+ffvK1dVVHh4eNm2Cg4MVHh6uUaNG6d1335Wnp6emTp2qRo0aKTw8vEzv+eDBg3rvvfc0YMAANWzYUBkZGcrMzNSwYcPKtP6gQYP02GOP6bHHHlP37t3VsGFD67K1a9fq119/Vbt27eTh4aEff/xRTz/9tDp37qzAwMAy9Q8AAIDyISiVIPnxZHuXUKqYmBg5Ojpq+vTpOnr0qPz8/DRmzBg9/PDDevLJJzV+/Hjl5+frrrvuUkxMjGJjY0vsa/jw4Tp79qzmzJmjqKgo1alTR/fee+9l19a7d2+tWbNGM2fO1IsvvqiaNWuqRYsW1hs3/CUuLk5Lly7V2LFj5efnp08++cR6BsfNzU2bNm3SlClTNGjQIJ08eVKNGjVSjx49rA9ZHTVqlJKSkhQWFqa8vDxt2LDhouDQqFEjxcXFaerUqRoxYoSGDRtW7O3nFy1apAkTJqhfv34qKCjQbbfdprVr15b5mVBubm7au3evFi9erOPHj8vPz0/jxo3To48+Wqb1PT091b9/f3366adauHChzTJXV1ctWLBATz75pPLz8+Xv769BgwZp6tSpZeobAAAA5Wcx/n6RRTWUm5srb29v5eTkWH/B/svZs2d18OBBNWnSpMzXzqBiWCwWrVixQgMHDrR3KdUSn23g6th4W9W4Tf/udlH2LuGSxr/a394lAJetKhwLOA5cUFo2MOMaJQAAAAAwISihRAkJCTa3+P77q2XLlvYur8po2bJlifuxuLv6AQAAwP64RgklGjBggM2zhf6urNfulKSaj/i0sXbtWp07d67YZfXr17/K1QAAAKAsCEookaenpzw9Pe1dRpUXEBBg7xIAAABQTgy9AwAAAAATghIAAAAAmBCUAAAAAMCEoAQAAAAAJgQlAAAAADDhrnfXoNjYWK1cuVKpqan2LqXCZWVlqUmTJtq5c6fatGlTYrtu3bqpTZs2ev31169abQDKp/Obne1dwiU9x9cocEVVheOAxLGguuJ/tQQbb+t61bbVddPGq7at6iQyMlJ//vmnVq5caZ3n7++v7Oxs1alTR5KUlJSk7t2768SJE/Lx8bG2W758+T9+FpQ9HD9+XK1bt9b//ve/i94TAAAAKg5D71ChSnqw6tXi4OCgBg0ayNGx9L8B+Pr6VslnRD388MO66aab7F0GAABAtUdQqqKKior00ksvqVmzZnJ2dlbjxo317LPPSpKmTJmi5s2by83NTUFBQYqJiblkgFm4cKFatmwpZ2dn+fn5afz48WWqw2KxaP78+RowYIDc3d2tNaxatUqhoaFycXFRUFCQ4uLidP78+YvW69Onj1xdXRUUFKTPP//cpu8jR45oyJAh8vHxka+vr8LDw5WVlSXpwvDBxYsXa9WqVbJYLLJYLEpKSlJWVpYsFotSU1OVlZWl7t27S5Jq1aoli8WiyMhISReG3k2cONG6rRMnTmjYsGGqVauW3Nzc1KdPH2VmZlqXx8fHy8fHR+vWrVNISIg8PDx05513Kjs729omKSlJ7du3l7u7u3x8fNS5c2cdOnSo1P23b98+WSwW7d2712b+nDlz1LRpU5t58+fP159//qmoqKhS+wQAAMA/R1CqoqKjo/XCCy8oJiZGe/bs0ZIlS1S/fn1Jkqenp+Lj47Vnzx7NnTtXCxYs0Jw5c0rsa/78+Ro3bpxGjx6t3bt3a/Xq1WrWrFmZa4mNjdXdd9+t3bt3a+TIkdq8ebOGDRumCRMmaM+ePXr33XcVHx9vDVF/iYmJ0T333KO0tDRFRERo6NChSk9Pl3ThzFTv3r3l6empzZs3Kzk52RpOCgoKFBUVpSFDhljDSnZ2tjp16mTTv7+/v5YtWyZJysjIUHZ2tubOnVvse4iMjNT27du1evVqpaSkyDAM9e3b1yZgnj59Wq+88oo++ugjbdq0SYcPH7aGlvPnz2vgwIHq2rWrdu3apZSUFI0ePVoWi6XUfde8eXOFhYUpISHBZn5CQoIeeOAB6/SePXs0c+ZMffjhh6pRgx9bAACAK41rlKqgkydPau7cuZo3b56GDx8uSWratKm6dOkiSXrmmWesbQMDAxUVFaWlS5dq8uTJxfY3e/ZsPfXUU5owYYJ1Xrt27cpczwMPPKARI0ZYp0eOHKmpU6daawsKCtKsWbM0efJkzZgxw9pu8ODBeuSRRyRJs2bN0vr16/Xmm2/q7bffVmJiooqKivT+++9bw8aiRYvk4+OjpKQk9erVS66ursrPz1eDBg2KrcvBwUG+vr6SpHr16pV4PU9mZqZWr16t5ORka9hKSEiQv7+/Vq5cqcGDB0u6EN7eeecd65me8ePHa+bMmZKk3Nxc5eTkqF+/ftblISEhZdp/ERERmjdvnmbNmiXpwlmmHTt26OOPP5Yk5efn6/7779fLL7+sxo0b66effipTvwAAALh8BKUqKD09Xfn5+erRo0exyxMTE/XGG2/owIEDysvL0/nz5+Xl5VVs22PHjuno0aMl9lUWYWFhNtNpaWlKTk62OYNUWFios2fP6vTp03Jzc5MkdezY0Wa9jh07Wu/El5aWpv379190HdHZs2d14MCBy661OOnp6XJ0dNQtt9xinVe7dm1df/311jNckuTm5mYzHM7Pz0/Hjh2TdOGap8jISPXu3Vt33HGHevbsqSFDhsjPz++S2x86dKiioqK0detWdejQQQkJCQoNDVWLFi0kXTh7GBISogcffLCi3jIAAAAugTE8VZCrq2uJy1JSUhQREaG+fftqzZo12rlzp6ZNm6aCgoJy91VW7u7uNtN5eXmKi4tTamqq9bV7925lZmbKxcWlTH3m5eXp5ptvtukjNTVV+/btsxmSdjWZ75JnsVhkGIZ1etGiRUpJSVGnTp2UmJio5s2ba+vWrZfst0GDBrr99tu1ZMkSSdKSJUsUERFhXf5///d/+uyzz+To6ChHR0drqK1Tp47NGToAAABUHM4oVUHBwcFydXXV119/bR269pctW7YoICBA06ZNs84r7YYCnp6eCgwM1Ndff2298cE/FRoaqoyMjEte57R161YNGzbMZrpt27bWPhITE1WvXr0Sz4Y5OTmpsLCw1G04OTlJUqntQkJCdP78eW3bts069O748ePKyMjQDTfcUGr/Zm3btlXbtm0VHR2tjh07asmSJerQocMl14uIiNDkyZN1//3366efftLQoUOty5YtW6YzZ85Yp7/77jvrtWDmGz4AAACgYhCUqiAXFxdNmTJFkydPlpOTkzp37qzffvtNP/74o4KDg3X48GEtXbpU7dq10xdffKEVK1aU2l9sbKzGjBmjevXqqU+fPjp58qSSk5P1+OOPX1Z906dPV79+/dS4cWPde++9qlGjhtLS0vTDDz9o9uzZ1nafffaZwsLC1KVLFyUkJOjbb7/VBx98IOlCcHj55ZcVHh6umTNn6rrrrtOhQ4e0fPlyTZ48Wdddd50CAwO1bt06ZWRkqHbt2vL29r6oloCAAFksFq1Zs0Z9+/aVq6urPDw8bNoEBwcrPDxco0aN0rvvvitPT09NnTpVjRo1Unh4eJne88GDB/Xee+9pwIABatiwoTIyMpSZmWkTBEszaNAgPfbYY3rsscfUvXt3NWzY0LrMHIZ+//13SRcCHs9RAgAAuDIISiWo7A+BjYmJkaOjo6ZPn66jR4/Kz89PY8aM0cMPP6wnn3xS48ePV35+vu666y7FxMQoNja2xL6GDx+us2fPas6cOYqKilKdOnV07733XnZtvXv31po1azRz5ky9+OKLqlmzplq0aHHR2a+4uDgtXbpUY8eOlZ+fnz755BPrGRw3Nzdt2rRJU6ZM0aBBg3Ty5Ek1atRIPXr0sJ5hGjVqlJKSkhQWFqa8vDxt2LBBgYGBNtto1KiR4uLiNHXqVI0YMULDhg1TfHz8RTUvWrRIEyZMUL9+/VRQUKDbbrtNa9euLfNDad3c3LR3714tXrxYx48fl5+fn8aNG6dHH320TOt7enqqf//++vTTT7Vw4cIyrQMAAIArx2L8/SKLaig3N1fe3t7Kycm5aAjX2bNndfDgQTVp0qTM186gYlgsFq1YsUIDBw60dynVEp9tVAed3+xs7xIu6bnPqsbfG3e3q/zPXxv/an97l4BKqCocB6SqcSzgOHBBadnAjJs5AAAAAIAJQQklSkhIkIeHR7Gvli1b2ru8KqNly5Yl7kfzg2YBAABQOVT+84SwmwEDBtg8W+jvynrtTkmq+YhPG2vXrtW5c+eKXVa/fv2rXA0AAADKgqCEEnl6el70wFeUX0BAgL1LAC5yeOaN9i7h0mqVPnYcwD/DcQAoHUPvAAAAAMCEoAQAAAAAJgQlAAAAADAhKAEAAACACUEJAAAAAEwISteg2NhYtWnTxt5lXBFZWVmyWCxKTU0ttV23bt00ceLEq1ITAAAAqh5uD16CeU/9+6pta/yr/a/atqqTyMhI/fnnn1q5cqV1nr+/v7Kzs1WnTh1JUlJSkrp3764TJ07Ix8fH2m758uX/+FlQV5PFYrlo3ieffKKhQ4faoRoAAIDqj6CECnXu3Dm7BhAHBwc1aNDgku18fX2vQjUVa9GiRbrzzjut038PfgAAAKhYDL2rooqKivTSSy+pWbNmcnZ2VuPGjfXss89KkqZMmaLmzZvLzc1NQUFBiomJ0blz50rtb+HChWrZsqWcnZ3l5+en8ePHl6kOi8Wi+fPna8CAAXJ3d7fWsGrVKoWGhsrFxUVBQUGKi4vT+fPnL1qvT58+cnV1VVBQkD7//HObvo8cOaIhQ4bIx8dHvr6+Cg8PV1ZWlqQLwwcXL16sVatWyWKxyGKxKCkpyWboXVZWlrp37y5JqlWrliwWiyIjIyVdPPTuxIkTGjZsmGrVqiU3Nzf16dNHmZmZ1uXx8fHy8fHRunXrFBISIg8PD915553Kzs62tklKSlL79u3l7u4uHx8fde7cWYcOHSp1/+3bt08Wi0V79+61mT9nzhw1bdrUZp6Pj48aNGhgfbm4uJTaNwAAAC4fQamKio6O1gsvvKCYmBjt2bNHS5YsUf369SVJnp6eio+P1549ezR37lwtWLBAc+bMKbGv+fPna9y4cRo9erR2796t1atXq1mzZmWuJTY2Vnfffbd2796tkSNHavPmzRo2bJgmTJigPXv26N1331V8fLw1RP0lJiZG99xzj9LS0hQREaGhQ4cqPT1d0oUzU71795anp6c2b96s5ORkazgpKChQVFSUhgwZYg0r2dnZ6tSpk03//v7+WrZsmSQpIyND2dnZmjt3brHvITIyUtu3b9fq1auVkpIiwzDUt29fm4B5+vRpvfLKK/roo4+0adMmHT58WFFRUZKk8+fPa+DAgeratat27dqllJQUjR49utghc3/XvHlzhYWFKSEhwWZ+QkKCHnjgAZt548aNU506ddS+fXstXLhQhmGU2jcAAAAuH0PvqqCTJ09q7ty5mjdvnoYPHy5Jatq0qbp06SJJeuaZZ6xtAwMDFRUVpaVLl2ry5MnF9jd79mw99dRTmjBhgnVeu3btylzPAw88oBEjRlinR44cqalTp1prCwoK0qxZszR58mTNmDHD2m7w4MF65JFHJEmzZs3S+vXr9eabb+rtt99WYmKiioqK9P7771vDxqJFi+Tj46OkpCT16tVLrq6uys/PL3GonYODg3WIXb169UocqpaZmanVq1crOTnZGrYSEhLk7++vlStXavDgwZIuhLd33nnHeqZn/PjxmjlzpiQpNzdXOTk56tevn3V5SEhImfZfRESE5s2bp1mzZkm6cJZpx44d+vjjj61tZs6cqdtvv11ubm766quvNHbsWOXl5emJJ54o0zYAAABQPgSlKig9PV35+fnq0aNHscsTExP1xhtv6MCBA8rLy9P58+fl5eVVbNtjx47p6NGjJfZVFmFhYTbTaWlpSk5OtjmDVFhYqLNnz+r06dNyc3OTJHXs2NFmvY4dO1rvVpeWlqb9+/fL09PTps3Zs2d14MCBy661OOnp6XJ0dNQtt9xinVe7dm1df/311jNckuTm5mYzHM7Pz0/Hjh2TdOGap8jISPXu3Vt33HGHevbsqSFDhsjPz++S2x86dKiioqK0detWdejQQQkJCQoNDVWLFi2sbWJiYqz/btu2rU6dOqWXX36ZoAQAAHCF2HXo3aZNm9S/f381bNhQFovF5u5l586d05QpU3TjjTfK3d1dDRs21LBhw3T06FH7FVxJuLq6lrgsJSVFERER6tu3r9asWaOdO3dq2rRpKigoKHdfZeXu7m4znZeXp7i4OKWmplpfu3fvVmZmZpmvq8nLy9PNN99s00dqaqr27dt30ZC0q8V8kwqLxWIz/G3RokVKSUlRp06dlJiYqObNm2vr1q2X7LdBgwa6/fbbtWTJEknSkiVLFBERUeo6t9xyi37++Wfl5+dfxjsBAADApdg1KJ06dUqtW7fWW2+9ddGy06dP6/vvv1dMTIy+//57LV++XBkZGRowYIAdKq1cgoOD5erqqq+//vqiZVu2bFFAQICmTZumsLAwBQcHl3pDAU9PTwUGBhbb1+UKDQ1VRkaGmjVrdtGrRo3//5Ezh4itW7dah6uFhoYqMzNT9erVu6gPb29vSZKTk5MKCwtLrcXJyUmSSm0XEhKi8+fPa9u2bdZ5x48fV0ZGhm644YZyvfe2bdsqOjpaW7ZsUatWrazh51IiIiKUmJiolJQU/fTTT5e87Xdqaqpq1aolZ2fnctUHAACAsrHr0Ls+ffqoT58+xS7z9vbW+vXrbebNmzdP7du31+HDh9W4ceOrUWKl5OLioilTpmjy5MlycnJS586d9dtvv+nHH39UcHCwDh8+rKVLl6pdu3b64osvtGLFilL7i42N1ZgxY1SvXj316dNHJ0+eVHJysh5//PHLqm/69Onq16+fGjdurHvvvVc1atRQWlqafvjhB82ePdva7rPPPlNYWJi6dOmihIQEffvtt/rggw8kXQgOL7/8ssLDwzVz5kxdd911OnTokJYvX67JkyfruuuuU2BgoNatW6eMjAzVrl3bGqD+LiAgQBaLRWvWrFHfvn3l6uoqDw8PmzbBwcEKDw/XqFGj9O6778rT01NTp05Vo0aNFB4eXqb3fPDgQb333nsaMGCAGjZsqIyMDGVmZmrYsGFlWn/QoEF67LHH9Nhjj6l79+5q2LChddm///1v/frrr+rQoYNcXFy0fv16Pffcc9YbSQAAAKDiValrlHJycmSxWEp9fkx+fr7NcKTc3NzL2lZlfwhsTEyMHB0dNX36dB09elR+fn4aM2aMHn74YT355JMaP3688vPzdddddykmJkaxsbEl9jV8+HCdPXtWc+bMUVRUlOrUqaN77733smvr3bu31qxZo5kzZ+rFF19UzZo11aJFC+uNG/4SFxenpUuXauzYsfLz89Mnn3xiPYPj5uamTZs2acqUKRo0aJBOnjypRo0aqUePHtbrrUaNGqWkpCSFhYUpLy9PGzZsUGBgoM02GjVqpLi4OE2dOlUjRozQsGHDFB8ff1HNixYt0oQJE9SvXz8VFBTotttu09q1a8v8TCg3Nzft3btXixcv1vHjx+Xn56dx48bp0UcfLdP6np6e6t+/vz799FMtXLjQZlnNmjX11ltv6cknn5RhGGrWrJlee+01jRo1qkx9AwAAoPwsRiW5x7DFYtGKFSs0cODAYpefPXtWnTt3VosWLS66lfLfxcbGKi4u7qL5OTk5F93Q4OzZszp48KCaNGnCM2muskv9f+Of4bONSzk880Z7l3BJ99cq/iY0lclzn1WNvzfublf5z0BX9j9QVkccBypOVTgWcBy4IDc3V97e3sVmA7Mq8Rylc+fOaciQITIMQ/Pnzy+1bXR0tHJycqyvI0eOXKUqAQAAAFQXlT4o/RWSDh06pPXr118y+Tk7O8vLy8vmhcuTkJAgDw+PYl8tW7a0d3lVRsuWLUvcj6WdHQUAAID9VOrzhH+FpMzMTG3YsEG1a9e2d0nXlAEDBtg8W+jvynrtTkkqyYjPq2Lt2rU6d+5cscvq169/lasBAABAWdg1KOXl5Wn//v3W6YMHDyo1NVW+vr7y8/PTvffeq++//15r1qxRYWGhfvnlF0kXHu75122fceV4enpe9MBXlF9AQIC9SwAAAEA52TUobd++Xd27d7dOT5o0SdKFu7DFxsZq9erVkqQ2bdrYrLdhwwZ169atwuq4ls5u4NrAZxoAAOCfsWtQ6tatW6m/0F3pX/b+Gj52+vRpubq6XtFtAVdTQUGBJMnBwcHOlQAAAFRNlfoapSvNwcFBPj4+OnbsmKQLz8KxWCx2rgr4Z4qKivTbb7/Jzc1Njo7X9I84AADAZbvmf4tq0KCBJFnDElAd1KhRQ40bNyb4AwAAXKZrPihZLBb5+fmpXr16Jd6ZDKhqnJycVKNGpb/7PwAAQKV1zQelvzg4OHA9BwAAAABJVeCBswAAAABwtRGUAAAAAMCEoAQAAAAAJgQlAAAAADAhKAEAAACACUEJAAAAAEwISgAAAABgQlACAAAAABOCEgAAAACYEJQAAAAAwISgBAAAAAAmBCUAAAAAMCEoAQAAAIAJQQkAAAAATAhKAAAAAGBCUAIAAAAAE4ISAAAAAJgQlAAAAADAhKAEAAAAACYEJQAAAAAwISgBAAAAgAlBCQAAAABMCEoAAAAAYEJQAgAAAAATghIAAAAAmBCUAAAAAMCEoAQAAAAAJgQlAAAAADAhKAEAAACACUEJAAAAAEwISgAAAABgQlACAAAAABOCEgAAAACYEJQAAAAAwISgBAAAAAAmBCUAAAAAMCEoAQAAAIAJQQkAAAAATAhKAAAAAGBCUAIAAAAAE7sGpU2bNql///5q2LChLBaLVq5cabPcMAxNnz5dfn5+cnV1Vc+ePZWZmWmfYgEAAABcM+walE6dOqXWrVvrrbfeKnb5Sy+9pDfeeEPvvPOOtm3bJnd3d/Xu3Vtnz569ypUCAAAAuJY42nPjffr0UZ8+fYpdZhiGXn/9dT3zzDMKDw+XJH344YeqX7++Vq5cqaFDh17NUgEAAABcQyrtNUoHDx7UL7/8op49e1rneXt765ZbblFKSkqJ6+Xn5ys3N9fmBQAAAADlUWmD0i+//CJJql+/vs38+vXrW5cV5/nnn5e3t7f15e/vf0XrBAAAAFD9VNqgdLmio6OVk5NjfR05csTeJQEAAACoYiptUGrQoIEk6ddff7WZ/+uvv1qXFcfZ2VleXl42LwAAAAAoj0oblJo0aaIGDRro66+/ts7Lzc3Vtm3b1LFjRztWBgAAAKC6s+td7/Ly8rR//37r9MGDB5WamipfX181btxYEydO1OzZsxUcHKwmTZooJiZGDRs21MCBA+1XNAAAAIBqz65Bafv27erevbt1etKkSZKk4cOHKz4+XpMnT9apU6c0evRo/fnnn+rSpYu+/PJLubi42KtkAAAAANcAuwalbt26yTCMEpdbLBbNnDlTM2fOvIpVAQAAALjWVdprlAAAAADAXghKAAAAAGBCUAIAAAAAE4ISAAAAAJgQlAAAAADAhKAEAAAAACYEJQAAAAAwISgBAAAAgAlBCQAAAABMCEoAAAAAYEJQAgAAAAATghIAAAAAmBCUAAAAAMCEoAQAAAAAJgQlAAAAADAhKAEAAACACUEJAAAAAEwISgAAAABgQlACAAAAABOCEgAAAACYEJQAAAAAwISgBAAAAAAmBCUAAAAAMLnsoLR//36tW7dOZ86ckSQZhlFhRQEAAACAPZU7KB0/flw9e/ZU8+bN1bdvX2VnZ0uSHn74YT311FMVXiAAAAAAXG3lDkpPPvmkHB0ddfjwYbm5uVnn33ffffryyy8rtDgAAAAAsAfH8q7w1Vdfad26dbruuuts5gcHB+vQoUMVVhgAAAAA2Eu5zyidOnXK5kzSX/744w85OztXSFEAAAAAYE/lDkq33nqrPvzwQ+u0xWJRUVGRXnrpJXXv3r1CiwMAAAAAeyj30LuXXnpJPXr00Pbt21VQUKDJkyfrxx9/1B9//KHk5OQrUSMAAAAAXFXlPqPUqlUr7du3T126dFF4eLhOnTqlQYMGaefOnWratOmVqBEAAAAArqpyn1GSJG9vb02bNq2iawEAAACASqHcQWnTpk2lLr/tttsuuxgAAAAAqAzKHZS6det20TyLxWL9d2Fh4T8qCAAAAADsrdzXKJ04ccLmdezYMX355Zdq166dvvrqqytRIwAAAABcVeU+o+Tt7X3RvDvuuENOTk6aNGmSduzYUSGFAQAAAIC9lPuMUknq16+vjIyMiuoOAAAAAOym3GeUdu3aZTNtGIays7P1wgsvqE2bNhVVFwAAAADYTbmDUps2bWSxWGQYhs38Dh06aOHChRVWGAAAAADYS7mD0sGDB22ma9Soobp168rFxaXCigIAAAAAeyp3UAoICLgSdQAAAABApVGmoPTGG2+UucMnnnjisosBAAAAgMqgTEFpzpw5ZerMYrEQlAAAAABUeWUKSubrkgAAAACgOquw5ygBAAAAQHVR7ps5SNLPP/+s1atX6/DhwyooKLBZ9tprr1VIYZJUWFio2NhYffzxx/rll1/UsGFDRUZG6plnnpHFYqmw7QAAAADA35U7KH399dcaMGCAgoKCtHfvXrVq1UpZWVkyDEOhoaEVWtyLL76o+fPna/HixWrZsqW2b9+uESNGyNvbm2uhAAAAAFwx5R56Fx0draioKO3evVsuLi5atmyZjhw5oq5du2rw4MEVWtyWLVsUHh6uu+66S4GBgbr33nvVq1cvffvttxW6HQAAAAD4u3IHpfT0dA0bNkyS5OjoqDNnzsjDw0MzZ87Uiy++WKHFderUSV9//bX27dsnSUpLS9M333yjPn36lLhOfn6+cnNzbV4AAAAAUB7lHnrn7u5uvS7Jz89PBw4cUMuWLSVJv//+e4UWN3XqVOXm5qpFixZycHBQYWGhnn32WUVERJS4zvPPP6+4uLgKrQMAAADAtaXcQalDhw765ptvFBISor59++qpp57S7t27tXz5cnXo0KFCi/v000+VkJCgJUuWqGXLlkpNTdXEiRPVsGFDDR8+vNh1oqOjNWnSJOt0bm6u/P39K7QuAAAAANVbuYPSa6+9pry8PElSXFyc8vLylJiYqODg4Aq9450kPf3005o6daqGDh0qSbrxxht16NAhPf/88yUGJWdnZzk7O1doHQAAAACuLeUOSs8995wefPBBSReG4b3zzjsVXtRfTp8+rRo1bC+jcnBwUFFR0RXbJgAAAACU+2YOv/32m+688075+/vr6aefVlpa2pWoS5LUv39/Pfvss/riiy+UlZWlFStW6LXXXtPdd999xbYJAAAAAOUOSqtWrVJ2drZiYmL03XffKTQ0VC1bttRzzz2nrKysCi3uzTff1L333quxY8cqJCREUVFRevTRRzVr1qwK3Q4AAAAA/F25g5Ik1apVS6NHj1ZSUpIOHTqkyMhIffTRR2rWrFmFFufp6anXX39dhw4d0pkzZ3TgwAHNnj1bTk5OFbodAAAAAPi7ywpKfzl37py2b9+ubdu2KSsrS/Xr16+ougAAAADAbi4rKG3YsEGjRo1S/fr1FRkZKS8vL61Zs0Y///xzRdcHAAAAAFddue9616hRI/3xxx+688479d5776l///7cjhsAAABAtVLuoBQbG6vBgwfLx8fnCpQDAAAAAPZX7qA0atSoK1EHAAAAAFQa/+hmDgAAAABQHRGUAAAAAMCEoAQAAAAAJgQlAAAAADAhKAEAAACACUEJAAAAAEwISgAAAABgQlACAAAAABOCEgAAAACYEJQAAAAAwISgBAAAAAAmBCUAAAAAMCEoAQAAAIAJQQkAAAAATAhKAAAAAGBCUAIAAAAAE4ISAAAAAJgQlAAAAADAhKAEAAAAACYEJQAAAAAwISgBAAAAgAlBCQAAAABMCEoAAAAAYEJQAgAAAAATghIAAAAAmBCUAAAAAMCEoAQAAAAAJgQlAAAAADAhKAEAAACACUEJAAAAAEwISgAAAABgQlACAAAAABOCEgAAAACYEJQAAAAAwISgBAAAAAAmBCUAAAAAMCEoAQAAAIAJQQkAAAAATAhKAAAAAGBS6YPS//73Pz344IOqXbu2XF1ddeONN2r79u32LgsAAABANeZo7wJKc+LECXXu3Fndu3fXf/7zH9WtW1eZmZmqVauWvUsDAAAAUI1V6qD04osvyt/fX4sWLbLOa9KkiR0rAgAAAHAtqNRD71avXq2wsDANHjxY9erVU9u2bbVgwYJS18nPz1dubq7NCwAAAADKo1IHpZ9++knz589XcHCw1q1bp8cee0xPPPGEFi9eXOI6zz//vLy9va0vf3//q1gxAAAAgOqgUgeloqIihYaG6rnnnlPbtm01evRojRo1Su+8806J60RHRysnJ8f6OnLkyFWsGAAAAEB1UKmDkp+fn2644QabeSEhITp8+HCJ6zg7O8vLy8vmBQAAAADlUamDUufOnZWRkWEzb9++fQoICLBTRQAAAACuBZU6KD355JPaunWrnnvuOe3fv19LlizRe++9p3Hjxtm7NAAAAADVWKUOSu3atdOKFSv0ySefqFWrVpo1a5Zef/11RURE2Ls0AAAAANVYpX6OkiT169dP/fr1s3cZAAAAAK4hlfqMEgAAAADYA0EJAAAAAEwISgAAAABgQlACAAAAABOCEgAAAACYEJQAAAAAwISgBAAAAAAmBCUAAAAAMCEoAQAAAIAJQQkAAAAATAhKAAAAAGBCUAIAAAAAE4ISAAAAAJgQlAAAAADAhKAEAAAAACYEJQAAAAAwISgBAAAAgAlBCQAAAABMCEoAAAAAYEJQAgAAAAATghIAAAAAmBCUAAAAAMCEoAQAAAAAJgQlAAAAADAhKAEAAACACUEJAAAAAEwISgAAAABgQlACAAAAABOCEgAAAACYEJQAAAAAwISgBAAAAAAmBCUAAAAAMCEoAQAAAIAJQQkAAAAATAhKAAAAAGBCUAIAAAAAE4ISAAAAAJgQlAAAAADAhKAEAAAAACYEJQAAAAAwISgBAAAAgAlBCQAAAABMCEoAAAAAYEJQAgAAAAATghIAAAAAmFSpoPTCCy/IYrFo4sSJ9i4FAAAAQDVWZYLSd999p3fffVc33XSTvUsBAAAAUM1ViaCUl5eniIgILViwQLVq1bJ3OQAAAACquSoRlMaNG6e77rpLPXv2vGTb/Px85ebm2rwAAAAAoDwc7V3ApSxdulTff/+9vvvuuzK1f/755xUXF3eFqwIAAABQnVXqM0pHjhzRhAkTlJCQIBcXlzKtEx0drZycHOvryJEjV7hKAAAAANVNpT6jtGPHDh07dkyhoaHWeYWFhdq0aZPmzZun/Px8OTg42Kzj7OwsZ2fnq10qAAAAgGqkUgelHj16aPfu3TbzRowYoRYtWmjKlCkXhSQAAAAAqAiVOih5enqqVatWNvPc3d1Vu3bti+YDAAAAQEWp1NcoAQAAAIA9VOozSsVJSkqydwkAAAAAqjnOKAEAAACACUEJAAAAAEwISgAAAABgQlACAAAAABOCEgAAAACYEJQAAAAAwISgBAAAAAAmBCUAAAAAMCEoAQAAAIAJQQkAAAAATAhKAAAAAGBCUAIAAAAAE4ISAAAAAJgQlAAAAADAhKAEAAAAACYEJQAAAAAwISgBAAAAgAlBCQAAAABMCEoAAAAAYEJQAgAAAAATghIAAAAAmBCUAAAAAMCEoAQAAAAAJgQlAAAAADAhKAEAAACACUEJAAAAAEwISgAAAABgQlACAAAAABOCEgAAAACYEJQAAAAAwISgBAAAAAAmBCUAAAAAMCEoAQAAAIAJQQkAAAAATAhKAAAAAGBCUAIAAAAAE4ISAAAAAJgQlAAAAADAhKAEAAAAACYEJQAAAAAwISgBAAAAgAlBCQAAAABMCEoAAAAAYEJQAgAAAACTSh+Unn/+ebVr106enp6qV6+eBg4cqIyMDHuXBQAAAKAaq/RBaePGjRo3bpy2bt2q9evX69y5c+rVq5dOnTpl79IAAAAAVFOO9i7gUr788kub6fj4eNWrV087duzQbbfdZqeqAAAAAFRnlT4omeXk5EiSfH19i12en5+v/Px863Rubu5VqQsAAABA9VHph979XVFRkSZOnKjOnTurVatWxbZ5/vnn5e3tbX35+/tf5SoBAAAAVHVVKiiNGzdOP/zwg5YuXVpim+joaOXk5FhfR44cuYoVAgAAAKgOqszQu/Hjx2vNmjXatGmTrrvuuhLbOTs7y9nZ+SpWBgAAAKC6qfRByTAMPf7441qxYoWSkpLUpEkTe5cEAAAAoJqr9EFp3LhxWrJkiVatWiVPT0/98ssvkiRvb2+5urrauToAAAAA1VGlv0Zp/vz5ysnJUbdu3eTn52d9JSYm2rs0AAAAANVUpT+jZBiGvUsAAAAAcI2p9GeUAAAAAOBqIygBAAAAgAlBCQAAAABMCEoAAAAAYEJQAgAAAAATghIAAAAAmBCUAAAAAMCEoAQAAAAAJgQlAAAAADAhKAEAAACACUEJAAAAAEwISgAAAABgQlACAAAAABOCEgAAAACYEJQAAAAAwISgBAAAAAAmBCUAAAAAMCEoAQAAAIAJQQkAAAAATAhKAAAAAGBCUAIAAAAAE0d7FwBUVRtv62rvEi5pd7soe5dQJuNf7W/vEgAAAGxwRgkAAAAATAhKAAAAAGBCUAIAAAAAE4ISAAAAAJgQlAAAAADAhKAEAAAAACYEJQAAAAAwISgBAAAAgAlBCQAAAABMCEoAAAAAYEJQAgAAAAATghIAAAAAmBCUAAAAAMCEoAQAAAAAJgQlAAAAADAhKAEAAACACUEJAAAAAEwISgAAAABgQlACAAAAABNHexcAANXJzU9/aO8SymSFp70rAKq3qnAs4DgAlI4zSgAAAABgQlACAAAAABOCEgAAAACYVImg9NZbbykwMFAuLi665ZZb9O2339q7JAAAAADVWKUPSomJiZo0aZJmzJih77//Xq1bt1bv3r117Ngxe5cGAAAAoJqq9EHptdde06hRozRixAjdcMMNeuedd+Tm5qaFCxfauzQAAAAA1VSlvj14QUGBduzYoejoaOu8GjVqqGfPnkpJSSl2nfz8fOXn51unc3JyJEm5ublXtlhcc06dP2/vEi7pTP5pe5dQJtXp57Mw/4y9SyiTkzUL7V3CJZ0/U/l/xk5V/hIlVY1jQXU6DkhV41jAcaDiVIVjAccB220YhnHJthajLK3s5OjRo2rUqJG2bNmijh07WudPnjxZGzdu1LZt2y5aJzY2VnFxcVezTAAAAABVyJEjR3TdddeV2qZSn1G6HNHR0Zo0aZJ1uqioSH/88Ydq164ti8Vix8pgL7m5ufL399eRI0fk5eVl73IA2AnHAgAcB2AYhk6ePKmGDRtesm2lDkp16tSRg4ODfv31V5v5v/76qxo0aFDsOs7OznJ2draZ5+Pjc6VKRBXi5eXFQREAxwIAHAeucd7e3mVqV6lv5uDk5KSbb75ZX3/9tXVeUVGRvv76a5uheAAAAABQkSr1GSVJmjRpkoYPH66wsDC1b99er7/+uk6dOqURI0bYuzQAAAAA1VSlD0r33XeffvvtN02fPl2//PKL2rRpoy+//FL169e3d2moIpydnTVjxoyLhmQCuLZwLADAcQDlUanvegcAAAAA9lCpr1ECAAAAAHsgKAEAAACACUEJAAAAAEwISihVfHz8JZ9DFRkZqYEDB16VegBcewIDA/X666+X2iY2NlZt2rS5KvUAqDhV/XcIjk/VG0EJ/9jcuXMVHx9vne7WrZsmTpxot3oAVE0l/WHmu+++0+jRo63TFotFK1eutGkTFRVl88w9AJfvcr7Hq/t3P8ena1Olvz04Kr+yPt0YFaegoEBOTk72LgPXCHt/3urWrXvJNh4eHvLw8LgK1djHuXPnVLNmTXuXAVQq9j42SRyfqjvOKF2D1qxZIx8fHxUWFkqSUlNTZbFYNHXqVGubRx55RA8++KB1et26dQoJCZGHh4fuvPNOZWdnW5f9/bR5ZGSkNm7cqLlz58pischisSgrK0uS9MMPP6hPnz7y8PBQ/fr19dBDD+n333+39vP555/rxhtvlKurq2rXrq2ePXvq1KlTNtuIi4tT3bp15eXlpTFjxqigoMC6/pdffqkuXbrIx8dHtWvXVr9+/XTgwAGb9/7zzz/r/vvvl6+vr9zd3RUWFqZt27ZZl69atUqhoaFycXFRUFCQ4uLidP78+UvuU8MwFBsbq8aNG8vZ2VkNGzbUE088YV2en5+vKVOmyN/fX87OzmrWrJk++OAD6/KNGzeqffv2cnZ2lp+fn6ZOnWqz3W7dumn8+PGaOHGi6tSpo969e5dpnwKXo7jP26U+a3+tM378eHl7e6tOnTqKiYnR359AkZ+fr6ioKDVq1Eju7u665ZZblJSUJElKSkrSiBEjlJOTYz12xMbGSrId2hIYGChJuvvuu2WxWKzT5qEtRUVFmjlzpq677jo5Oztbn8H3l6ysLFksFi1fvlzdu3eXm5ubWrdurZSUlDLto0OHDql///6qVauW3N3d1bJlS61du9a6/Mcff1S/fv3k5eUlT09P3XrrrdbjUVlrS0xMVNeuXeXi4qKEhARJ0vvvv6+QkBC5uLioRYsWevvtt8tUL1BWJX2Pl/Y9VdI6hYWFevjhh9WkSRO5urrq+uuv19y5cy+7tsv9LqyOx6dLHYNQQQxcc/7880+jRo0axnfffWcYhmG8/vrrRp06dYxbbrnF2qZZs2bGggULjEWLFhk1a9Y0evbsaXz33XfGjh07jJCQEOOBBx6wth0+fLgRHh5u7btjx47GqFGjjOzsbCM7O9s4f/68ceLECaNu3bpGdHS0kZ6ebnz//ffGHXfcYXTv3t0wDMM4evSo4ejoaLz22mvGwYMHjV27dhlvvfWWcfLkSes2PDw8jPvuu8/44YcfjDVr1hh169Y1/vWvf1nr+Pzzz41ly5YZmZmZxs6dO43+/fsbN954o1FYWGgYhmGcPHnSCAoKMm699VZj8+bNRmZmppGYmGhs2bLFMAzD2LRpk+Hl5WXEx8cbBw4cML766isjMDDQiI2NveQ+/eyzzwwvLy9j7dq1xqFDh4xt27YZ7733nnX5kCFDDH9/f2P58uXGgQMHjP/+97/G0qVLDcMwjJ9//tlwc3Mzxo4da6SnpxsrVqww6tSpY8yYMcO6fteuXQ0PDw/j6aefNvbu3Wvs3bv3kvsUuFzmz9vWrVsv+Vn7a50JEyYYe/fuNT7++GPDzc3N5ufgkUceMTp16mRs2rTJ2L9/v/Hyyy8bzs7Oxr59+4z8/Hzj9ddfN7y8vKzHjr9+/gMCAow5c+YYhmEYx44dMyQZixYtMrKzs41jx44ZhmEYM2bMMFq3bm3d1muvvWZ4eXkZn3zyibF3715j8uTJRs2aNY19+/YZhmEYBw8eNCQZLVq0MNasWWNkZGQY9957rxEQEGCcO3fukvvorrvuMu644w5j165dxoEDB4x///vfxsaNGw3DuPAz7evrawwaNMj47rvvjIyMDGPhwoXG3r17y1VbYGCgsWzZMuOnn34yjh49anz88ceGn5+fdd6yZcsMX19fIz4+/jL/p4GLFfc9fqnvqZK++wsKCozp06cb3333nfHTTz9ZjwuJiYnW7f39d4hLudzvwup4fCrtGISKQ1C6RoWGhhovv/yyYRiGMXDgQOPZZ581nJycjJMnTxo///yzIcnYt2+fsWjRIkOSsX//fuu6b731llG/fn3rtPkg17VrV2PChAk225s1a5bRq1cvm3lHjhwxJBkZGRnGjh07DElGVlZWsfUOHz7c8PX1NU6dOmWdN3/+fMPDw8MahMx+++03Q5Kxe/duwzAM49133zU8PT2N48ePF9u+R48exnPPPWcz76OPPjL8/PyKbf93r776qtG8eXOjoKDgomUZGRmGJGP9+vXFrvuvf/3LuP76642ioiLrvLfeesvmvXXt2tVo27atzXqX2qfA5TJ/3sryWevatasREhJi8zmeMmWKERISYhiGYRw6dMhwcHAw/ve//9n006NHDyM6OtowDMNYtGiR4e3tfVE9f/9FxDAMQ5KxYsUKmzbmX0QaNmxoPPvsszZt2rVrZ4wdO9YwjP//i8j7779vXf7jjz8akoz09PTidouNG2+8scQ/okRHRxtNmjQp9nhQntpef/11mzZNmzY1lixZYjNv1qxZRseOHS9ZL1Ae5u/xsn5Pmb/7izNu3DjjnnvusU6XNyhdzndhdTw+lXYMQsVh6N01qmvXrkpKSpJhGNq8ebMGDRqkkJAQffPNN9q4caMaNmyo4OBgSZKbm5uaNm1qXdfPz0/Hjh0r1/bS0tK0YcMG6zhdDw8PtWjRQpJ04MABtW7dWj169NCNN96owYMHa8GCBTpx4oRNH61bt5abm5t1umPHjsrLy9ORI0ckSZmZmbr//vsVFBQkLy8v6ynvw4cPS7owxLBt27by9fUtscaZM2fa1Dhq1ChlZ2fr9OnTpb6/wYMH68yZMwoKCtKoUaO0YsUK65CE1NRUOTg4qGvXrsWum56ero4dO8pisVjnde7cWXl5efr555+t826++eZy7VPgn/j7562sn7UOHTrYfI47duyozMxMFRYWavfu3SosLFTz5s1t+tm4cWOFf15zc3N19OhRde7c2WZ+586dlZ6ebjPvpptusv7bz89Pksp0fHviiSc0e/Zsde7cWTNmzNCuXbusy1JTU3XrrbcWe01ReWoLCwuz/vvUqVM6cOCAHn74YZv9N3v2bH7eccWV9XuqOG+99ZZuvvlm1a1bVx4eHnrvvfes38uX43K/C6vb8am0YxAqDjdzuEZ169ZNCxcuVFpammrWrKkWLVqoW7duSkpK0okTJ2x+qTd/2VssFptxvWWRl5en/v3768UXX7xomZ+fnxwcHLR+/Xpt2bJFX331ld58801NmzZN27ZtU5MmTcq0jf79+ysgIEALFixQw4YNVVRUpFatWlmvY3J1db1kjXFxcRo0aNBFy1xcXEpd19/fXxkZGfrvf/+r9evXa+zYsXr55Ze1cePGS263rNzd3S+qt7R9CvwTf/+8VcRnLS8vTw4ODtqxY4ccHBxsltnzIue/H9/++iWqqKjokus98sgj6t27t7744gt99dVXev755/Xqq6/q8ccfvyI/83l5eZKkBQsW6JZbbrFpZ96fQGWxdOlSRUVF6dVXX1XHjh3l6empl19+2eba4PK6Et+FVfH4VNoxCBWHoHSNuvXWW3Xy5EnNmTPHGoq6deumF154QSdOnNBTTz112X07OTlZbxTxl9DQUC1btkyBgYFydCz+Y2exWNS5c2d17txZ06dPV0BAgFasWKFJkyZJuvBXozNnzlh/Cdm6das8PDzk7++v48ePKyMjQwsWLNCtt94qSfrmm29s+r/pppv0/vvv648//ij2rFJoaKgyMjLUrFmzy3rfrq6u6t+/v/r3769x48apRYsW2r17t2688UYVFRVp48aN6tmz50XrhYSEaNmyZTIMw3ogTE5Olqenp6677roSt1eWfQpUhLJ+1sy//GzdulXBwcFycHBQ27ZtVVhYqGPHjll/Rs2KO3YUp2bNmqW28/LyUsOGDZWcnGzzR5/k5GS1b9/+kv2Xlb+/v8aMGaMxY8YoOjpaCxYs0OOPP66bbrpJixcvLvZOdZdbW/369dWwYUP99NNPioiIqLD3ABTH/LNYlu+p4n5+k5OT1alTJ40dO9Y6r6LP0FzLx6eSjkGoOAy9u0bVqlVLN910kxISEtStWzdJ0m233abvv/9e+/btK3GYWFkEBgZq27ZtysrK0u+//66ioiKNGzdOf/zxh+6//3599913OnDggNatW6cRI0aosLBQ27Zt03PPPaft27fr8OHDWr58uX777TeFhIRY+y0oKNDDDz+sPXv2aO3atZoxY4bGjx+vGjVqqFatWqpdu7bee+897d+/X//3f/9nDVh/uf/++9WgQQMNHDhQycnJ+umnn7Rs2TLrXWSmT5+uDz/8UHFxcfrxxx+Vnp6upUuX6plnnrnke46Pj9cHH3ygH374QT/99JM+/vhjubq6KiAgQIGBgRo+fLhGjhyplStX6uDBg0pKStKnn34qSRo7dqyOHDmixx9/XHv37tWqVas0Y8YMTZo0STVqlPwjeql9ClSUsn7WDh8+rEmTJikjI0OffPKJ3nzzTU2YMEGS1Lx5c0VERGjYsGFavny5Dh48qG+//VbPP/+8vvjiC0kXjh15eXn6+uuv9fvvv5c45DUwMFBff/21fvnll4uG6P7l6aef1osvvqjExERlZGRo6tSpSk1NtdbzT02cOFHr1q3TwYMH9f3332vDhg3W49X48eOVm5uroUOHavv27crMzNRHH32kjIyMf1RbXFycnn/+eb3xxhvat2+fdu/erUWLFum1116rkPcE/MX8PV6W76nivvuDg4O1fft2rVu3Tvv27VNMTIy+++67Cq31Wj0+lXYMQgWy7yVSsKcJEyZcdOFy69atjQYNGlini7t4ccWKFcbfPzrmCzEzMjKMDh06GK6uroYk4+DBg4ZhGMa+ffuMu+++2/Dx8TFcXV2NFi1aGBMnTjSKioqMPXv2GL179zbq1q1rODs7G82bNzfefPPNi7Yxffp0o3bt2oaHh4cxatQo4+zZs9Y269evN0JCQgxnZ2fjpptuMpKSki66qDIrK8u45557DC8vL8PNzc0ICwsztm3bZl3+5ZdfGp06dTJcXV0NLy8vo3379jZ3xSnJihUrjFtuucXw8vIy3N3djQ4dOhj//e9/rcvPnDljPPnkk4afn5/h5ORkNGvWzFi4cKF1eVJSktGuXTvDycnJaNCggTFlyhSbO2+VdJFsafsUuFzFfd4u9Vnr2rWrMXbsWGPMmDGGl5eXUatWLeNf//qXzWfxrztgBQYGGjVr1jT8/PyMu+++29i1a5e1zZgxY4zatWsbkqx31DJfLL169WqjWbNmhqOjoxEQEGAYxsUXSxcWFhqxsbFGo0aNjJo1axqtW7c2/vOf/1iX/3Wx9M6dO63zTpw4YUgyNmzYcMl9NH78eKNp06aGs7OzUbduXeOhhx4yfv/9d+vytLQ0o1evXoabm5vh6elp3HrrrcaBAwcuu7a/JCQkGG3atDGcnJyMWrVqGbfddpuxfPnyS9YLlEdx3+OX+p4qbp2zZ88akZGRhre3t+Hj42M89thjxtSpU21+Vst7M4fL+S6sjsenSx2DUDEshlHOi00AO4iMjNSff/550dOuAVQO3bp1U5s2bazPEwGAyoLjEy4XQ+8AAAAAwISgBJRBQkKCzS1D//5q2bKlvcsDUMH69OlT4s/8c889Z+/ygGrn8OHDJf7MeXh4/KNbigOXi6F3QBmcPHlSv/76a7HLatasqYCAgKtcEYAr6X//+5/OnDlT7DJfX98Sn8cG4PKcP39eWVlZJS7nDq+wB4ISAAAAAJgw9A4AAAAATAhKAAAAAGBCUAIAAAAAE4ISAAAAAJgQlAAAAADAhKAEAKhWCgoK7F0CAKAaICgBACq1kydPKiIiQu7u7vLz89OcOXPUrVs3TZw4UdKF56vMmjVLw4YNk5eXl0aPHi1JWrZsmVq2bClnZ2cFBgbq1VdftenXYrFo5cqVNvN8fHwUHx8vScrKypLFYtHSpUvVqVMnubi4qFWrVtq4ceOVfssAgEqAoAQAqNQmTZqk5ORkrV69WuvXr9fmzZv1/fff27R55ZVX1Lp1a+3cuVMxMTHasWOHhgwZoqFDh2r37t2KjY1VTEyMNQSVx9NPP62nnnpKO3fuVMeOHdW/f38dP368gt4dAKCy4hHHAIBK6+TJk1q8eLGWLFmiHj16SJIWLVqkhg0b2rS7/fbb9dRTT1mnIyIi1KNHD8XExEiSmjdvrj179ujll19WZGRkuWoYP3687rnnHknS/Pnz9eWXX+qDDz7Q5MmT/8E7AwBUdpxRAgBUWj/99JPOnTun9u3bW+d5e3vr+uuvt2kXFhZmM52enq7OnTvbzOvcubMyMzNVWFhYrho6duxo/bejo6PCwsKUnp5erj4AAFUPQQkAUOW5u7uXex2LxSLDMGzmnTt3rqJKAgBUcQQlAEClFRQUpJo1a+q7776zzsvJydG+fftKXS8kJETJyck285KTk9W8eXM5ODhIkurWravs7Gzr8szMTJ0+ffqivrZu3Wr99/nz57Vjxw6FhIRc1vsBAFQdXKMEAKi0PD09NXz4cD399NPy9fVVvXr1NGPGDNWoUUMWi6XE9Z566im1a9dOs2bN0n333aeUlBTNmzdPb7/9trXN7bffrnnz5qljx44qLCzUlClTVLNmzYv6euuttxQcHKyQkBDNmTNHJ06c0MiRI6/I+wUAVB6cUQIAVGqvvfaaOnbsqH79+qlnz57q3LmzQkJC5OLiUuI6oaGh+vTTT7V06VK1atVK06dP18yZM21u5PDqq6/K399ft956qx544AFFRUXJzc3tor5eeOEFvfDCC2rdurW++eYbrV69WnXq1LkSbxUAUIlYDPMAbQAAKrFTp06pUaNGevXVV/Xwww9fse1kZWWpSZMm2rlzp9q0aXPFtgMAqJwYegcAqNR27typvXv3qn379srJydHMmTMlSeHh4XauDABQnRGUAACV3iuvvKKMjAw5OTnp5ptv1ubNmxn+BgC4ohh6BwAAAAAm3MwBAAAAAEwISgAAAABgQlACAAAAABOCEgAAAACYEJQAAAAAwISgBAAAAAAmBCUAAAAAMCEoAQAAAIAJQQkAAAAATP4fpIe11uhz7eEAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import seaborn as sns\n", + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Assuming df_v1, df_v2, df_v3, df_v4, df_v5 are your dataframes\n", + "dataframes = [df_v1, df_v2, df_v3, df_v4, df_v5]\n", + "df_names = [\"calc_repetitions_v1\", \"calc_repetitions_v2\", \"calc_repetitions_v3\", \"calc_repetitions_v4\", \"calc_repetitions_v5\"]\n", + "\n", + "# Define the columns you want to visualize\n", + "columns = [\"newline_score\", \"repetition_score\", \"total_repetitions\"]\n", + "newline_score = []\n", + "repetition_score = []\n", + "total_repetitions = []\n", + "\n", + "# For each dataframe\n", + "for i, df in enumerate(dataframes):\n", + " newline_score.append(df[\"newline_score\"].mean())\n", + " repetition_score.append(df[\"repetition_score\"].mean())\n", + " total_repetitions.append(df[\"total_repetitions\"].mean())\n", + "\n", + "# Create a DataFrame\n", + "df = pd.DataFrame(\n", + " {\n", + " \"methods\": df_names,\n", + " \"whitespace_score\": newline_score,\n", + " \"repetition_score\": repetition_score,\n", + " \"total_repetitions\": total_repetitions,\n", + " }\n", + ")\n", + "\n", + "# Reshape the data\n", + "df_melted = df.melt(id_vars=\"methods\", var_name=\"group\", value_name=\"value\")\n", + "\n", + "# Create the barplot\n", + "plt.figure(figsize=(10, 6))\n", + "sns.barplot(x=\"group\", y=\"value\", hue=\"methods\", data=df_melted, ci=None)\n", + "\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
groupvalue
0newline_score0.000000
1newline_score0.000000
2newline_score0.000000
3newline_score0.988095
4newline_score0.988095
5repetition_score0.277778
6repetition_score12.604167
7repetition_score13.163690
8repetition_score14.876984
9repetition_score14.876984
10total_repetitions0.277778
11total_repetitions12.604167
12total_repetitions13.163690
13total_repetitions15.865079
14total_repetitions15.865079
\n", + "
" + ], + "text/plain": [ + " group value\n", + "0 newline_score 0.000000\n", + "1 newline_score 0.000000\n", + "2 newline_score 0.000000\n", + "3 newline_score 0.988095\n", + "4 newline_score 0.988095\n", + "5 repetition_score 0.277778\n", + "6 repetition_score 12.604167\n", + "7 repetition_score 13.163690\n", + "8 repetition_score 14.876984\n", + "9 repetition_score 14.876984\n", + "10 total_repetitions 0.277778\n", + "11 total_repetitions 12.604167\n", + "12 total_repetitions 13.163690\n", + "13 total_repetitions 15.865079\n", + "14 total_repetitions 15.865079" + ] + }, + "execution_count": 92, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_melted" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "llmkg", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.9" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}