diff --git a/sentiment-network/Sentiment_Classification_Projects.ipynb b/sentiment-network/Sentiment_Classification_Projects.ipynb index 21addf4de5..7e56d299b3 100644 --- a/sentiment-network/Sentiment_Classification_Projects.ipynb +++ b/sentiment-network/Sentiment_Classification_Projects.ipynb @@ -77,6 +77,7 @@ "cell_type": "code", "execution_count": null, "metadata": { + "collapsed": true, "nbpresent": { "id": "eba2b193-0419-431e-8db9-60f34dd3fe83" } @@ -105,7 +106,9 @@ { "cell_type": "code", "execution_count": null, - "metadata": {}, + "metadata": { + "collapsed": true + }, "outputs": [], "source": [ "len(reviews)" @@ -115,6 +118,7 @@ "cell_type": "code", "execution_count": null, "metadata": { + "collapsed": true, "nbpresent": { "id": "bb95574b-21a0-4213-ae50-34363cf4f87f" } @@ -128,6 +132,7 @@ "cell_type": "code", "execution_count": null, "metadata": { + "collapsed": true, "nbpresent": { "id": "e0408810-c424-4ed4-afb9-1735e9ddbd0a" } @@ -148,6 +153,7 @@ "cell_type": "code", "execution_count": null, "metadata": { + "collapsed": true, "nbpresent": { "id": "e67a709f-234f-4493-bae6-4fb192141ee0" } @@ -196,7 +202,9 @@ { "cell_type": "code", "execution_count": null, - "metadata": {}, + "metadata": { + "collapsed": true + }, "outputs": [], "source": [ "# Create three Counter objects to store positive, negative and total counts\n", @@ -318,11 +326,9 @@ "\n", "To fix these issues, we'll convert all of our ratios to new values using logarithms.\n", "\n", - "**TODO:** Go through all the ratios you calculated and convert their values using the following formulas:\n", - "> * For any postive words, convert the ratio using `np.log(ratio)`\n", - "> * For any negative words, convert the ratio using `-np.log(1/(ratio + 0.01))`\n", + "**TODO:** Go through all the ratios you calculated and convert them to logarithms. (i.e. use `np.log(ratio)`)\n", "\n", - "That second equation may look strange, but what it's doing is dividing one by a very small number, which will produce a larger positive number. Then, it takes the `log` of that, which produces numbers similar to the ones for the postive words. Finally, we negate the values by adding that minus sign up front. In the end, extremely positive and extremely negative words will have positive-to-negative ratios with similar magnitudes but oppositite signs." + "In the end, extremely positive and extremely negative words will have positive-to-negative ratios with similar magnitudes but opposite signs." ] }, { @@ -415,7 +421,9 @@ { "cell_type": "code", "execution_count": null, - "metadata": {}, + "metadata": { + "collapsed": true + }, "outputs": [], "source": [ "from IPython.display import Image\n", @@ -428,7 +436,9 @@ { "cell_type": "code", "execution_count": null, - "metadata": {}, + "metadata": { + "collapsed": true + }, "outputs": [], "source": [ "review = \"The movie was excellent\"\n", @@ -448,7 +458,9 @@ { "cell_type": "code", "execution_count": null, - "metadata": {}, + "metadata": { + "collapsed": true + }, "outputs": [], "source": [ "# TODO: Create set named \"vocab\" containing all of the words from all of the reviews\n", @@ -484,7 +496,9 @@ { "cell_type": "code", "execution_count": 1, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -543,7 +557,9 @@ { "cell_type": "code", "execution_count": null, - "metadata": {}, + "metadata": { + "collapsed": true + }, "outputs": [], "source": [ "from IPython.display import Image\n", @@ -1082,7 +1098,9 @@ { "cell_type": "code", "execution_count": null, - "metadata": {}, + "metadata": { + "collapsed": true + }, "outputs": [], "source": [ "from IPython.display import Image\n", @@ -1854,7 +1872,7 @@ "metadata": { "anaconda-cloud": {}, "kernelspec": { - "display_name": "Python 3", + "display_name": "Python [default]", "language": "python", "name": "python3" }, @@ -1868,7 +1886,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.5.3" + "version": "3.5.2" } }, "nbformat": 4, diff --git a/sentiment-network/Sentiment_Classification_Solutions.ipynb b/sentiment-network/Sentiment_Classification_Solutions.ipynb index b9ac4ca1ee..2a066e96a9 100644 --- a/sentiment-network/Sentiment_Classification_Solutions.ipynb +++ b/sentiment-network/Sentiment_Classification_Solutions.ipynb @@ -77,6 +77,7 @@ "cell_type": "code", "execution_count": 1, "metadata": { + "collapsed": true, "nbpresent": { "id": "eba2b193-0419-431e-8db9-60f34dd3fe83" } @@ -105,7 +106,9 @@ { "cell_type": "code", "execution_count": 2, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -126,6 +129,7 @@ "cell_type": "code", "execution_count": 3, "metadata": { + "collapsed": false, "nbpresent": { "id": "bb95574b-21a0-4213-ae50-34363cf4f87f" } @@ -150,6 +154,7 @@ "cell_type": "code", "execution_count": 4, "metadata": { + "collapsed": false, "nbpresent": { "id": "e0408810-c424-4ed4-afb9-1735e9ddbd0a" } @@ -181,6 +186,7 @@ "cell_type": "code", "execution_count": 5, "metadata": { + "collapsed": false, "nbpresent": { "id": "e67a709f-234f-4493-bae6-4fb192141ee0" } @@ -225,7 +231,9 @@ { "cell_type": "code", "execution_count": 6, - "metadata": {}, + "metadata": { + "collapsed": true + }, "outputs": [], "source": [ "from collections import Counter\n", @@ -292,7 +300,9 @@ { "cell_type": "code", "execution_count": 9, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -1313,7 +1323,9 @@ { "cell_type": "code", "execution_count": 10, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -2344,7 +2356,9 @@ { "cell_type": "code", "execution_count": 11, - "metadata": {}, + "metadata": { + "collapsed": true + }, "outputs": [], "source": [ "pos_neg_ratios = Counter()\n", @@ -2367,7 +2381,9 @@ { "cell_type": "code", "execution_count": 12, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "name": "stdout", @@ -2402,11 +2418,9 @@ "\n", "To fix these issues, we'll convert all of our ratios to new values using logarithms.\n", "\n", - "**TODO:** Go through all the ratios you calculated and convert their values using the following formulas:\n", - "> * For any postive words, convert the ratio using `np.log(ratio)`\n", - "> * For any negative words, convert the ratio using `-np.log(1/(ratio + 0.01))`\n", + "**TODO:** Go through all the ratios you calculated and convert them to logarithms. (i.e. use `np.log(ratio)`)\n", "\n", - "That second equation may look strange, but what it's doing is dividing one by a very small number, which will produce a larger positive number. Then, it takes the `log` of that, which produces numbers similar to the ones for the postive words. Finally, we negate the values by adding that minus sign up front. In the end, extremely positive and extremely negative words will have positive-to-negative ratios with similar magnitudes but oppositite signs." + "In the end, extremely positive and extremely negative words will have positive-to-negative ratios with similar magnitudes but opposite signs." ] }, { @@ -2419,10 +2433,18 @@ "source": [ "# Convert ratios to logs\n", "for word,ratio in pos_neg_ratios.most_common():\n", - " if(ratio > 1):\n", - " pos_neg_ratios[word] = np.log(ratio)\n", - " else:\n", - " pos_neg_ratios[word] = -np.log((1 / (ratio+0.01)))" + " pos_neg_ratios[word] = np.log(ratio)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**NOTE:** In the video, Andrew uses the following formulas for the previous cell:\n", + "> * For any postive words, convert the ratio using `np.log(ratio)`\n", + "> * For any negative words, convert the ratio using `-np.log(1/(ratio + 0.01))`\n", + "\n", + "These won't give you the exact same results as the simpler code we show in this notebook, but the values will be similar. In case that second equation looks strange, here's what it's doing: First, it divides one by a very small number, which will produce a larger positive number. Then, it takes the `log` of that, which produces numbers similar to the ones for the postive words. Finally, it negates the values by adding that minus sign up front. The results are extremely positive and extremely negative words having positive-to-negative ratios with similar magnitudes but oppositite signs, just like when we use `np.log(ratio)`." ] }, { @@ -2435,7 +2457,9 @@ { "cell_type": "code", "execution_count": 14, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "name": "stdout", @@ -2443,7 +2467,7 @@ "text": [ "Pos-to-neg ratio for 'the' = 0.05902269426102881\n", "Pos-to-neg ratio for 'amazing' = 1.3919815802404802\n", - "Pos-to-neg ratio for 'terrible' = -1.6742829939664696\n" + "Pos-to-neg ratio for 'terrible' = -1.7291085042663878\n" ] } ], @@ -2471,7 +2495,9 @@ { "cell_type": "code", "execution_count": 15, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -3493,42 +3519,43 @@ "cell_type": "code", "execution_count": 16, "metadata": { + "collapsed": false, "scrolled": true }, "outputs": [ { "data": { "text/plain": [ - "[('boll', -4.0778152602708904),\n", - " ('uwe', -3.9218753018711578),\n", - " ('seagal', -3.3202501058581921),\n", - " ('unwatchable', -3.0269848170580955),\n", - " ('stinker', -2.9876839403711624),\n", - " ('mst', -2.7753833211707968),\n", - " ('incoherent', -2.7641396677532537),\n", - " ('unfunny', -2.5545257844967644),\n", - " ('waste', -2.4907515123361046),\n", - " ('blah', -2.4475792789485005),\n", - " ('horrid', -2.3715779644809971),\n", - " ('pointless', -2.3451073877136341),\n", - " ('atrocious', -2.3187369339642556),\n", - " ('redeeming', -2.2667790015910296),\n", - " ('prom', -2.2601040980178784),\n", - " ('drivel', -2.2476029585766928),\n", - " ('lousy', -2.2118080125207054),\n", - " ('worst', -2.1930856334332267),\n", - " ('laughable', -2.172468615469592),\n", - " ('awful', -2.1385076866397488),\n", - " ('poorly', -2.1326133844207011),\n", - " ('wasting', -2.1178155545614512),\n", - " ('remotely', -2.111046881095167),\n", - " ('existent', -2.0024805005437076),\n", - " ('boredom', -1.9241486572738005),\n", - " ('miserably', -1.9216610938019989),\n", - " ('sucks', -1.9166645809588516),\n", - " ('uninspired', -1.9131499212248517),\n", - " ('lame', -1.9117232884159072),\n", - " ('insult', -1.9085323769376259)]" + "[('boll', -4.9698132995760007),\n", + " ('uwe', -4.6249728132842707),\n", + " ('seagal', -3.6441435602725449),\n", + " ('unwatchable', -3.2580965380214821),\n", + " ('stinker', -3.2088254890146994),\n", + " ('mst', -2.9502698994772336),\n", + " ('incoherent', -2.9368917735310576),\n", + " ('unfunny', -2.6922395950755678),\n", + " ('waste', -2.6193845640165536),\n", + " ('blah', -2.5704288232261625),\n", + " ('horrid', -2.4849066497880004),\n", + " ('pointless', -2.4553061800117097),\n", + " ('atrocious', -2.4259083090260445),\n", + " ('redeeming', -2.3682390632154826),\n", + " ('prom', -2.3608540011180215),\n", + " ('drivel', -2.3470368555648795),\n", + " ('lousy', -2.3075726345050849),\n", + " ('worst', -2.2869878961803778),\n", + " ('laughable', -2.2643638801738479),\n", + " ('awful', -2.2271942470274348),\n", + " ('poorly', -2.2207550747464135),\n", + " ('wasting', -2.2046046846338418),\n", + " ('remotely', -2.1972245773362196),\n", + " ('existent', -2.0794415416798357),\n", + " ('boredom', -1.9951003932460849),\n", + " ('miserably', -1.9924301646902063),\n", + " ('sucks', -1.9870682215488209),\n", + " ('uninspired', -1.9832976811269336),\n", + " ('lame', -1.981767458946166),\n", + " ('insult', -1.9783454248084671)]" ] }, "execution_count": 16, @@ -3560,7 +3587,9 @@ { "cell_type": "code", "execution_count": 17, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -3585,7 +3614,9 @@ { "cell_type": "code", "execution_count": 18, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -3637,7 +3668,9 @@ { "cell_type": "code", "execution_count": 20, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "name": "stdout", @@ -3662,7 +3695,9 @@ { "cell_type": "code", "execution_count": 1, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -3709,7 +3744,9 @@ { "cell_type": "code", "execution_count": 22, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -3729,7 +3766,9 @@ { "cell_type": "code", "execution_count": 23, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -3758,1011 +3797,1013 @@ { "cell_type": "code", "execution_count": 24, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { "text/plain": [ "{'': 0,\n", - " 'newmail': 1,\n", - " 'reaganism': 2,\n", - " 'electrifying': 3,\n", - " 'warecki': 4,\n", - " 'hamilton': 5,\n", - " 'hearkens': 6,\n", - " 'nella': 7,\n", - " 'snort': 8,\n", - " 'imitation': 9,\n", - " 'cunda': 10,\n", - " 'ebon': 11,\n", - " 'weldon': 12,\n", - " 'lovable': 13,\n", - " 'wargaming': 14,\n", - " 'rivero': 15,\n", - " 'ackerman': 16,\n", - " 'emblem': 17,\n", - " 'pensacolians': 18,\n", - " 'stateside': 19,\n", - " 'mouthful': 20,\n", - " 'cheezy': 21,\n", - " 'retiring': 22,\n", - " 'teek': 23,\n", - " 'propagandized': 24,\n", - " 'trawling': 25,\n", - " 'prospers': 26,\n", - " 'clowes': 27,\n", - " 'evr': 28,\n", - " 'milennium': 29,\n", - " 'tranquillo': 30,\n", - " 'wipe': 31,\n", - " 'bogie': 32,\n", - " 'hither': 33,\n", - " 'camo': 34,\n", - " 'reaves': 35,\n", - " 'walled': 36,\n", - " 'hilcox': 37,\n", - " 'squaring': 38,\n", - " 'fp': 39,\n", - " 'gnashes': 40,\n", - " 'lunohod': 41,\n", - " 'allocated': 42,\n", - " 'bloodsucker': 43,\n", - " 'lama': 44,\n", - " 'roland': 45,\n", - " 'breathed': 46,\n", - " 'cucumbers': 47,\n", - " 'siam': 48,\n", - " 'martineau': 49,\n", - " 'phillipine': 50,\n", - " 'nominations': 51,\n", - " 'hepo': 52,\n", - " 'tabatabai': 53,\n", - " 'thine': 54,\n", - " 'hickland': 55,\n", - " 'absurd': 56,\n", - " 'scrub': 57,\n", - " 'opulent': 58,\n", - " 'horus': 59,\n", - " 'cundy': 60,\n", - " 'servings': 61,\n", - " 'baghdad': 62,\n", - " 'chandra': 63,\n", - " 'bie': 64,\n", - " 'lactating': 65,\n", - " 'suchet': 66,\n", - " 'tangibly': 67,\n", - " 'bundy': 68,\n", - " 'choirmaster': 69,\n", - " 'makepeace': 70,\n", - " 'dehavilland': 71,\n", - " 'ripiao': 72,\n", - " 'kennedys': 73,\n", - " 'manoeuvres': 74,\n", - " 'olaf': 75,\n", - " 'gravy': 76,\n", - " 'silicon': 77,\n", - " 'luckely': 78,\n", - " 'alcaine': 79,\n", - " 'karmically': 80,\n", - " 'pricing': 81,\n", - " 'guiseppe': 82,\n", - " 'morganbut': 83,\n", - " 'mythologies': 84,\n", - " 'tschaikowsky': 85,\n", - " 'reliefs': 86,\n", - " 'installations': 87,\n", - " 'plagued': 88,\n", - " 'interference': 89,\n", - " 'cinematicism': 90,\n", - " 'defininitive': 91,\n", - " 'willem': 92,\n", - " 'tooo': 93,\n", - " 'texas': 94,\n", - " 'respected': 95,\n", - " 'enables': 96,\n", - " 'kickers': 97,\n", - " 'beached': 98,\n", - " 'inferno': 99,\n", - " 'playoffs': 100,\n", - " 'lofaso': 101,\n", - " 'ministry': 102,\n", - " 'appalingly': 103,\n", - " 'daviau': 104,\n", - " 'adagio': 105,\n", - " 'eventless': 106,\n", - " 'abandoning': 107,\n", - " 'them': 108,\n", - " 'commercializing': 109,\n", - " 'circuitous': 110,\n", - " 'fozzie': 111,\n", - " 'lambaste': 112,\n", - " 'alicianne': 113,\n", - " 'instrument': 114,\n", - " 'androids': 115,\n", - " 'vahtang': 116,\n", - " 'scrapped': 117,\n", - " 'msg': 118,\n", - " 'overripe': 119,\n", - " 'orchestrates': 120,\n", - " 'mania': 121,\n", - " 'cristian': 122,\n", - " 'jackhammered': 123,\n", - " 'rehearsal': 124,\n", - " 'dm': 125,\n", - " 'volunteers': 126,\n", - " 'unfeeling': 127,\n", - " 'hirsute': 128,\n", - " 'frankly': 129,\n", - " 'chronically': 130,\n", - " 'sociology': 131,\n", - " 'dejas': 132,\n", - " 'allo': 133,\n", - " 'pffeifer': 134,\n", - " 'contravert': 135,\n", - " 'kidnapper': 136,\n", - " 'marissa': 137,\n", - " 'maclaughlin': 138,\n", - " 'maharashtrian': 139,\n", - " 'clothe': 140,\n", - " 'impale': 141,\n", - " 'spacewalk': 142,\n", - " 'cobbs': 143,\n", - " 'gonzo': 144,\n", - " 'rifles': 145,\n", - " 'flinstones': 146,\n", - " 'greco': 147,\n", - " 'eq': 148,\n", - " 'blaming': 149,\n", - " 'murdock': 150,\n", - " 'blackgood': 151,\n", - " 'watanabe': 152,\n", - " 'storybooks': 153,\n", - " 'bargearse': 154,\n", - " 'deservingly': 155,\n", - " 'rafe': 156,\n", - " 'lillian': 157,\n", - " 'cuter': 158,\n", - " 'brella': 159,\n", - " 'honeycombs': 160,\n", - " 'slowmo': 161,\n", - " 'chimeric': 162,\n", - " 'occupations': 163,\n", - " 'watchings': 164,\n", - " 'josephs': 165,\n", - " 'translation': 166,\n", - " 'storyline': 167,\n", - " 'sjholm': 168,\n", - " 'remade': 169,\n", - " 'rusty': 170,\n", - " 'angrezon': 171,\n", - " 'darlene': 172,\n", - " 'possesor': 173,\n", - " 'expertise': 174,\n", - " 'merlot': 175,\n", - " 'avert': 176,\n", - " 'rigger': 177,\n", - " 'topsoil': 178,\n", - " 'savelyeva': 179,\n", - " 'weakness': 180,\n", - " 'vegetarians': 181,\n", - " 'flirted': 182,\n", - " 'offside': 183,\n", - " 'rekindling': 184,\n", - " 'sired': 185,\n", - " 'blecher': 186,\n", - " 'artistry': 187,\n", - " 'att': 188,\n", - " 'pwnz': 189,\n", - " 'masonic': 190,\n", - " 'apalled': 191,\n", - " 'koala': 192,\n", - " 'commemorated': 193,\n", - " 'prayer': 194,\n", - " 'deasy': 195,\n", - " 'haje': 196,\n", - " 'calvados': 197,\n", - " 'sequined': 198,\n", - " 'euphemism': 199,\n", - " 'testaments': 200,\n", - " 'ozone': 201,\n", - " 'weta': 202,\n", - " 'vdb': 203,\n", - " 'emilia': 204,\n", - " 'lookalikes': 205,\n", - " 'idiosyncratic': 206,\n", - " 'yojimbo': 207,\n", - " 'besh': 208,\n", - " 'qualitatively': 209,\n", - " 'carly': 210,\n", - " 'cugat': 211,\n", - " 'indefinable': 212,\n", - " 'ritt': 213,\n", - " 'lawn': 214,\n", - " 'melandez': 215,\n", - " 'coats': 216,\n", - " 'vieg': 217,\n", - " 'bah': 218,\n", - " 'tet': 219,\n", - " 'dik': 220,\n", - " 'explicitly': 221,\n", - " 'concession': 222,\n", - " 'lax': 223,\n", - " 'tremell': 224,\n", - " 'atlantica': 225,\n", - " 'freezing': 226,\n", - " 'swordplay': 227,\n", - " 'runtime': 228,\n", - " 'chevette': 229,\n", - " 'covering': 230,\n", - " 'unpopulated': 231,\n", - " 'thunderdome': 232,\n", - " 'cheang': 233,\n", - " 'brio': 234,\n", - " 'mendezes': 235,\n", - " 'indicator': 236,\n", - " 'afrikanerdom': 237,\n", - " 'billboards': 238,\n", - " 'formalist': 239,\n", - " 'confuse': 240,\n", - " 'versifying': 241,\n", - " 'ebert': 242,\n", - " 'garages': 243,\n", - " 'erosive': 244,\n", - " 'swag': 245,\n", - " 'arrrrgh': 246,\n", - " 'urgently': 247,\n", - " 'lale': 248,\n", - " 'hardcore': 249,\n", - " 'westernized': 250,\n", - " 'strangles': 251,\n", - " 'bachelorette': 252,\n", - " 'litreture': 253,\n", - " 'offsprings': 254,\n", - " 'crudest': 255,\n", - " 'mores': 256,\n", - " 'unveiling': 257,\n", - " 'bisaya': 258,\n", - " 'amalio': 259,\n", - " 'orchestras': 260,\n", - " 'stumbled': 261,\n", - " 'straw': 262,\n", - " 'dnd': 263,\n", - " 'detailed': 264,\n", - " 'bullfrogs': 265,\n", - " 'chooses': 266,\n", - " 'darko': 267,\n", - " 'bearings': 268,\n", - " 'squadders': 269,\n", - " 'moriarty': 270,\n", - " 'intuitive': 271,\n", - " 'inculpate': 272,\n", - " 'barbaric': 273,\n", - " 'ladyhawk': 274,\n", - " 'trench': 275,\n", - " 'yoshitsune': 276,\n", - " 'jinks': 277,\n", - " 'reichdeutch': 278,\n", - " 'piloting': 279,\n", - " 'sherrys': 280,\n", - " 'schiller': 281,\n", - " 'rosetti': 282,\n", - " 'wilton': 283,\n", - " 'ber': 284,\n", - " 'posit': 285,\n", - " 'babar': 286,\n", - " 'eleanor': 287,\n", - " 'soaring': 288,\n", - " 'dirossario': 289,\n", - " 'liquidates': 290,\n", - " 'syria': 291,\n", - " 'abstract': 292,\n", - " 'gonorrhea': 293,\n", - " 'kolker': 294,\n", - " 'steady': 295,\n", - " 'ontario': 296,\n", - " 'metafiction': 297,\n", - " 'thinnes': 298,\n", - " 'shart': 299,\n", - " 'nishaabd': 300,\n", - " 'percolated': 301,\n", - " 'intercedes': 302,\n", - " 'ambrosine': 303,\n", - " 'flimsiest': 304,\n", - " 'testicle': 305,\n", - " 'molly': 306,\n", - " 'grudging': 307,\n", - " 'platform': 308,\n", - " 'vining': 309,\n", - " 'handcuff': 310,\n", - " 'balthazar': 311,\n", - " 'britons': 312,\n", - " 'leans': 313,\n", - " 'hotter': 314,\n", - " 'stamping': 315,\n", - " 'evangelism': 316,\n", - " 'evolutions': 317,\n", - " 'eek': 318,\n", - " 'mohawk': 319,\n", - " 'wetters': 320,\n", - " 'mcgillis': 321,\n", - " 'mongolia': 322,\n", - " 'paramount': 323,\n", - " 'unspools': 324,\n", - " 'realllyyyy': 325,\n", - " 'dosen': 326,\n", - " 'noisy': 327,\n", - " 'bohemia': 328,\n", - " 'jembs': 329,\n", - " 'misrepresent': 330,\n", - " 'yorkers': 331,\n", - " 'ernst': 332,\n", - " 'ccxs': 333,\n", - " 'raho': 334,\n", - " 'kananga': 335,\n", - " 'tormei': 336,\n", - " 'dai': 337,\n", - " 'river': 338,\n", - " 'shambolic': 339,\n", - " 'sahibjaan': 340,\n", - " 'gungans': 341,\n", - " 'nicki': 342,\n", - " 'assets': 343,\n", - " 'dredged': 344,\n", - " 'gorging': 345,\n", - " 'superdome': 346,\n", - " 'cuisine': 347,\n", - " 'slamdunk': 348,\n", - " 'herschell': 349,\n", - " 'penitentiaries': 350,\n", - " 'kwik': 351,\n", - " 'barc': 352,\n", - " 'declarations': 353,\n", - " 'cheese': 354,\n", - " 'cylon': 355,\n", - " 'arzner': 356,\n", - " 'karnstein': 357,\n", - " 'nobody': 358,\n", - " 'thread': 359,\n", - " 'wheelchair': 360,\n", - " 'omission': 361,\n", - " 'norrland': 362,\n", - " 'kajawari': 363,\n", - " 'langara': 364,\n", - " 'auxiliaries': 365,\n", - " 'sportage': 366,\n", - " 'grrrrrr': 367,\n", - " 'ergo': 368,\n", - " 'mens': 369,\n", - " 'bubbly': 370,\n", - " 'ising': 371,\n", - " 'profundity': 372,\n", - " 'hurrrts': 373,\n", - " 'bonnaire': 374,\n", - " 'stollen': 375,\n", - " 'galleons': 376,\n", - " 'puffinstuff': 377,\n", - " 'foxx': 378,\n", - " 'hobgobblins': 379,\n", - " 'serpent': 380,\n", - " 'roadkill': 381,\n", - " 'aaja': 382,\n", - " 'mescaline': 383,\n", - " 'howdoilooknyc': 384,\n", - " 'ludicrously': 385,\n", - " 'defintly': 386,\n", - " 'aesthete': 387,\n", - " 'enrapt': 388,\n", - " 'proog': 389,\n", - " 'dy': 390,\n", - " 'asesino': 391,\n", - " 'saraiva': 392,\n", - " 'mest': 393,\n", - " 'townfolks': 394,\n", - " 'oily': 395,\n", - " 'assumption': 396,\n", - " 'fermi': 397,\n", - " 'casel': 398,\n", - " 'tipsy': 399,\n", - " 'vasquez': 400,\n", - " 'sends': 401,\n", - " 'wednesday': 402,\n", - " 'mistiness': 403,\n", - " 'nonstop': 404,\n", - " 'mcphee': 405,\n", - " 'celi': 406,\n", - " 'jez': 407,\n", - " 'burl': 408,\n", - " 'launius': 409,\n", - " 'swordmen': 410,\n", - " 'natty': 411,\n", - " 'gunbelt': 412,\n", - " 'niellson': 413,\n", - " 'neva': 414,\n", - " 'cling': 415,\n", - " 'sarducci': 416,\n", - " 'private': 417,\n", - " 'blais': 418,\n", - " 'slumbering': 419,\n", - " 'drives': 420,\n", - " 'daisy': 421,\n", - " 'unmanaged': 422,\n", - " 'mccullums': 423,\n", - " 'nineteenth': 424,\n", - " 'zakariadze': 425,\n", - " 'lang': 426,\n", - " 'percentages': 427,\n", - " 'losvu': 428,\n", - " 'eerily': 429,\n", - " 'sixgun': 430,\n", - " 'caring': 431,\n", - " 'camille': 432,\n", - " 'oilmen': 433,\n", - " 'mres': 434,\n", - " 'spellbinding': 435,\n", - " 'linz': 436,\n", - " 'tsukamoto': 437,\n", - " 'passion': 438,\n", - " 'fraggle': 439,\n", - " 'battleship': 440,\n", - " 'balu': 441,\n", - " 'stroheim': 442,\n", - " 'moniker': 443,\n", - " 'remixes': 444,\n", - " 'babaji': 445,\n", - " 'leak': 446,\n", - " 'gridiron': 447,\n", - " 'hayek': 448,\n", - " 'superlatively': 449,\n", - " 'performancein': 450,\n", - " 'scoop': 451,\n", - " 'cauliflower': 452,\n", - " 'departs': 453,\n", - " 'proffered': 454,\n", - " 'enthralling': 455,\n", - " 'demerille': 456,\n", - " 'swirling': 457,\n", - " 'aneurism': 458,\n", - " 'knew': 459,\n", - " 'satish': 460,\n", - " 'throat': 461,\n", - " 'dumbing': 462,\n", - " 'devolves': 463,\n", - " 'lairs': 464,\n", - " 'thuy': 465,\n", - " 'farzetta': 466,\n", - " 'dancersand': 467,\n", - " 'bitty': 468,\n", - " 'mistake': 469,\n", - " 'chump': 470,\n", - " 'pocus': 471,\n", - " 'mrquez': 472,\n", - " 'wellbeing': 473,\n", - " 'corner': 474,\n", - " 'rockstars': 475,\n", - " 'heredity': 476,\n", - " 'flamingoes': 477,\n", - " 'slim': 478,\n", - " 'polled': 479,\n", - " 'reactionarythree': 480,\n", - " 'pushups': 481,\n", - " 'fm': 482,\n", - " 'channel': 483,\n", - " 'laurent': 484,\n", - " 'unchecked': 485,\n", - " 'bizarro': 486,\n", - " 'woebegone': 487,\n", - " 'marauder': 488,\n", - " 'fudges': 489,\n", - " 'rakeysh': 490,\n", - " 'yuko': 491,\n", - " 'rattigan': 492,\n", - " 'charters': 493,\n", - " 'archrivals': 494,\n", - " 'silver': 495,\n", - " 'masons': 496,\n", - " 'plucked': 497,\n", - " 'influencee': 498,\n", - " 'poetry': 499,\n", - " 'engraved': 500,\n", - " 'understandings': 501,\n", - " 'shaggier': 502,\n", - " 'wandering': 503,\n", - " 'eels': 504,\n", - " 'organisers': 505,\n", - " 'aaaahhhhhhh': 506,\n", - " 'corto': 507,\n", - " 'scoffing': 508,\n", - " 'fandom': 509,\n", - " 'mukherjee': 510,\n", - " 'odbray': 511,\n", - " 'oldsters': 512,\n", - " 'othello': 513,\n", - " 'planified': 514,\n", - " 'brooklyn': 515,\n", - " 'occasions': 516,\n", - " 'drivers': 517,\n", - " 'urbe': 518,\n", - " 'considerate': 519,\n", - " 'competitors': 520,\n", - " 'shirl': 521,\n", - " 'hamlets': 522,\n", - " 'stupid': 523,\n", - " 'flaps': 524,\n", - " 'eloise': 525,\n", - " 'gaff': 526,\n", - " 'nutz': 527,\n", - " 'verbs': 528,\n", - " 'tumblers': 529,\n", - " 'recapitulates': 530,\n", - " 'aesthetics': 531,\n", - " 'brawlin': 532,\n", - " 'jazz': 533,\n", - " 'var': 534,\n", - " 'leaves': 535,\n", - " 'indiscretionary': 536,\n", - " 'substantively': 537,\n", - " 'boheme': 538,\n", - " 'urmila': 539,\n", - " 'drone': 540,\n", - " 'scarfing': 541,\n", - " 'blaznee': 542,\n", - " 'komodo': 543,\n", - " 'repays': 544,\n", - " 'boosts': 545,\n", - " 'hamliton': 546,\n", - " 'consider': 547,\n", - " 'trenchard': 548,\n", - " 'thrust': 549,\n", - " 'thrice': 550,\n", - " 'binouche': 551,\n", - " 'hayle': 552,\n", - " 'napoleon': 553,\n", - " 'elitist': 554,\n", - " 'fathoms': 555,\n", - " 'drunken': 556,\n", - " 'starved': 557,\n", - " 'metropoly': 558,\n", - " 'drainage': 559,\n", - " 'sorrow': 560,\n", - " 'pov': 561,\n", - " 'nivens': 562,\n", - " 'highschool': 563,\n", - " 'outbreaking': 564,\n", - " 'einsteins': 565,\n", - " 'reloading': 566,\n", - " 'ripner': 567,\n", - " 'capites': 568,\n", - " 'accessibility': 569,\n", - " 'avonlea': 570,\n", - " 'baltron': 571,\n", - " 'barricaded': 572,\n", - " 'gadgets': 573,\n", - " 'bannacheck': 574,\n", - " 'halperins': 575,\n", - " 'lookit': 576,\n", - " 'publishing': 577,\n", - " 'royalty': 578,\n", - " 'sinus': 579,\n", - " 'rakastin': 580,\n", - " 'klenhard': 581,\n", - " 'scholarly': 582,\n", - " 'phenolic': 583,\n", - " 'pushkin': 584,\n", - " 'madolyn': 585,\n", - " 'challenging': 586,\n", - " 'prodigious': 587,\n", - " 'cosas': 588,\n", - " 'baboon': 589,\n", - " 'masssacre': 590,\n", - " 'perk': 591,\n", - " 'fishing': 592,\n", - " 'sorrento': 593,\n", - " 'fumes': 594,\n", - " 'civilisation': 595,\n", - " 'eyebrow': 596,\n", - " 'swayed': 597,\n", - " 'blaster': 598,\n", - " 'swordsman': 599,\n", - " 'asked': 600,\n", - " 'luminous': 601,\n", - " 'onhand': 602,\n", - " 'hairdressers': 603,\n", - " 'fontanelles': 604,\n", - " 'once': 605,\n", - " 'conover': 606,\n", - " 'erasure': 607,\n", - " 'mcgree': 608,\n", - " 'converge': 609,\n", - " 'neglect': 610,\n", - " 'cyclonic': 611,\n", - " 'pomegranate': 612,\n", - " 'saleslady': 613,\n", - " 'tuyle': 614,\n", - " 'perplexing': 615,\n", - " 'riped': 616,\n", - " 'joby': 617,\n", - " 'unmerciful': 618,\n", - " 'bloodsuckers': 619,\n", - " 'khoi': 620,\n", - " 'ttws': 621,\n", - " 'namaste': 622,\n", - " 'liveliest': 623,\n", - " 'wrestlemania': 624,\n", - " 'invitation': 625,\n", - " 'verbatim': 626,\n", - " 'connoisseur': 627,\n", - " 'mortgan': 628,\n", - " 'antwone': 629,\n", - " 'exiled': 630,\n", - " 'wu': 631,\n", - " 'gentiles': 632,\n", - " 'gynoid': 633,\n", - " 'katch': 634,\n", - " 'harrowingly': 635,\n", - " 'tomatoes': 636,\n", - " 'vow': 637,\n", - " 'slandering': 638,\n", - " 'drops': 639,\n", - " 'torches': 640,\n", - " 'rouveroy': 641,\n", - " 'lacing': 642,\n", - " 'bamboozling': 643,\n", - " 'martnez': 644,\n", - " 'vonda': 645,\n", - " 'unions': 646,\n", - " 'blucher': 647,\n", - " 'schmoe': 648,\n", - " 'bruckheimer': 649,\n", - " 'colbet': 650,\n", - " 'presenters': 651,\n", - " 'charnier': 652,\n", - " 'raven': 653,\n", - " 'hardesty': 654,\n", - " 'shadowless': 655,\n", - " 'cloistered': 656,\n", - " 'shed': 657,\n", - " 'testing': 658,\n", - " 'ghidora': 659,\n", - " 'simulated': 660,\n", - " 'polyester': 661,\n", - " 'dino': 662,\n", - " 'leonardo': 663,\n", - " 'paurush': 664,\n", - " 'picutres': 665,\n", - " 'messages': 666,\n", - " 'html': 667,\n", - " 'vizio': 668,\n", - " 'eliana': 669,\n", - " 'persecuting': 670,\n", - " 'uk': 671,\n", - " 'dissapearence': 672,\n", - " 'fo': 673,\n", - " 'emmerson': 674,\n", - " 'spirtas': 675,\n", - " 'inadequately': 676,\n", - " 'islam': 677,\n", - " 'deckard': 678,\n", - " 'anticlimatic': 679,\n", - " 'morolla': 680,\n", - " 'bioterrorism': 681,\n", - " 'affable': 682,\n", - " 'incrementally': 683,\n", - " 'scones': 684,\n", - " 'paced': 685,\n", - " 'gaity': 686,\n", - " 'dealed': 687,\n", - " 'bitto': 688,\n", - " 'upbeat': 689,\n", - " 'fabric': 690,\n", - " 'flavouring': 691,\n", - " 'gaiday': 692,\n", - " 'cynthia': 693,\n", - " 'expunged': 694,\n", - " 'lorry': 695,\n", - " 'montezuma': 696,\n", - " 'rampling': 697,\n", - " 'shallowness': 698,\n", - " 'hagel': 699,\n", - " 'witnessed': 700,\n", - " 'regurgitation': 701,\n", - " 'pragmatist': 702,\n", - " 'wishfully': 703,\n", - " 'interpreter': 704,\n", - " 'route': 705,\n", - " 'unclaimed': 706,\n", - " 'scandalously': 707,\n", - " 'macissac': 708,\n", - " 'deciphering': 709,\n", - " 'dissappointed': 710,\n", - " 'carstone': 711,\n", - " 'inertly': 712,\n", - " 'clunes': 713,\n", - " 'tahou': 714,\n", - " 'hampers': 715,\n", - " 'freund': 716,\n", - " 'shopping': 717,\n", - " 'fended': 718,\n", - " 'yuk': 719,\n", - " 'helms': 720,\n", - " 'bondarchuk': 721,\n", - " 'lampoons': 722,\n", - " 'synagogue': 723,\n", - " 'frightless': 724,\n", - " 'dice': 725,\n", - " 'otto': 726,\n", - " 'mashed': 727,\n", - " 'pong': 728,\n", - " 'summation': 729,\n", - " 'pharaoh': 730,\n", - " 'basora': 731,\n", - " 'merc': 732,\n", - " 'personified': 733,\n", - " 'fakery': 734,\n", - " 'gretal': 735,\n", - " 'yammering': 736,\n", - " 'pooja': 737,\n", - " 'anons': 738,\n", - " 'soleil': 739,\n", - " 'prosper': 740,\n", - " 'timeing': 741,\n", - " 'garr': 742,\n", - " 'guire': 743,\n", - " 'unarguably': 744,\n", - " 'sixes': 745,\n", - " 'plotlines': 746,\n", - " 'norwegians': 747,\n", - " 'swinson': 748,\n", - " 'enlists': 749,\n", - " 'sereneness': 750,\n", - " 'languishing': 751,\n", - " 'discretionary': 752,\n", - " 'corinne': 753,\n", - " 'gall': 754,\n", - " 'entrapping': 755,\n", - " 'icier': 756,\n", - " 'tiefenbach': 757,\n", - " 'pentimento': 758,\n", - " 'hadnt': 759,\n", - " 'wisbar': 760,\n", - " 'nyatta': 761,\n", - " 'mediaeval': 762,\n", - " 'homelife': 763,\n", - " 'student': 764,\n", - " 'halorann': 765,\n", - " 'possessively': 766,\n", - " 'maintain': 767,\n", - " 'frock': 768,\n", - " 'freewheeling': 769,\n", - " 'paralytic': 770,\n", - " 'elevators': 771,\n", - " 'boar': 772,\n", - " 'indestructibility': 773,\n", - " 'lajos': 774,\n", - " 'uncredible': 775,\n", - " 'lourie': 776,\n", - " 'jereone': 777,\n", - " 'downs': 778,\n", - " 'analyses': 779,\n", - " 'dorma': 780,\n", - " 'humiliatingly': 781,\n", - " 'summerslam': 782,\n", - " 'projecting': 783,\n", - " 'unclothed': 784,\n", - " 'corrupted': 785,\n", - " 'aids': 786,\n", - " 'invent': 787,\n", - " 'hallmarks': 788,\n", - " 'homeboys': 789,\n", - " 'spinoffs': 790,\n", - " 'dimes': 791,\n", - " 'hums': 792,\n", - " 'powered': 793,\n", - " 'rupees': 794,\n", - " 'willie': 795,\n", - " 'quivers': 796,\n", - " 'kapuu': 797,\n", - " 'groomsmen': 798,\n", - " 'freedom': 799,\n", - " 'zaphod': 800,\n", - " 'brownish': 801,\n", - " 'beausoleil': 802,\n", - " 'unshaven': 803,\n", - " 'benard': 804,\n", - " 'balasko': 805,\n", - " 'scams': 806,\n", - " 'daniell': 807,\n", - " 'unlikelihood': 808,\n", - " 'dusseldorf': 809,\n", - " 'overshadowing': 810,\n", - " 'imaginatively': 811,\n", - " 'canto': 812,\n", - " 'krimi': 813,\n", - " 'dogberry': 814,\n", - " 'construct': 815,\n", - " 'ambrose': 816,\n", - " 'insubordinate': 817,\n", - " 'filmograpghy': 818,\n", - " 'steppers': 819,\n", - " 'noise': 820,\n", - " 'heightened': 821,\n", - " 'janie': 822,\n", - " 'misused': 823,\n", - " 'attains': 824,\n", - " 'syudov': 825,\n", - " 'nokitofa': 826,\n", - " 'autocockers': 827,\n", - " 'approving': 828,\n", - " 'unmanageable': 829,\n", - " 'flightiness': 830,\n", - " 'deplorably': 831,\n", - " 'tweedy': 832,\n", - " 'ayda': 833,\n", - " 'magnification': 834,\n", - " 'redeem': 835,\n", - " 'remark': 836,\n", - " 'sanka': 837,\n", - " 'artilleryman': 838,\n", - " 'constituted': 839,\n", - " 'biter': 840,\n", - " 'snowman': 841,\n", - " 'chatsworth': 842,\n", - " 'wimmen': 843,\n", - " 'stepin': 844,\n", - " 'mange': 845,\n", - " 'gear': 846,\n", - " 'twinkle': 847,\n", - " 'delicto': 848,\n", - " 'sisyphus': 849,\n", - " 'stupidly': 850,\n", - " 'goldfinger': 851,\n", - " 'regehr': 852,\n", - " 'lawman': 853,\n", - " 'quarantines': 854,\n", - " 'macro': 855,\n", - " 'bare': 856,\n", - " 'british': 857,\n", - " 'detracts': 858,\n", - " 'amours': 859,\n", - " 'nonprofessional': 860,\n", - " 'potty': 861,\n", - " 'houghton': 862,\n", - " 'preeminent': 863,\n", - " 'glaringly': 864,\n", - " 'utrillo': 865,\n", - " 'slomo': 866,\n", - " 'eames': 867,\n", - " 'predates': 868,\n", - " 'predicting': 869,\n", - " 'enemy': 870,\n", - " 'rojo': 871,\n", - " 'revival': 872,\n", - " 'bonde': 873,\n", - " 'bambi': 874,\n", - " 'cot': 875,\n", - " 'socking': 876,\n", - " 'espeically': 877,\n", - " 'commodore': 878,\n", - " 'effeminately': 879,\n", - " 'scotland': 880,\n", - " 'ladyship': 881,\n", - " 'gariazzo': 882,\n", - " 'synonamess': 883,\n", - " 'overestimated': 884,\n", - " 'greenhorn': 885,\n", - " 'favours': 886,\n", - " 'borrough': 887,\n", - " 'macs': 888,\n", - " 'depraved': 889,\n", - " 'torino': 890,\n", - " 'premeditation': 891,\n", - " 'einstein': 892,\n", - " 'rolls': 893,\n", - " 'pannings': 894,\n", - " 'wainwright': 895,\n", - " 'nigh': 896,\n", - " 'basin': 897,\n", - " 'recognise': 898,\n", - " 'ruskin': 899,\n", - " 'carface': 900,\n", - " 'ghatak': 901,\n", - " 'kosugi': 902,\n", - " 'bisset': 903,\n", - " 'messerschmitt': 904,\n", - " 'swerling': 905,\n", - " 'schooled': 906,\n", - " 'lunatics': 907,\n", - " 'partners': 908,\n", - " 'forebodings': 909,\n", - " 'sumptuousness': 910,\n", - " 'extraterrestrials': 911,\n", - " 'saree': 912,\n", - " 'powders': 913,\n", - " 'merk': 914,\n", - " 'overaggressive': 915,\n", - " 'bergeres': 916,\n", - " 'gospel': 917,\n", - " 'inconvenient': 918,\n", - " 'suckering': 919,\n", - " 'excitingly': 920,\n", - " 'hindusthan': 921,\n", - " 'stacking': 922,\n", - " 'schoolers': 923,\n", - " 'strummer': 924,\n", - " 'honorable': 925,\n", - " 'distressing': 926,\n", - " 'bood': 927,\n", - " 'intrinsically': 928,\n", - " 'categories': 929,\n", - " 'penislized': 930,\n", - " 'loulla': 931,\n", - " 'cursory': 932,\n", - " 'janitors': 933,\n", - " 'largesse': 934,\n", - " 'sidekick': 935,\n", - " 'certainty': 936,\n", - " 'sass': 937,\n", - " 'inkling': 938,\n", - " 'intermediate': 939,\n", - " 'viviane': 940,\n", - " 'calson': 941,\n", - " 'aimed': 942,\n", - " 'irrationally': 943,\n", - " 'wended': 944,\n", - " 'gorgs': 945,\n", - " 'frida': 946,\n", - " 'vicinity': 947,\n", - " 'jaco': 948,\n", - " 'bryan': 949,\n", - " 'astricky': 950,\n", - " 'pinches': 951,\n", - " 'bimalda': 952,\n", - " 'teenaged': 953,\n", - " 'ko': 954,\n", - " 'fanged': 955,\n", - " 'redid': 956,\n", - " 'bechlarn': 957,\n", - " 'smyrner': 958,\n", - " 'gunter': 959,\n", - " 'truffle': 960,\n", - " 'glisten': 961,\n", - " 'msft': 962,\n", - " 'tens': 963,\n", - " 'remarked': 964,\n", - " 'vic': 965,\n", - " 'placidness': 966,\n", - " 'darkish': 967,\n", - " 'gjon': 968,\n", - " 'detroit': 969,\n", - " 'applicant': 970,\n", - " 'gaspar': 971,\n", - " 'fiancs': 972,\n", - " 'dimmed': 973,\n", - " 'cyrus': 974,\n", - " 'excursus': 975,\n", - " 'impersonate': 976,\n", - " 'untempted': 977,\n", - " 'greece': 978,\n", - " 'ghunghroo': 979,\n", - " 'bhansani': 980,\n", - " 'fuflo': 981,\n", - " 'meaningfulls': 982,\n", - " 'potentate': 983,\n", - " 'fantasticfantasticfantastic': 984,\n", - " 'horsies': 985,\n", - " 'girotti': 986,\n", - " 'prided': 987,\n", - " 'serbians': 988,\n", - " 'vall': 989,\n", - " 'kote': 990,\n", - " 'scowling': 991,\n", - " 'dancehall': 992,\n", - " 'shingo': 993,\n", - " 'camped': 994,\n", - " 'tat': 995,\n", - " 'abounding': 996,\n", - " 'infantryman': 997,\n", - " 'sumin': 998,\n", - " 'kont': 999,\n", + " 'airstrike': 1,\n", + " 'cabals': 3,\n", + " 'hb': 2,\n", + " 'bartley': 4,\n", + " 'insatiable': 5,\n", + " 'scratcher': 6,\n", + " 'harra': 36921,\n", + " 'technicality': 7,\n", + " 'tumors': 9,\n", + " 'conclusive': 10,\n", + " 'fondness': 11,\n", + " 'simultaneously': 12,\n", + " 'pertain': 15,\n", + " 'starry': 14,\n", + " 'sucking': 16,\n", + " 'tail': 17,\n", + " 'hollerin': 18,\n", + " 'shoe': 36926,\n", + " 'gage': 24617,\n", + " 'mindlessly': 12311,\n", + " 'mortimer': 20,\n", + " 'antony': 22,\n", + " 'pinjar': 23,\n", + " 'helsig': 24,\n", + " 'dances': 25,\n", + " 'good': 26,\n", + " 'willard': 71500,\n", + " 'faridany': 27,\n", + " 'foment': 28,\n", + " 'matts': 12313,\n", + " 'carpenter': 29,\n", + " 'cohabitant': 30,\n", + " 'zabihi': 31,\n", + " 'syafie': 32,\n", + " 'graduating': 33,\n", + " 'cod': 36,\n", + " 'firetrap': 35,\n", + " 'lynn': 37,\n", + " 'spasmodically': 38,\n", + " 'amores': 40,\n", + " 'shrubbery': 68145,\n", + " 'swing': 41,\n", + " 'superlatives': 42,\n", + " 'seldana': 45,\n", + " 'stupid': 47,\n", + " 'coptic': 31672,\n", + " 'cheesecake': 8,\n", + " 'vasectomy': 48,\n", + " 'profes': 55,\n", + " 'dispersed': 54,\n", + " 'hydraulics': 51,\n", + " 'geico': 52,\n", + " 'reese': 53,\n", + " 'trellis': 64997,\n", + " 'macho': 72853,\n", + " 'unenergetic': 57,\n", + " 'wring': 58,\n", + " 'fealing': 63392,\n", + " 'selves': 60,\n", + " 'grrr': 73547,\n", + " 'presbyterians': 62,\n", + " 'weasely': 63,\n", + " 'though': 36933,\n", + " 'underscore': 64,\n", + " 'finis': 65,\n", + " 'accessory': 66,\n", + " 'overstay': 67,\n", + " 'shh': 14588,\n", + " 'warbirds': 36572,\n", + " 'tanger': 69,\n", + " 'mitevska': 61736,\n", + " 'spiventa': 70,\n", + " 'friendliness': 12319,\n", + " 'xxxxviii': 72,\n", + " 'laundress': 73,\n", + " 'appreciative': 61740,\n", + " 'avenge': 74,\n", + " 'terminus': 75,\n", + " 'flake': 77,\n", + " 'sexless': 78,\n", + " 'flayed': 79,\n", + " 'fabricate': 81,\n", + " 'bulges': 82,\n", + " 'logician': 83,\n", + " 'preda': 84,\n", + " 'snaky': 85,\n", + " 'killer': 13,\n", + " 'hershell': 86,\n", + " 'breakouts': 87,\n", + " 'golf': 88,\n", + " 'jirarudan': 89,\n", + " 'shepherdess': 94,\n", + " 'earings': 91,\n", + " 'hjalmar': 92,\n", + " 'dishy': 93,\n", + " 'innerly': 95,\n", + " 'pistoning': 97,\n", + " 'defenceless': 99,\n", + " 'shamelessly': 100,\n", + " 'johnnys': 101,\n", + " 'fogging': 102,\n", + " 'deference': 103,\n", + " 'feldshuh': 104,\n", + " 'stig': 105,\n", + " 'snot': 24624,\n", + " 'suppositives': 108,\n", + " 'firesign': 107,\n", + " 'breakdown': 4662,\n", + " 'balances': 109,\n", + " 'weller': 110,\n", + " 'piedgon': 111,\n", + " 'nri': 112,\n", + " 'forgetting': 113,\n", + " 'probe': 114,\n", + " 'visor': 115,\n", + " 'inappreciable': 117,\n", + " 'wont': 119,\n", + " 'skinflint': 120,\n", + " 'brethern': 121,\n", + " 'dime': 64000,\n", + " 'missie': 5089,\n", + " 'janis': 122,\n", + " 'magruder': 123,\n", + " 'tavern': 128,\n", + " 'blackbird': 127,\n", + " 'schtock': 129,\n", + " 'mccay': 64300,\n", + " 'funjatta': 36940,\n", + " 'baas': 130,\n", + " 'crematorium': 138,\n", + " 'demonstrations': 132,\n", + " 'horrorvision': 140,\n", + " 'thooughly': 134,\n", + " 'sullen': 135,\n", + " 'fakes': 136,\n", + " 'gwenn': 21,\n", + " 'nepal': 139,\n", + " 'abysmally': 141,\n", + " 'suggestible': 142,\n", + " 'teller': 61751,\n", + " 'lapdog': 143,\n", + " 'krivtsov': 144,\n", + " 'nicodim': 145,\n", + " 'playing': 146,\n", + " 'mccullough': 151,\n", + " 'corrupts': 148,\n", + " 'helsing': 149,\n", + " 'rejoice': 150,\n", + " 'addons': 157,\n", + " 'founder': 153,\n", + " 'belengur': 154,\n", + " 'simpler': 155,\n", + " 'crappily': 156,\n", + " 'poupon': 158,\n", + " 'whap': 159,\n", + " 'yippee': 160,\n", + " 'torrens': 161,\n", + " 'handled': 163,\n", + " 'samira': 164,\n", + " 'aus': 165,\n", + " 'miniatures': 166,\n", + " 'tessa': 167,\n", + " 'ferrari': 168,\n", + " 'ncos': 169,\n", + " 'fatigues': 170,\n", + " 'efforts': 171,\n", + " 'ugliest': 172,\n", + " 'evilmaker': 174,\n", + " 'reimburse': 175,\n", + " 'footed': 176,\n", + " 'fopington': 177,\n", + " 'wisecracks': 178,\n", + " 'chakotay': 179,\n", + " 'guidos': 181,\n", + " 'homages': 182,\n", + " 'looses': 183,\n", + " 'treating': 184,\n", + " 'baked': 49332,\n", + " 'unprofessionally': 185,\n", + " 'vallejo': 186,\n", + " 'kareen': 187,\n", + " 'jaku': 188,\n", + " 'mope': 70236,\n", + " 'orphanages': 12337,\n", + " 'birthparents': 190,\n", + " 'distillery': 191,\n", + " 'audra': 192,\n", + " 'bleating': 195,\n", + " 'externalities': 198,\n", + " 'bizare': 196,\n", + " 'why': 197,\n", + " 'seventh': 199,\n", + " 'indicates': 200,\n", + " 'metropoly': 201,\n", + " 'cluelessness': 72883,\n", + " 'arbaaz': 203,\n", + " 'brotherwood': 205,\n", + " 'musset': 64304,\n", + " 'flattened': 206,\n", + " 'kalmus': 208,\n", + " 'dammes': 36952,\n", + " 'subtract': 209,\n", + " 'thumbs': 22365,\n", + " 'netwaves': 210,\n", + " 'toughen': 211,\n", + " 'streamers': 49337,\n", + " 'cogburn': 212,\n", + " 'undercutting': 213,\n", + " 'sentiments': 74008,\n", + " 'nipples': 214,\n", + " 'witten': 219,\n", + " 'atmosphoere': 220,\n", + " 'durring': 218,\n", + " 'agreements': 67509,\n", + " 'udo': 67069,\n", + " 'luciana': 61909,\n", + " 'tam': 221,\n", + " 'triggered': 61759,\n", + " 'bakelite': 25730,\n", + " 'dive': 222,\n", + " 'prohibition': 223,\n", + " 'outage': 224,\n", + " 'wiring': 226,\n", + " 'flimsily': 227,\n", + " 'playwrite': 228,\n", + " 'interferes': 229,\n", + " 'nitpicks': 72229,\n", + " 'pastime': 230,\n", + " 'fringe': 231,\n", + " 'substories': 233,\n", + " 'left': 234,\n", + " 'foretells': 235,\n", + " 'parnell': 12348,\n", + " 'gangway': 238,\n", + " 'augment': 237,\n", + " 'trekkers': 240,\n", + " 'llama': 62627,\n", + " 'cigarettes': 12349,\n", + " 'socialite': 242,\n", + " 'paralyzed': 243,\n", + " 'intensify': 244,\n", + " 'mendacious': 245,\n", + " 'jamboree': 247,\n", + " 'snl': 34,\n", + " 'kabaree': 55967,\n", + " 'stunned': 61763,\n", + " 'mistreating': 248,\n", + " 'charging': 249,\n", + " 'watcher': 250,\n", + " 'keypunch': 253,\n", + " 'siebenmal': 254,\n", + " 'governed': 255,\n", + " 'cad': 256,\n", + " 'rooster': 258,\n", + " 'biograph': 259,\n", + " 'tijuana': 49344,\n", + " 'triad': 260,\n", + " 'tenses': 61772,\n", + " 'abysmal': 261,\n", + " 'iiiiii': 262,\n", + " 'creaked': 263,\n", + " 'withnail': 8328,\n", + " 'shrieks': 265,\n", + " 'clamoring': 36967,\n", + " 'paedophillia': 267,\n", + " 'betwixt': 269,\n", + " 'beltway': 268,\n", + " 'englebert': 272,\n", + " 'headquartered': 273,\n", + " 'bro': 279,\n", + " 'unsynchronised': 277,\n", + " 'naaahhh': 278,\n", + " 'scheider': 280,\n", + " 'hoola': 43,\n", + " 'isabel': 282,\n", + " 'deathwatch': 56266,\n", + " 'balki': 287,\n", + " 'moss': 284,\n", + " 'khang': 285,\n", + " 'finite': 286,\n", + " 'lineal': 288,\n", + " 'segues': 289,\n", + " 'tlps': 44,\n", + " 'poochie': 290,\n", + " 'monotonic': 291,\n", + " 'transfusions': 293,\n", + " 'buffeting': 294,\n", + " 'osamu': 49350,\n", + " 'hummel': 295,\n", + " 'willims': 296,\n", + " 'tholomyes': 297,\n", + " 'steeple': 298,\n", + " 'manky': 305,\n", + " 'weary': 301,\n", + " 'transgenered': 311,\n", + " 'aswell': 312,\n", + " 'afi': 304,\n", + " 'spielmann': 306,\n", + " 'damini': 307,\n", + " 'grisby': 313,\n", + " 'kenichi': 309,\n", + " 'preface': 310,\n", + " 'prankster': 315,\n", + " 'aquariums': 317,\n", + " 'wager': 318,\n", + " 'snoring': 319,\n", + " 'wahoo': 321,\n", + " 'medication': 322,\n", + " 'paalgard': 323,\n", + " 'popstar': 324,\n", + " 'sd': 325,\n", + " 'forbes': 326,\n", + " 'carnby': 327,\n", + " 'yuki': 328,\n", + " 'disinherits': 50,\n", + " 'malik': 329,\n", + " 'alien': 331,\n", + " 'emerged': 332,\n", + " 'degeneres': 333,\n", + " 'chandleresque': 334,\n", + " 'uproariously': 335,\n", + " 'mestressat': 336,\n", + " 'aborigone': 338,\n", + " 'reticent': 339,\n", + " 'adventurer': 340,\n", + " 'goyokin': 341,\n", + " 'convolutions': 342,\n", + " 'frankie': 343,\n", + " 'disconcerting': 37347,\n", + " 'daumier': 344,\n", + " 'burliest': 345,\n", + " 'glria': 346,\n", + " 'toxie': 347,\n", + " 'mustang': 348,\n", + " 'repairman': 350,\n", + " 'edging': 61782,\n", + " 'preservation': 351,\n", + " 'mascouri': 353,\n", + " 'guinness': 56,\n", + " 'everday': 355,\n", + " 'german': 356,\n", + " 'kei': 357,\n", + " 'nutty': 358,\n", + " 'interaction': 359,\n", + " 'slope': 360,\n", + " 'hy': 361,\n", + " 'dlouh': 48784,\n", + " 'hollywoond': 49360,\n", + " 'hakim': 36985,\n", + " 'chummies': 363,\n", + " 'secreted': 364,\n", + " 'fancier': 365,\n", + " 'kyoto': 366,\n", + " 'retention': 367,\n", + " 'lifeboat': 59,\n", + " 'mundainly': 61787,\n", + " 'trubshawe': 57465,\n", + " 'leaden': 369,\n", + " 'helluva': 370,\n", + " 'fire': 371,\n", + " 'katja': 66103,\n", + " 'fog': 373,\n", + " 'candy': 374,\n", + " 'intuition': 375,\n", + " 'hunting': 376,\n", + " 'jailhouse': 378,\n", + " 'noir': 379,\n", + " 'klinghoffer': 381,\n", + " 'gizmo': 382,\n", + " 'whiteys': 384,\n", + " 'lucrencia': 385,\n", + " 'earning': 386,\n", + " 'winces': 51941,\n", + " 'charlotte': 52780,\n", + " 'rooshus': 387,\n", + " 'jostle': 388,\n", + " 'yadav': 389,\n", + " 'columbus': 390,\n", + " 'onyulo': 391,\n", + " 'tantric': 392,\n", + " 'prosaic': 36992,\n", + " 'slaver': 394,\n", + " 'springsthis': 396,\n", + " 'callum': 399,\n", + " 'scariness': 400,\n", + " 'ticket': 401,\n", + " 'storm': 63484,\n", + " 'christina': 36994,\n", + " 'najwa': 404,\n", + " 'huggie': 405,\n", + " 'lala': 406,\n", + " 'fattened': 407,\n", + " 'mcdonald': 408,\n", + " 'racerunner': 409,\n", + " 'hana': 411,\n", + " 'geddis': 412,\n", + " 'simulations': 413,\n", + " 'counterespionage': 414,\n", + " 'hobbitt': 415,\n", + " 'grinder': 49369,\n", + " 'playmates': 420,\n", + " 'cams': 418,\n", + " 'tristain': 419,\n", + " 'anglican': 421,\n", + " 'koji': 422,\n", + " 'kywildflower': 426,\n", + " 'comedically': 424,\n", + " 'maven': 425,\n", + " 'brunt': 44014,\n", + " 'macarri': 427,\n", + " 'ralphy': 429,\n", + " 'lantos': 431,\n", + " 'casares': 432,\n", + " 'ticonderoga': 433,\n", + " 'mails': 434,\n", + " 'attempt': 12377,\n", + " 'kisser': 435,\n", + " 'beenville': 440,\n", + " 'puffed': 437,\n", + " 'kpc': 438,\n", + " 'propagated': 439,\n", + " 'riped': 61795,\n", + " 'tempe': 441,\n", + " 'vulnerably': 445,\n", + " 'assailants': 444,\n", + " 'executive': 446,\n", + " 'cuthbert': 447,\n", + " 'gunnerside': 448,\n", + " 'lovesickness': 450,\n", + " 'dalek': 452,\n", + " 'duchy': 65935,\n", + " 'bergen': 453,\n", + " 'moraka': 47067,\n", + " 'licking': 455,\n", + " 'unfindable': 456,\n", + " 'kes': 457,\n", + " 'blames': 458,\n", + " 'histories': 459,\n", + " 'tall': 460,\n", + " 'heated': 462,\n", + " 'dreamed': 55819,\n", + " 'cringe': 463,\n", + " 'greenland': 465,\n", + " 'patakin': 466,\n", + " 'commentator': 468,\n", + " 'with': 70966,\n", + " 'espescially': 471,\n", + " 'transunto': 474,\n", + " 'blaise': 473,\n", + " 'garafolo': 475,\n", + " 'derides': 476,\n", + " 'sensationalistic': 477,\n", + " 'pandey': 37004,\n", + " 'wrecked': 49805,\n", + " 'hiker': 478,\n", + " 'puss': 479,\n", + " 'differential': 481,\n", + " 'vamsi': 482,\n", + " 'cloning': 35055,\n", + " 'marque': 483,\n", + " 'minimize': 50691,\n", + " 'willful': 76,\n", + " 'grover': 61803,\n", + " 'thumpers': 488,\n", + " 'linguist': 57014,\n", + " 'rule': 490,\n", + " 'jacqualine': 491,\n", + " 'vadepied': 492,\n", + " 'directory': 493,\n", + " 'kurta': 494,\n", + " 'andreas': 495,\n", + " 'schapelle': 80,\n", + " 'formulaic': 497,\n", + " 'telecommunication': 24675,\n", + " 'schenck': 498,\n", + " 'calumniated': 499,\n", + " 'zaz': 501,\n", + " 'grosbard': 37007,\n", + " 'sheridan': 502,\n", + " 'swashbuckler': 503,\n", + " 'accapella': 504,\n", + " 'pricelessly': 505,\n", + " 'stebbins': 506,\n", + " 'phd': 508,\n", + " 'tellingly': 511,\n", + " 'oui': 510,\n", + " 'katia': 69007,\n", + " 'whereever': 512,\n", + " 'complements': 515,\n", + " 'filthier': 517,\n", + " 'clownified': 49380,\n", + " 'rebe': 519,\n", + " 'waved': 520,\n", + " 'hinkley': 521,\n", + " 'tat': 524,\n", + " 'ames': 525,\n", + " 'unflavored': 24677,\n", + " 'ummm': 49383,\n", + " 'disdainfully': 527,\n", + " 'megaeuros': 531,\n", + " 'mountian': 529,\n", + " 'kinks': 61807,\n", + " 'rages': 532,\n", + " 'uncritically': 533,\n", + " 'shakesspeare': 534,\n", + " 'ykai': 535,\n", + " 'oblast': 536,\n", + " 'pretended': 50695,\n", + " 'qauntity': 537,\n", + " 'smithonites': 538,\n", + " 'gotten': 539,\n", + " 'asssociated': 541,\n", + " 'deeds': 30672,\n", + " 'yoke': 542,\n", + " 'zombified': 543,\n", + " 'cost': 544,\n", + " 'married': 67938,\n", + " 'unvented': 545,\n", + " 'voicework': 546,\n", + " 'nutjob': 547,\n", + " 'mcleod': 548,\n", + " 'clammy': 549,\n", + " 'burry': 550,\n", + " 'aaaarrgh': 552,\n", + " 'circumstantial': 553,\n", + " 'spiderbabe': 554,\n", + " 'blachere': 556,\n", + " 'football': 557,\n", + " 'rectify': 24682,\n", + " 'orchestration': 559,\n", + " 'reconstitution': 560,\n", + " 'theieves': 562,\n", + " 'hedron': 563,\n", + " 'zant': 66120,\n", + " 'wipers': 566,\n", + " 'tacones': 565,\n", + " 'newgrounds': 56906,\n", + " 'kusugi': 61810,\n", + " 'diminishes': 45144,\n", + " 'bolvian': 567,\n", + " 'hammeresses': 568,\n", + " 'totters': 569,\n", + " 'digicorps': 570,\n", + " 'folded': 12400,\n", + " 'chiseled': 571,\n", + " 'hillard': 572,\n", + " 'sundays': 575,\n", + " 'suncoast': 574,\n", + " 'mullholland': 577,\n", + " 'impersonating': 49393,\n", + " 'miracles': 57106,\n", + " 'chamber': 579,\n", + " 'carto': 580,\n", + " 'democrats': 581,\n", + " 'prescription': 582,\n", + " 'beethtoven': 2670,\n", + " 'triple': 583,\n", + " 'knoxville': 584,\n", + " 'jesuit': 593,\n", + " 'individualist': 588,\n", + " 'greeted': 592,\n", + " 'rectangles': 37023,\n", + " 'omission': 589,\n", + " 'terra': 590,\n", + " 'pronunciations': 591,\n", + " 'nadia': 68305,\n", + " 'squib': 594,\n", + " 'eaker': 596,\n", + " 'sodeberg': 597,\n", + " 'indicate': 598,\n", + " 'zenobia': 61818,\n", + " 'divine': 599,\n", + " 'kringle': 601,\n", + " 'owen': 98,\n", + " 'assassino': 602,\n", + " 'cooperated': 603,\n", + " 'deuces': 604,\n", + " 'precipitating': 605,\n", + " 'summing': 606,\n", + " 'koyaanisqatsi': 609,\n", + " 'charater': 608,\n", + " 'activist': 610,\n", + " 'klemper': 611,\n", + " 'levi': 612,\n", + " 'unmelodious': 613,\n", + " 'limitlessly': 615,\n", + " 'readymade': 616,\n", + " 'applewhite': 63179,\n", + " 'industrialisation': 619,\n", + " 'villalobos': 35346,\n", + " 'predecessorsovernight': 620,\n", + " 'misled': 621,\n", + " 'gallant': 624,\n", + " 'redirect': 623,\n", + " 'shwartzeneger': 24691,\n", + " 'alatri': 27085,\n", + " 'denounce': 626,\n", + " 'urmitz': 627,\n", + " 'cartwrightbrideyahoo': 629,\n", + " 'shepis': 630,\n", + " 'aristos': 633,\n", + " 'gbs': 632,\n", + " 'rexas': 634,\n", + " 'mesmorizingly': 636,\n", + " 'hysterion': 637,\n", + " 'relinquish': 638,\n", + " 'edna': 640,\n", + " 'chekov': 63180,\n", + " 'chowderheads': 642,\n", + " 'cartoonery': 61822,\n", + " 'vantage': 73190,\n", + " 'dernier': 644,\n", + " 'segways': 646,\n", + " 'insturmental': 61824,\n", + " 'pediatrician': 647,\n", + " 'compel': 56410,\n", + " 'ceausescu': 648,\n", + " 'ku': 70988,\n", + " 'flooded': 649,\n", + " 'regent': 54006,\n", + " 'lustful': 651,\n", + " 'bend': 652,\n", + " 'brainpower': 654,\n", + " 'harel': 655,\n", + " 'thet': 656,\n", + " 'quietest': 12410,\n", + " 'furnishing': 657,\n", + " 'fluffer': 658,\n", + " 'airwaves': 67937,\n", + " 'summaries': 49404,\n", + " 'chuckleheads': 660,\n", + " 'faat': 37032,\n", + " 'gaghan': 661,\n", + " 'presbyterian': 12413,\n", + " 'dramatization': 662,\n", + " 'bimbo': 663,\n", + " 'hyperbolic': 49407,\n", + " 'torresani': 664,\n", + " 'nonetheless': 61831,\n", + " 'dogmatists': 665,\n", + " 'salt': 43176,\n", + " 'roller': 666,\n", + " 'coslow': 669,\n", + " 'undermined': 668,\n", + " 'marty': 671,\n", + " 'cabel': 49410,\n", + " 'interrelations': 672,\n", + " 'batpeople': 677,\n", + " 'liev': 675,\n", + " 'heidijean': 676,\n", + " 'potente': 678,\n", + " 'mirkovich': 679,\n", + " 'kearn': 681,\n", + " 'culprits': 682,\n", + " 'knighthood': 24699,\n", + " 'extras': 683,\n", + " 'muppets': 12418,\n", + " 'lustig': 684,\n", + " 'overlooking': 106,\n", + " 'garner': 685,\n", + " 'fsb': 686,\n", + " 'doubtfire': 688,\n", + " 'traps': 689,\n", + " 'heaving': 690,\n", + " 'higherpraise': 45483,\n", + " 'rican': 693,\n", + " 'swaps': 694,\n", + " 'needless': 61837,\n", + " 'visnjic': 695,\n", + " 'wee': 696,\n", + " 'brunna': 697,\n", + " 'ungraspable': 699,\n", + " 'squids': 700,\n", + " 'dpardieu': 69343,\n", + " 'tok': 42932,\n", + " 'olympics': 703,\n", + " 'forgetable': 704,\n", + " 'ooooof': 705,\n", + " 'forster': 706,\n", + " 'sharia': 707,\n", + " 'pickpocketing': 709,\n", + " 'semetary': 710,\n", + " 'csar': 711,\n", + " 'spookiness': 712,\n", + " 'primate': 714,\n", + " 'facilitator': 715,\n", + " 'sulks': 59073,\n", + " 'johny': 67098,\n", + " 'brennen': 717,\n", + " 'portastatic': 718,\n", + " 'lifeboats': 719,\n", + " 'kobe': 720,\n", + " 'gadget': 722,\n", + " 'lexcorp': 61840,\n", + " 'bonding': 723,\n", + " 'paul': 724,\n", + " 'christys': 727,\n", + " 'system': 12428,\n", + " 'naissance': 56203,\n", + " 'pavey': 728,\n", + " 'devolution': 730,\n", + " 'charmian': 731,\n", + " 'sigel': 734,\n", + " 'regalbuto': 118,\n", + " 'ramonesmobile': 55839,\n", + " 'cavort': 735,\n", + " 'amend': 29434,\n", + " 'cavewoman': 738,\n", + " 'chan': 116,\n", + " 'shawls': 740,\n", + " 'mockery': 48277,\n", + " 'culture': 741,\n", + " 'crapola': 742,\n", + " 'tethered': 743,\n", + " 'calcifying': 745,\n", + " 'regan': 746,\n", + " 'freakish': 748,\n", + " 'midwinter': 749,\n", + " 'whitaker': 750,\n", + " 'moldy': 751,\n", + " 'chose': 63415,\n", + " 'thses': 754,\n", + " 'ghum': 37040,\n", + " 'lysol': 24714,\n", + " 'bombshells': 756,\n", + " 'eject': 36988,\n", + " 'hats': 757,\n", + " 'raven': 758,\n", + " 'louvred': 759,\n", + " 'bled': 761,\n", + " 'aulin': 762,\n", + " 'hamada': 763,\n", + " 'commodity': 12436,\n", + " 'fuflo': 766,\n", + " 'mortar': 767,\n", + " 'grainier': 768,\n", + " 'gardening': 769,\n", + " 'amazed': 771,\n", + " 'verily': 773,\n", + " 'riley': 774,\n", + " 'thaddeus': 775,\n", + " 'bolloks': 61848,\n", + " 'cassettes': 777,\n", + " 'raffy': 778,\n", + " 'stalwarts': 779,\n", + " 'indo': 61850,\n", + " 'melrose': 780,\n", + " 'compleat': 781,\n", + " 'embeds': 782,\n", + " 'instability': 785,\n", + " 'milliard': 126,\n", + " 'playfulness': 786,\n", + " 'condoms': 53164,\n", + " 'cupboard': 787,\n", + " 'deplicted': 788,\n", + " 'superbrains': 789,\n", + " 'goof': 790,\n", + " 'cables': 791,\n", + " 'chumps': 50864,\n", + " 'gatsby': 793,\n", + " 'zwick': 794,\n", + " 'bellowing': 797,\n", + " 'standout': 798,\n", + " 'rotting': 800,\n", + " 'langoria': 49423,\n", + " 'bickering': 801,\n", + " 'quasirealistic': 61852,\n", + " 'expiration': 804,\n", + " 'jennie': 52799,\n", + " 'lifeblood': 805,\n", + " 'emissaries': 806,\n", + " 'erica': 69345,\n", + " 'enacted': 808,\n", + " 'plying': 809,\n", + " 'minamoto': 26801,\n", + " 'naught': 810,\n", + " 'brigham': 811,\n", + " 'ufo': 812,\n", + " 'flim': 813,\n", + " 'lawston': 814,\n", + " 'hairstyle': 815,\n", + " 'brunell': 50398,\n", + " 'crapped': 49427,\n", + " 'declaring': 54647,\n", + " 'taggert': 817,\n", + " 'drury': 820,\n", + " 'fellowship': 819,\n", + " 'gungan': 823,\n", + " 'quotations': 822,\n", + " 'archer': 37047,\n", + " 'cassamoor': 824,\n", + " 'jolting': 825,\n", + " 'wasn': 826,\n", + " 'milwall': 827,\n", + " 'springboard': 12449,\n", + " 'imposition': 828,\n", + " 'land': 829,\n", + " 'earring': 61861,\n", + " 'evolves': 3312,\n", + " 'scavo': 832,\n", + " 'murkily': 831,\n", + " 'tourette': 17755,\n", + " 'moremuch': 24728,\n", + " 'bateman': 835,\n", + " 'gunked': 834,\n", + " 'stm': 37051,\n", + " 'butchers': 836,\n", + " 'obout': 837,\n", + " 'battlegrounds': 838,\n", + " 'keys': 839,\n", + " 'institution': 845,\n", + " 'sweats': 841,\n", + " 'mclellan': 843,\n", + " 'chinpira': 844,\n", + " 'oct': 64919,\n", + " 'buffing': 847,\n", + " 'comeuppance': 849,\n", + " 'wifey': 851,\n", + " 'throwbacks': 131,\n", + " 'raiment': 852,\n", + " 'hur': 61865,\n", + " 'indoctrinated': 853,\n", + " 'tidwell': 61866,\n", + " 'erroneously': 26238,\n", + " 'dismembered': 133,\n", + " 'tarzans': 854,\n", + " 'howse': 67481,\n", + " 'thats': 855,\n", + " 'pipers': 10105,\n", + " 'xy': 856,\n", + " 'mohan': 58734,\n", + " 'habenera': 858,\n", + " 'unanswered': 137,\n", + " 'emmerich': 859,\n", + " 'implanted': 861,\n", + " 'creature': 49435,\n", + " 'bandaras': 862,\n", + " 'crazily': 863,\n", + " 'preventative': 864,\n", + " 'tracks': 865,\n", + " 'amat': 866,\n", + " 'valuing': 867,\n", + " 'chipping': 871,\n", + " 'poder': 869,\n", + " 'sentimentality': 61875,\n", + " 'undoubtedly': 64251,\n", + " 'yvone': 874,\n", + " 'structure': 873,\n", + " 'lou': 876,\n", + " 'tenable': 878,\n", + " 'bird': 12455,\n", + " 'biopic': 879,\n", + " 'ana': 880,\n", + " 'parrot': 49438,\n", + " 'mimetic': 881,\n", + " 'thirty': 882,\n", + " 'overpriced': 883,\n", + " 'teffe': 884,\n", + " 'fend': 885,\n", + " 'blackhawk': 886,\n", + " 'angeli': 887,\n", + " 'assassinates': 49441,\n", + " 'nicola': 889,\n", + " 'boerner': 892,\n", + " 'tearjerker': 72135,\n", + " 'paella': 894,\n", + " 'pinchers': 28990,\n", + " 'superceeds': 899,\n", + " 'headboard': 897,\n", + " 'comparison': 898,\n", + " 'siding': 23327,\n", + " 'seahunt': 60218,\n", + " 'rockets': 61876,\n", + " 'jodorowsky': 901,\n", + " 'utrillo': 903,\n", + " 'orked': 17386,\n", + " 'visas': 37060,\n", + " 'attributed': 904,\n", + " 'jurking': 905,\n", + " 'japp': 906,\n", + " 'caprino': 907,\n", + " 'brainwash': 909,\n", + " 'birkin': 12461,\n", + " 'influencing': 911,\n", + " 'rumpelstiltskin': 24746,\n", + " 'dennehy': 914,\n", + " 'ichii': 913,\n", + " 'decomposing': 915,\n", + " 'celebei': 916,\n", + " 'anatomically': 917,\n", + " 'swindled': 61216,\n", + " 'schoolgirl': 918,\n", + " 'idrissa': 923,\n", + " 'ye': 920,\n", + " 'heritage': 921,\n", + " 'irrelevancy': 922,\n", + " 'betting': 925,\n", + " 'walden': 61880,\n", + " 'excelsior': 926,\n", + " 'embarked': 49448,\n", + " 'anoying': 927,\n", + " 'upwardly': 930,\n", + " 'venice': 929,\n", + " 'matrix': 70188,\n", + " 'piquantly': 931,\n", + " 'evaporated': 932,\n", + " 'antic': 934,\n", + " 'cocked': 24751,\n", + " 'blubber': 50546,\n", + " 'scrounge': 935,\n", + " 'posterity': 936,\n", + " 'teleporting': 24752,\n", + " 'pray': 937,\n", + " 'unfiltered': 61883,\n", + " 'displaying': 939,\n", + " 'kudos': 940,\n", + " 'chieftain': 941,\n", + " 'companeros': 50365,\n", + " 'anecdotic': 12647,\n", + " 'punishing': 49451,\n", + " 'treeless': 942,\n", + " 'illegibly': 943,\n", + " 'keanu': 944,\n", + " 'pascual': 945,\n", + " 'sharply': 37064,\n", + " 'recollecting': 946,\n", + " 'tis': 947,\n", + " 'existience': 948,\n", + " 'creditable': 952,\n", + " 'volpe': 950,\n", + " 'aid': 951,\n", + " 'underwater': 953,\n", + " 'bice': 954,\n", + " 'completetly': 955,\n", + " 'grindingly': 956,\n", + " 'ether': 957,\n", + " 'dwindling': 958,\n", + " 'limping': 3794,\n", + " 'insted': 960,\n", + " 'corinne': 51447,\n", + " 'misinterpreted': 961,\n", + " 'valdez': 962,\n", + " 'initiation': 963,\n", + " 'irreplaceable': 64408,\n", + " 'diffident': 964,\n", + " 'thanatos': 965,\n", + " 'lolly': 966,\n", + " 'frogmarched': 968,\n", + " 'dictate': 969,\n", + " 'concussion': 970,\n", + " 'consumers': 971,\n", + " 'vaugn': 162,\n", + " 'extremly': 973,\n", + " 'cahill': 65874,\n", + " 'unpleasantness': 68093,\n", + " 'verveen': 976,\n", + " 'thingamajig': 975,\n", + " 'cope': 61887,\n", + " 'ludicrously': 12476,\n", + " 'unintelligible': 977,\n", + " 'orson': 978,\n", + " 'goofed': 979,\n", + " 'colonize': 980,\n", + " 'leaf': 981,\n", + " 'vanner': 982,\n", + " 'brattiest': 983,\n", + " 'enjolras': 17547,\n", + " 'parallels': 984,\n", + " 'cinemagraphic': 985,\n", + " 'vaguest': 987,\n", + " 'vca': 990,\n", + " 'kiesser': 989,\n", + " 'marybeth': 66421,\n", + " 'characteriology': 991,\n", + " 'squash': 993,\n", + " 'rebeecca': 994,\n", + " 'mauldin': 995,\n", + " 'extender': 997,\n", + " 'zeppelins': 61891,\n", + " 'zealous': 50965,\n", + " 'personality': 998,\n", + " 'greatest': 999,\n", + " 'creeper': 61895,\n", + " 'touring': 1000,\n", + " 'shirdan': 1001,\n", + " 'meal': 56790,\n", + " 'lale': 61894,\n", + " 'kalifonia': 1002,\n", + " 'neds': 1003,\n", + " 'improbable': 1004,\n", + " 'offed': 1005,\n", + " 'linebacker': 1007,\n", + " 'mirror': 1008,\n", + " 'comradery': 1009,\n", + " 'windmill': 1010,\n", + " 'holidays': 37073,\n", + " 'option': 1013,\n", + " 'dudettes': 1014,\n", + " 'amfortas': 1015,\n", " ...}" ] }, @@ -4829,7 +4870,9 @@ { "cell_type": "code", "execution_count": 26, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -4858,7 +4901,9 @@ { "cell_type": "code", "execution_count": 27, - "metadata": {}, + "metadata": { + "collapsed": true + }, "outputs": [], "source": [ "def get_target_for_label(label):\n", @@ -4884,7 +4929,9 @@ { "cell_type": "code", "execution_count": 28, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -4904,7 +4951,9 @@ { "cell_type": "code", "execution_count": 29, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -4931,7 +4980,9 @@ { "cell_type": "code", "execution_count": 30, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -4951,7 +5002,9 @@ { "cell_type": "code", "execution_count": 31, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -5271,7 +5324,9 @@ { "cell_type": "code", "execution_count": 34, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "name": "stdout", @@ -5295,7 +5350,9 @@ { "cell_type": "code", "execution_count": 35, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "name": "stdout", @@ -5329,7 +5386,9 @@ { "cell_type": "code", "execution_count": 36, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "name": "stdout", @@ -5364,7 +5423,9 @@ { "cell_type": "code", "execution_count": 37, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "name": "stdout", @@ -5414,7 +5475,9 @@ { "cell_type": "code", "execution_count": 38, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -5456,7 +5519,9 @@ { "cell_type": "code", "execution_count": 40, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -5500,6 +5565,7 @@ "cell_type": "code", "execution_count": 43, "metadata": { + "collapsed": false, "scrolled": true }, "outputs": [ @@ -5876,6 +5942,7 @@ "cell_type": "code", "execution_count": 45, "metadata": { + "collapsed": false, "scrolled": true }, "outputs": [ @@ -5905,7 +5972,9 @@ { "cell_type": "code", "execution_count": 46, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "name": "stdout", @@ -5916,7 +5985,6 @@ } ], "source": [ - "# evaluate our model before training (just to show how horrible it is)\n", "mlp.test(reviews[-1000:],labels[-1000:])" ] }, @@ -5932,7 +6000,9 @@ { "cell_type": "code", "execution_count": 47, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -5964,7 +6034,9 @@ { "cell_type": "code", "execution_count": 49, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -5996,7 +6068,9 @@ { "cell_type": "code", "execution_count": 51, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -6027,7 +6101,9 @@ { "cell_type": "code", "execution_count": 53, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -6081,7 +6157,9 @@ { "cell_type": "code", "execution_count": 57, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -6101,7 +6179,9 @@ { "cell_type": "code", "execution_count": 58, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -6145,7 +6225,9 @@ { "cell_type": "code", "execution_count": 61, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -6454,7 +6536,9 @@ { "cell_type": "code", "execution_count": 63, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "name": "stdout", @@ -6489,7 +6573,9 @@ { "cell_type": "code", "execution_count": 64, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "name": "stdout", @@ -7515,7 +7601,9 @@ { "cell_type": "code", "execution_count": 65, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -7536,7 +7624,9 @@ { "cell_type": "code", "execution_count": 66, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -8557,7 +8647,9 @@ { "cell_type": "code", "execution_count": 67, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -8607,7 +8699,9 @@ { "cell_type": "code", "execution_count": 68, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -8775,7 +8869,9 @@ { "cell_type": "code", "execution_count": 69, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -8954,7 +9050,9 @@ { "cell_type": "code", "execution_count": 71, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -9451,7 +9549,9 @@ { "cell_type": "code", "execution_count": 73, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "name": "stdout", @@ -9486,7 +9586,9 @@ { "cell_type": "code", "execution_count": 74, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "name": "stdout", @@ -10510,7 +10612,9 @@ { "cell_type": "code", "execution_count": 75, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "name": "stdout", @@ -10545,7 +10649,9 @@ { "cell_type": "code", "execution_count": 76, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "name": "stdout", @@ -11571,7 +11677,9 @@ { "cell_type": "code", "execution_count": 77, - "metadata": {}, + "metadata": { + "collapsed": true + }, "outputs": [], "source": [ "mlp_full = SentimentNetwork(reviews[:-1000],labels[:-1000],min_count=0,polarity_cutoff=0,learning_rate=0.01)" @@ -11580,7 +11688,9 @@ { "cell_type": "code", "execution_count": 78, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "name": "stdout", @@ -11607,7 +11717,9 @@ { "cell_type": "code", "execution_count": 79, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { @@ -11645,1011 +11757,1013 @@ { "cell_type": "code", "execution_count": 81, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { "text/plain": [ - "[('excellent', 0.13672950757352467),\n", - " ('perfect', 0.12548286087225943),\n", - " ('amazing', 0.091827633925999672),\n", - " ('today', 0.090223662694414203),\n", - " ('wonderful', 0.089355976962214603),\n", + "[('excellent', 0.1367295075735247),\n", + " ('perfect', 0.12548286087225946),\n", + " ('amazing', 0.091827633925999685),\n", + " ('today', 0.090223662694414244),\n", + " ('wonderful', 0.089355976962214576),\n", " ('fun', 0.08750446667420686),\n", - " ('great', 0.087141758882292059),\n", - " ('best', 0.085810885617880639),\n", - " ('liked', 0.077697629123843398),\n", - " ('definitely', 0.076628781406965968),\n", - " ('brilliant', 0.073423858769278996),\n", - " ('loved', 0.073285428928122134),\n", - " ('favorite', 0.072781136036160737),\n", + " ('great', 0.087141758882292031),\n", + " ('best', 0.085810885617880611),\n", + " ('liked', 0.077697629123843412),\n", + " ('definitely', 0.076628781406966037),\n", + " ('brilliant', 0.073423858769279024),\n", + " ('loved', 0.073285428928122162),\n", + " ('favorite', 0.072781136036160765),\n", " ('superb', 0.071736207178505054),\n", - " ('fantastic', 0.070922191916266183),\n", - " ('job', 0.069160617207634029),\n", - " ('incredible', 0.066424077952614416),\n", - " ('enjoyable', 0.065632560502888765),\n", + " ('fantastic', 0.070922191916266197),\n", + " ('job', 0.06916061720763407),\n", + " ('incredible', 0.066424077952614388),\n", + " ('enjoyable', 0.06563256050288882),\n", " ('rare', 0.064819212662615075),\n", - " ('highly', 0.063889453350970529),\n", - " ('enjoyed', 0.062127546101812925),\n", - " ('wonderfully', 0.062055178604090155),\n", + " ('highly', 0.063889453350970515),\n", + " ('enjoyed', 0.062127546101812953),\n", + " ('wonderfully', 0.062055178604090148),\n", " ('perfectly', 0.06109320881188738),\n", - " ('fascinating', 0.060663547937493838),\n", - " ('bit', 0.059655427045653027),\n", - " ('gem', 0.059510859296156793),\n", - " ('outstanding', 0.058860808147082999),\n", - " ('beautiful', 0.058613934703162049),\n", - " ('surprised', 0.058273314482562961),\n", - " ('worth', 0.057657484236471192),\n", - " ('especially', 0.057422020781760771),\n", - " ('refreshing', 0.057310532092265741),\n", - " ('entertaining', 0.05661203383562919),\n", - " ('hilarious', 0.056168541032286634),\n", - " ('masterpiece', 0.054993988649431551),\n", - " ('simple', 0.054484083134924068),\n", - " ('subtle', 0.054368883033508626),\n", - " ('funniest', 0.05345716487130267),\n", + " ('fascinating', 0.060663547937493865),\n", + " ('bit', 0.059655427045653062),\n", + " ('gem', 0.059510859296156786),\n", + " ('outstanding', 0.058860808147083006),\n", + " ('beautiful', 0.058613934703162091),\n", + " ('surprised', 0.058273314482562968),\n", + " ('worth', 0.057657484236471213),\n", + " ('especially', 0.057422020781760785),\n", + " ('refreshing', 0.057310532092265755),\n", + " ('entertaining', 0.056612033835629204),\n", + " ('hilarious', 0.056168541032286662),\n", + " ('masterpiece', 0.054993988649431572),\n", + " ('simple', 0.054484083134924088),\n", + " ('subtle', 0.054368883033508633),\n", + " ('funniest', 0.053457164871302684),\n", " ('solid', 0.052903564743620651),\n", - " ('awesome', 0.052489194202770387),\n", - " ('always', 0.052260328525345283),\n", - " ('noir', 0.05153019472640688),\n", - " ('guys', 0.051109413645642685),\n", - " ('sweet', 0.050818930317526004),\n", - " ('unique', 0.050670162263589155),\n", - " ('very', 0.050132994948528471),\n", - " ('heart', 0.049948058498243596),\n", + " ('awesome', 0.052489194202770408),\n", + " ('always', 0.052260328525345297),\n", + " ('noir', 0.051530194726406894),\n", + " ('guys', 0.051109413645642691),\n", + " ('sweet', 0.05081893031752599),\n", + " ('unique', 0.05067016226358919),\n", + " ('very', 0.050132994948528513),\n", + " ('heart', 0.049948058498243603),\n", " ('moving', 0.049424601164379113),\n", " ('atmosphere', 0.048842500895912855),\n", - " ('strong', 0.048570880631759218),\n", - " ('remember', 0.048479036942291276),\n", - " ('believable', 0.048415384391603762),\n", - " ('shows', 0.048336045608039571),\n", - " ('love', 0.047310648160924645),\n", - " ('beautifully', 0.047118717440814875),\n", - " ('both', 0.046957278901480305),\n", - " ('terrific', 0.046686597975756611),\n", - " ('touching', 0.046589962377280948),\n", - " ('fine', 0.04625643132885577),\n", - " ('caught', 0.046163326224782329),\n", - " ('recommended', 0.045876341160885292),\n", + " ('strong', 0.048570880631759204),\n", + " ('remember', 0.048479036942291262),\n", + " ('believable', 0.048415384391603783),\n", + " ('shows', 0.048336045608039585),\n", + " ('love', 0.047310648160924659),\n", + " ('beautifully', 0.047118717440814903),\n", + " ('both', 0.046957278901480347),\n", + " ('terrific', 0.046686597975756632),\n", + " ('touching', 0.046589962377280962),\n", + " ('fine', 0.046256431328855756),\n", + " ('caught', 0.04616332622478235),\n", + " ('recommended', 0.045876341160885278),\n", " ('jack', 0.045352909975188323),\n", - " ('everyone', 0.045145273964599386),\n", - " ('episodes', 0.045064457062621271),\n", - " ('classic', 0.044985816637932732),\n", - " ('will', 0.044966672557930486),\n", - " ('appreciate', 0.044764139584570865),\n", + " ('everyone', 0.0451452739645994),\n", + " ('episodes', 0.045064457062621285),\n", + " ('classic', 0.044985816637932746),\n", + " ('will', 0.044966672557930465),\n", + " ('appreciate', 0.044764139584570851),\n", " ('powerful', 0.044176442621852774),\n", - " ('realistic', 0.043597482283464786),\n", - " ('performances', 0.043020249087841737),\n", + " ('realistic', 0.043597482283464814),\n", + " ('performances', 0.04302024908784173),\n", " ('human', 0.042657925475092548),\n", " ('expecting', 0.042588442995212208),\n", - " ('each', 0.042163774519666956),\n", - " ('delightful', 0.041815007170235508),\n", - " ('cry', 0.041750968395934812),\n", - " ('enjoy', 0.041660091797818086),\n", + " ('each', 0.042163774519666943),\n", + " ('delightful', 0.041815007170235501),\n", + " ('cry', 0.041750968395934833),\n", + " ('enjoy', 0.041660091797818093),\n", " ('you', 0.041465994778271079),\n", " ('surprisingly', 0.041393139256517386),\n", - " ('think', 0.041103720571057038),\n", - " ('performance', 0.040844259420896839),\n", - " ('nice', 0.040016506666931732),\n", - " ('paced', 0.03994448864759962),\n", - " ('true', 0.039750592643370664),\n", - " ('tight', 0.039425438825552633),\n", - " ('similar', 0.039222380170683496),\n", - " ('friendship', 0.039110112764204286),\n", - " ('somewhat', 0.03906961573101024),\n", - " ('beauty', 0.03813092255473878),\n", - " ('short', 0.03798170013140921),\n", - " ('life', 0.037716639265310235),\n", - " ('stunning', 0.037507364832543751),\n", - " ('still', 0.037479827910101494),\n", - " ('normal', 0.037422144669435102),\n", + " ('think', 0.041103720571057073),\n", + " ('performance', 0.040844259420896853),\n", + " ('nice', 0.04001650666693176),\n", + " ('paced', 0.039944488647599627),\n", + " ('true', 0.039750592643370677),\n", + " ('tight', 0.039425438825552647),\n", + " ('similar', 0.039222380170683489),\n", + " ('friendship', 0.039110112764204306),\n", + " ('somewhat', 0.039069615731010261),\n", + " ('beauty', 0.038130922554738794),\n", + " ('short', 0.037981700131409203),\n", + " ('life', 0.037716639265310249),\n", + " ('stunning', 0.037507364832543771),\n", + " ('still', 0.037479827910101508),\n", + " ('normal', 0.037422144669435116),\n", " ('works', 0.037255830186344194),\n", - " ('appreciated', 0.03715616513806623),\n", - " ('mind', 0.037080739403157779),\n", + " ('appreciated', 0.037156165138066251),\n", + " ('mind', 0.037080739403157773),\n", " ('twists', 0.036932552473074115),\n", " ('knowing', 0.036786021801572075),\n", " ('captures', 0.036467506884494703),\n", - " ('certain', 0.036348359494082841),\n", - " ('later', 0.036210042786765206),\n", + " ('certain', 0.036348359494082834),\n", + " ('later', 0.03621004278676522),\n", " ('finest', 0.036132101827862653),\n", " ('compelling', 0.036098464918935771),\n", - " ('others', 0.036090120202196097),\n", + " ('others', 0.036090120202196069),\n", " ('tragic', 0.036005003580472754),\n", - " ('viewing', 0.035933572455522991),\n", + " ('viewing', 0.035933572455522998),\n", " ('above', 0.035886717849742587),\n", - " ('them', 0.035717513281555757),\n", - " ('matter', 0.035602710619685632),\n", - " ('future', 0.035323777987573392),\n", - " ('good', 0.035250130839512735),\n", + " ('them', 0.035717513281555764),\n", + " ('matter', 0.035602710619685625),\n", + " ('future', 0.03532377798757342),\n", + " ('good', 0.035250130839512755),\n", " ('hooked', 0.035154077227307991),\n", - " ('world', 0.035098777806455032),\n", - " ('unexpected', 0.035078442502957781),\n", - " ('innocent', 0.034765360696729176),\n", - " ('tears', 0.034338309927008842),\n", + " ('world', 0.035098777806455039),\n", + " ('unexpected', 0.035078442502957774),\n", + " ('innocent', 0.034765360696729204),\n", + " ('tears', 0.034338309927008849),\n", " ('certainly', 0.034301037742714126),\n", - " ('available', 0.034268101109487997),\n", + " ('available', 0.034268101109488004),\n", " ('unlike', 0.034253988843446576),\n", - " ('season', 0.034038922427011613),\n", - " ('vhs', 0.034011519281018109),\n", + " ('season', 0.03403892242701162),\n", + " ('vhs', 0.034011519281018122),\n", " ('superior', 0.03391762273249576),\n", - " ('unusual', 0.033797799688239372),\n", - " ('genre', 0.033766115408287244),\n", - " ('criminal', 0.03374447272032683),\n", - " ('makes', 0.033587001877476624),\n", - " ('greatest', 0.033431852271975343),\n", - " ('small', 0.033426529870538409),\n", + " ('unusual', 0.033797799688239365),\n", + " ('genre', 0.033766115408287257),\n", + " ('criminal', 0.033744472720326837),\n", + " ('makes', 0.033587001877476617),\n", + " ('greatest', 0.033431852271975371),\n", + " ('small', 0.033426529870538416),\n", " ('episode', 0.033336443796849899),\n", - " ('deal', 0.033336107665281903),\n", - " ('now', 0.033283339034235485),\n", + " ('deal', 0.03333610766528191),\n", + " ('now', 0.033283339034235492),\n", " ('quiet', 0.033147935977529276),\n", " ('played', 0.033108782201536791),\n", - " ('day', 0.033074949731286586),\n", - " ('moved', 0.03287398075409987),\n", - " ('underrated', 0.032738818192726324),\n", - " ('society', 0.032613580418616235),\n", - " ('focuses', 0.032607333858382818),\n", + " ('day', 0.033074949731286572),\n", + " ('moved', 0.032873980754099891),\n", + " ('underrated', 0.032738818192726331),\n", + " ('society', 0.032613580418616249),\n", + " ('focuses', 0.032607333858382825),\n", " ('intense', 0.032564318613854976),\n", - " ('sharp', 0.032309211040923332),\n", - " ('adds', 0.032236076588351786),\n", - " ('check', 0.032030541149668801),\n", - " ('take', 0.031717140193258622),\n", - " ('deeply', 0.031693099458454568),\n", - " ('games', 0.031663495285720177),\n", + " ('sharp', 0.032309211040923352),\n", + " ('adds', 0.032236076588351807),\n", + " ('check', 0.032030541149668787),\n", + " ('take', 0.031717140193258615),\n", + " ('deeply', 0.031693099458454575),\n", + " ('games', 0.031663495285720163),\n", " ('pre', 0.031251131973427125),\n", - " ('change', 0.031183353959862575),\n", - " ('thanks', 0.031172398048464708),\n", - " ('own', 0.03112133794334708),\n", - " ('easy', 0.031088479340529662),\n", - " ('pace', 0.030934361491678206),\n", - " ('parts', 0.030850186028628306),\n", - " ('truly', 0.030836637734471671),\n", - " ('tony', 0.030739434811745032),\n", - " ('inspired', 0.030725453849735018),\n", + " ('change', 0.031183353959862572),\n", + " ('thanks', 0.031172398048464698),\n", + " ('own', 0.031121337943347097),\n", + " ('easy', 0.031088479340529641),\n", + " ('pace', 0.030934361491678216),\n", + " ('parts', 0.030850186028628292),\n", + " ('truly', 0.030836637734471681),\n", + " ('tony', 0.030739434811745025),\n", + " ('inspired', 0.030725453849735001),\n", " ('thought', 0.030707437377997408),\n", - " ('complex', 0.030464622676702035),\n", - " ('worlds', 0.030391255174782039),\n", - " ('language', 0.030264976200309563),\n", - " ('soundtrack', 0.030210032139046029),\n", - " ('steals', 0.030207167115964786),\n", - " ('glad', 0.029812003262142242),\n", - " ('ride', 0.029801794809751703),\n", - " ('came', 0.029760628313031532),\n", - " ('impact', 0.029695785634015842),\n", + " ('complex', 0.030464622676702028),\n", + " ('worlds', 0.030391255174782045),\n", + " ('language', 0.03026497620030957),\n", + " ('soundtrack', 0.030210032139046033),\n", + " ('steals', 0.030207167115964776),\n", + " ('glad', 0.029812003262142277),\n", + " ('ride', 0.029801794809751706),\n", + " ('came', 0.029760628313031522),\n", + " ('impact', 0.029695785634015856),\n", " ('personally', 0.029677477012254878),\n", - " ('gritty', 0.029540021762614988),\n", - " ('effective', 0.02951238212335534),\n", - " ('wise', 0.029510408701830332),\n", - " ('ultimate', 0.029442440672320935),\n", - " ('ways', 0.029439341792844194),\n", - " ('well', 0.029238386207701295),\n", - " ('sent', 0.02914792439638008),\n", - " ('after', 0.029037668915531258),\n", - " ('tells', 0.029004383695691482),\n", - " ('along', 0.028932972901634917),\n", - " ('modern', 0.028910642159349319),\n", - " ('family', 0.028897380662865547),\n", + " ('gritty', 0.029540021762614992),\n", + " ('effective', 0.029512382123355364),\n", + " ('wise', 0.029510408701830342),\n", + " ('ultimate', 0.029442440672320928),\n", + " ('ways', 0.02943934179284419),\n", + " ('well', 0.029238386207701292),\n", + " ('sent', 0.029147924396380084),\n", + " ('after', 0.029037668915531275),\n", + " ('tells', 0.029004383695691471),\n", + " ('along', 0.028932972901634903),\n", + " ('modern', 0.028910642159349326),\n", + " ('family', 0.028897380662865537),\n", " ('pleasantly', 0.028754280601052389),\n", - " ('edge', 0.02874468747624127),\n", - " ('american', 0.02870639876455441),\n", - " ('england', 0.028640930969798112),\n", - " ('grand', 0.028581102406371923),\n", - " ('slowly', 0.028470328912922976),\n", - " ('treat', 0.028418097520915942),\n", - " ('pleasure', 0.028370704112004163),\n", - " ('living', 0.028335845213660404),\n", - " ('impressed', 0.028311856507726562),\n", - " ('fans', 0.028234674336798951),\n", - " ('suspenseful', 0.028156658725541149),\n", - " ('smile', 0.028065651834597628),\n", - " ('jim', 0.027910842672277562),\n", - " ('saw', 0.027900239466183002),\n", - " ('length', 0.027896431301274532),\n", - " ('impressive', 0.027894778243362787),\n", - " ('times', 0.027869981332762566),\n", - " ('witty', 0.027809121334036412),\n", - " ('flawless', 0.027676409302939117),\n", - " ('magic', 0.027671001404745991),\n", - " ('though', 0.027434087841071538),\n", + " ('edge', 0.028744687476241267),\n", + " ('american', 0.028706398764554431),\n", + " ('england', 0.028640930969798119),\n", + " ('grand', 0.028581102406371937),\n", + " ('slowly', 0.02847032891292298),\n", + " ('treat', 0.028418097520915953),\n", + " ('pleasure', 0.028370704112004173),\n", + " ('living', 0.028335845213660421),\n", + " ('impressed', 0.028311856507726538),\n", + " ('fans', 0.028234674336798979),\n", + " ('suspenseful', 0.028156658725541156),\n", + " ('smile', 0.028065651834597621),\n", + " ('jim', 0.027910842672277558),\n", + " ('saw', 0.027900239466183013),\n", + " ('length', 0.027896431301274525),\n", + " ('impressive', 0.02789477824336279),\n", + " ('times', 0.027869981332762576),\n", + " ('witty', 0.027809121334036409),\n", + " ('flawless', 0.02767640930293911),\n", + " ('magic', 0.027671001404746008),\n", + " ('though', 0.027434087841071542),\n", " ('subtitles', 0.027431981179380463),\n", - " ('stands', 0.027348518548416439),\n", + " ('stands', 0.027348518548416436),\n", " ('freedom', 0.027271908118037393),\n", - " ('relationship', 0.027231146375769125),\n", - " ('tape', 0.027213179198573835),\n", - " ('apartment', 0.027198859160909986),\n", - " ('shown', 0.02706216905870986),\n", - " ('films', 0.027035590529373481),\n", - " ('lot', 0.026934527370476358),\n", - " ('barbara', 0.026837141036193588),\n", + " ('relationship', 0.027231146375769122),\n", + " ('tape', 0.027213179198573845),\n", + " ('apartment', 0.027198859160910003),\n", + " ('shown', 0.027062169058709867),\n", + " ('films', 0.027035590529373463),\n", + " ('lot', 0.026934527370476347),\n", + " ('barbara', 0.026837141036193592),\n", " ('office', 0.026775230449656295),\n", - " ('damn', 0.026751196837598822),\n", - " ('murder', 0.026709073212876602),\n", - " ('brilliantly', 0.026701889741880674),\n", - " ('learns', 0.026699872569574595),\n", - " ('tends', 0.026683774361335753),\n", - " ('complaint', 0.026587011626106855),\n", - " ('themselves', 0.026524658938498952),\n", - " ('war', 0.026518675436425328),\n", - " ('violence', 0.026450628158076164),\n", - " ('judge', 0.026443267774947338),\n", - " ('thriller', 0.0264315550276321),\n", - " ('his', 0.026370773394088602),\n", + " ('damn', 0.026751196837598839),\n", + " ('murder', 0.026709073212876629),\n", + " ('brilliantly', 0.026701889741880664),\n", + " ('learns', 0.026699872569574585),\n", + " ('tends', 0.02668377436133575),\n", + " ('complaint', 0.026587011626106865),\n", + " ('themselves', 0.026524658938498962),\n", + " ('war', 0.026518675436425335),\n", + " ('violence', 0.02645062815807615),\n", + " ('judge', 0.026443267774947349),\n", + " ('thriller', 0.026431555027632107),\n", + " ('his', 0.026370773394088588),\n", " ('finding', 0.026362279892885008),\n", - " ('cast', 0.026360860883736605),\n", - " ('police', 0.026352129453305267),\n", - " ('once', 0.026255817642908203),\n", - " ('spectacular', 0.026245466997092376),\n", - " ('deserves', 0.026214508159961677),\n", - " ('driven', 0.026194930792511627),\n", - " ('spot', 0.026171686780563669),\n", - " ('carrey', 0.026162838804053026),\n", - " ('negative', 0.026161677045062216),\n", - " ('suspense', 0.026110016575822827),\n", - " ('flaws', 0.026085421601700291),\n", + " ('cast', 0.026360860883736632),\n", + " ('police', 0.02635212945330526),\n", + " ('once', 0.026255817642908227),\n", + " ('spectacular', 0.026245466997092369),\n", + " ('deserves', 0.026214508159961698),\n", + " ('driven', 0.026194930792511634),\n", + " ('spot', 0.026171686780563679),\n", + " ('carrey', 0.026162838804053023),\n", + " ('negative', 0.026161677045062212),\n", + " ('suspense', 0.026110016575822799),\n", + " ('flaws', 0.026085421601700295),\n", " ('brave', 0.026080835779725281),\n", - " ('surprising', 0.026070851171974722),\n", + " ('surprising', 0.026070851171974718),\n", " ('gives', 0.026069978044960768),\n", " ('takes', 0.026047493401813337),\n", " ('light', 0.025921067904644504),\n", " ('timing', 0.025900303450693638),\n", - " ('crime', 0.025886011572638666),\n", - " ('thank', 0.025873161609513352),\n", - " ('century', 0.025871056310112623),\n", - " ('until', 0.025870245942132528),\n", - " ('nature', 0.025817942935875436),\n", - " ('stellar', 0.025803971141651155),\n", - " ('emotions', 0.025783809728671912),\n", - " ('tremendous', 0.025772614605786563),\n", - " ('missed', 0.025657501028952579),\n", + " ('crime', 0.025886011572638656),\n", + " ('thank', 0.025873161609513355),\n", + " ('century', 0.025871056310112637),\n", + " ('until', 0.025870245942132521),\n", + " ('nature', 0.02581794293587544),\n", + " ('stellar', 0.025803971141651161),\n", + " ('emotions', 0.025783809728671926),\n", + " ('tremendous', 0.025772614605786566),\n", + " ('missed', 0.025657501028952572),\n", " ('overall', 0.02565565248510179),\n", " ('haven', 0.025650692177140794),\n", - " ('portrayal', 0.025594273657909634),\n", - " ('taylor', 0.025516992710898162),\n", - " ('appropriate', 0.025495908849901636),\n", - " ('joan', 0.025489829859140629),\n", + " ('portrayal', 0.025594273657909641),\n", + " ('taylor', 0.025516992710898172),\n", + " ('appropriate', 0.025495908849901643),\n", + " ('joan', 0.025489829859140632),\n", " ('realize', 0.025452457061382175),\n", - " ('different', 0.025434073970060433),\n", - " ('return', 0.025384569542597584),\n", - " ('bound', 0.025380084410398827),\n", - " ('noticed', 0.02530649499844078),\n", - " ('constantly', 0.025282186745762446),\n", - " ('first', 0.025246100888919813),\n", - " ('lovable', 0.025213500492273052),\n", + " ('different', 0.025434073970060436),\n", + " ('return', 0.025384569542597574),\n", + " ('bound', 0.025380084410398834),\n", + " ('noticed', 0.025306494998440777),\n", + " ('constantly', 0.025282186745762471),\n", + " ('first', 0.02524610088891982),\n", + " ('lovable', 0.025213500492273062),\n", " ('comic', 0.025074597800944062),\n", - " ('scared', 0.024995376513809505),\n", - " ('fight', 0.024943209945836389),\n", - " ('extraordinary', 0.024940366453083614),\n", - " ('buy', 0.024803940824255567),\n", + " ('scared', 0.024995376513809515),\n", + " ('fight', 0.0249432099458364),\n", + " ('extraordinary', 0.024940366453083618),\n", + " ('buy', 0.024803940824255574),\n", " ('know', 0.024749519416087051),\n", - " ('brothers', 0.024675058346350743),\n", - " ('action', 0.024660907824635255),\n", - " ('needs', 0.024634851651549345),\n", - " ('jerry', 0.024621484385343863),\n", - " ('while', 0.024620233313683845),\n", - " ('also', 0.024519480987472416),\n", - " ('definite', 0.024509585305468835),\n", - " ('genius', 0.024500478757646962),\n", - " ('tragedy', 0.024481339186882264),\n", - " ('heard', 0.024446567944460464),\n", - " ('haunting', 0.024431007352898909),\n", - " ('legendary', 0.024412777264908959),\n", - " ('uses', 0.024358972452013992),\n", - " ('years', 0.024316094895735267),\n", + " ('brothers', 0.024675058346350739),\n", + " ('action', 0.024660907824635248),\n", + " ('needs', 0.024634851651549348),\n", + " ('jerry', 0.02462148438534386),\n", + " ('while', 0.024620233313683841),\n", + " ('also', 0.02451948098747242),\n", + " ('definite', 0.024509585305468838),\n", + " ('genius', 0.024500478757646958),\n", + " ('tragedy', 0.024481339186882271),\n", + " ('heard', 0.024446567944460481),\n", + " ('haunting', 0.024431007352898923),\n", + " ('legendary', 0.024412777264908966),\n", + " ('uses', 0.024358972452014009),\n", + " ('years', 0.024316094895735264),\n", " ('notch', 0.024310571597216273),\n", - " ('fabulous', 0.024258810824927628),\n", + " ('fabulous', 0.024258810824927632),\n", " ('herself', 0.024241390957491043),\n", - " ('battle', 0.024205827940178146),\n", - " ('ralph', 0.024205046194653308),\n", - " ('provoking', 0.0241061060624818),\n", - " ('ago', 0.024024541904156489),\n", - " ('game', 0.024004541901512372),\n", - " ('deals', 0.023947020249030979),\n", - " ('themes', 0.023936597120221118),\n", - " ('my', 0.023928374753346051),\n", - " ('which', 0.023908264765228723),\n", - " ('together', 0.023887683942808203),\n", - " ('record', 0.023879473557965498),\n", - " ('chilling', 0.023877413677317424),\n", - " ('absorbing', 0.023848541510400108),\n", + " ('battle', 0.024205827940178126),\n", + " ('ralph', 0.024205046194653305),\n", + " ('provoking', 0.02410610606248181),\n", + " ('ago', 0.024024541904156496),\n", + " ('game', 0.024004541901512366),\n", + " ('deals', 0.023947020249030993),\n", + " ('themes', 0.023936597120221125),\n", + " ('my', 0.023928374753346023),\n", + " ('which', 0.023908264765228733),\n", + " ('together', 0.023887683942808231),\n", + " ('record', 0.023879473557965516),\n", + " ('chilling', 0.023877413677317428),\n", + " ('absorbing', 0.023848541510400115),\n", " ('studios', 0.023840610970325322),\n", - " ('helps', 0.023800338082370937),\n", - " ('paul', 0.023782537407117974),\n", - " ('drama', 0.023766688862014742),\n", - " ('spots', 0.023727534480488418),\n", - " ('japanese', 0.02370847543051148),\n", - " ('com', 0.023663537310393373),\n", - " ('meets', 0.02364941593652313),\n", - " ('may', 0.023577512715288886),\n", - " ('goal', 0.023571992449256608),\n", - " ('out', 0.023558753773465099),\n", - " ('page', 0.023530160671184869),\n", - " ('con', 0.023523200814540523),\n", - " ('thankfully', 0.023405004970711695),\n", - " ('number', 0.023389568775323527),\n", + " ('helps', 0.023800338082370951),\n", + " ('paul', 0.023782537407117964),\n", + " ('drama', 0.023766688862014728),\n", + " ('spots', 0.023727534480488404),\n", + " ('japanese', 0.023708475430511473),\n", + " ('com', 0.023663537310393366),\n", + " ('meets', 0.023649415936523161),\n", + " ('may', 0.023577512715288875),\n", + " ('goal', 0.023571992449256601),\n", + " ('out', 0.02355875377346511),\n", + " ('page', 0.023530160671184866),\n", + " ('con', 0.023523200814540519),\n", + " ('thankfully', 0.023405004970711702),\n", + " ('number', 0.023389568775323534),\n", " ('captured', 0.023351056068531214),\n", - " ('joy', 0.023338854638575421),\n", - " ('brought', 0.023336907813285956),\n", - " ('max', 0.023250909447975861),\n", + " ('joy', 0.023338854638575431),\n", + " ('brought', 0.023336907813285939),\n", + " ('max', 0.023250909447975868),\n", " ('superbly', 0.023239871167515601),\n", - " ('those', 0.023176845007530658),\n", - " ('course', 0.023170128305056527),\n", - " ('inspiring', 0.023124940469820013),\n", - " ('troubled', 0.023104553288143287),\n", - " ('starring', 0.023098181939380295),\n", - " ('famous', 0.023080990484234912),\n", - " ('nowadays', 0.023041214534459804),\n", - " ('gripping', 0.023039160339941946),\n", - " ('identity', 0.023038352369265186),\n", - " ('many', 0.023030059748964177),\n", - " ('victor', 0.023028627724258649),\n", - " ('michael', 0.022946522358330845),\n", - " ('stop', 0.022927047859442069),\n", - " ('eerie', 0.022877301562370819),\n", - " ('seen', 0.022820929217422667),\n", - " ('caused', 0.02279167067216753),\n", - " ('moment', 0.022789062338184261),\n", - " ('portraying', 0.022729334983088947),\n", - " ('influence', 0.022698569029077065),\n", - " ('when', 0.022541791159242767),\n", - " ('touched', 0.022525639292270198),\n", - " ('complicated', 0.022432126566344631),\n", - " ('turns', 0.022415566693423841),\n", - " ('young', 0.022415228068631995),\n", - " ('award', 0.022414761392271609),\n", - " ('put', 0.022325849008177176),\n", - " ('trust', 0.022301497663936402),\n", - " ('issues', 0.022257753376187496),\n", - " ('innocence', 0.022236928993752812),\n", - " ('anime', 0.022201683728338893),\n", + " ('those', 0.023176845007530648),\n", + " ('course', 0.02317012830505652),\n", + " ('inspiring', 0.02312494046982002),\n", + " ('troubled', 0.02310455328814329),\n", + " ('starring', 0.023098181939380305),\n", + " ('famous', 0.023080990484234922),\n", + " ('nowadays', 0.023041214534459811),\n", + " ('gripping', 0.023039160339941949),\n", + " ('identity', 0.023038352369265179),\n", + " ('many', 0.023030059748964167),\n", + " ('victor', 0.023028627724258646),\n", + " ('michael', 0.022946522358330855),\n", + " ('stop', 0.022927047859442076),\n", + " ('eerie', 0.022877301562370823),\n", + " ('seen', 0.022820929217422643),\n", + " ('caused', 0.022791670672167523),\n", + " ('moment', 0.022789062338184285),\n", + " ('portraying', 0.022729334983088958),\n", + " ('influence', 0.022698569029077079),\n", + " ('when', 0.022541791159242774),\n", + " ('touched', 0.022525639292270219),\n", + " ('complicated', 0.022432126566344645),\n", + " ('turns', 0.022415566693423844),\n", + " ('young', 0.022415228068632002),\n", + " ('award', 0.022414761392271613),\n", + " ('put', 0.022325849008177179),\n", + " ('trust', 0.022301497663936395),\n", + " ('issues', 0.022257753376187493),\n", + " ('innocence', 0.022236928993752816),\n", + " ('anime', 0.022201683728338903),\n", " ('without', 0.022144543987858849),\n", - " ('himself', 0.0220682407058744),\n", - " ('charlie', 0.022052037301460183),\n", - " ('parents', 0.021888138202371756),\n", - " ('covered', 0.021887533337961746),\n", + " ('himself', 0.022068240705874407),\n", + " ('charlie', 0.022052037301460173),\n", + " ('parents', 0.021888138202371753),\n", + " ('covered', 0.02188753333796175),\n", " ('final', 0.021877215769079514),\n", - " ('killers', 0.021830664900395116),\n", - " ('ages', 0.021774376677575591),\n", + " ('killers', 0.021830664900395112),\n", + " ('ages', 0.021774376677575587),\n", " ('usual', 0.021760980512718141),\n", - " ('physical', 0.021749103191221822),\n", - " ('like', 0.021730991541426752),\n", - " ('crazy', 0.021727382570242978),\n", - " ('puts', 0.021725737321791533),\n", - " ('got', 0.021701574500289093),\n", - " ('room', 0.021690968569465653),\n", + " ('physical', 0.021749103191221815),\n", + " ('like', 0.021730991541426756),\n", + " ('crazy', 0.021727382570242999),\n", + " ('puts', 0.021725737321791526),\n", + " ('got', 0.021701574500289107),\n", + " ('room', 0.021690968569465618),\n", " ('complaints', 0.021670426593916561),\n", - " ('type', 0.021663628982945164),\n", + " ('type', 0.02166362898294516),\n", " ('brings', 0.021600600975875413),\n", - " ('remarkable', 0.02157679171939603),\n", - " ('get', 0.021538325389801369),\n", - " ('city', 0.021523385378314861),\n", - " ('coming', 0.021492351614142789),\n", - " ('traditional', 0.021430875828269792),\n", - " ('romantic', 0.021420587536168538),\n", - " ('cinema', 0.021411776829230969),\n", - " ('regular', 0.021395882255575836),\n", - " ('intelligent', 0.021391350897315451),\n", - " ('music', 0.021381013806527453),\n", - " ('humor', 0.021365697759571513),\n", - " ('experience', 0.021314525649372938),\n", + " ('remarkable', 0.021576791719396034),\n", + " ('get', 0.021538325389801358),\n", + " ('city', 0.021523385378314889),\n", + " ('coming', 0.021492351614142785),\n", + " ('traditional', 0.021430875828269805),\n", + " ('romantic', 0.021420587536168555),\n", + " ('cinema', 0.021411776829230973),\n", + " ('regular', 0.021395882255575847),\n", + " ('intelligent', 0.021391350897315441),\n", + " ('music', 0.021381013806527439),\n", + " ('humor', 0.021365697759571502),\n", + " ('experience', 0.021314525649372928),\n", " ('favourite', 0.021253476483878254),\n", - " ('social', 0.021250085255237382),\n", - " ('feelings', 0.021245030895714351),\n", - " ('cried', 0.021233271641070747),\n", - " ('rock', 0.02121328002983236),\n", - " ('against', 0.021157314119587278),\n", + " ('social', 0.021250085255237368),\n", + " ('feelings', 0.021245030895714362),\n", + " ('cried', 0.02123327164107075),\n", + " ('rock', 0.021213280029832367),\n", + " ('against', 0.021157314119587267),\n", " ('including', 0.021156674122491392),\n", - " ('honest', 0.021143458758793497),\n", - " ('parallel', 0.021107353247706448),\n", - " ('eddie', 0.021080182147252737),\n", - " ('crafted', 0.020979194953745079),\n", - " ('more', 0.020933797343193807),\n", - " ('glued', 0.020931988721930157),\n", - " ('insanity', 0.020914935599101153),\n", - " ('thoroughly', 0.020905661542252766),\n", - " ('eyes', 0.020868013291281091),\n", - " ('jr', 0.020865268971014535),\n", - " ('dramas', 0.020836398428109224),\n", + " ('honest', 0.021143458758793494),\n", + " ('parallel', 0.021107353247706462),\n", + " ('eddie', 0.021080182147252727),\n", + " ('crafted', 0.020979194953745083),\n", + " ('more', 0.020933797343193814),\n", + " ('glued', 0.02093198872193016),\n", + " ('insanity', 0.020914935599101157),\n", + " ('thoroughly', 0.020905661542252783),\n", + " ('eyes', 0.020868013291281087),\n", + " ('jr', 0.020865268971014529),\n", + " ('dramas', 0.020836398428109228),\n", " ('follows', 0.020814937146708415),\n", - " ('situation', 0.020814821105666469),\n", - " ('understood', 0.020749677092470175),\n", - " ('face', 0.020701739464945048),\n", - " ('albeit', 0.02068034038987842),\n", + " ('situation', 0.020814821105666476),\n", + " ('understood', 0.020749677092470178),\n", + " ('face', 0.020701739464945058),\n", + " ('albeit', 0.020680340389878413),\n", " ('memorable', 0.020608260124115516),\n", - " ('accurate', 0.020585303033408747),\n", - " ('under', 0.020574430698374217),\n", - " ('arthur', 0.020562083939889463),\n", - " ('elderly', 0.02054535047180811),\n", - " ('opinion', 0.020539570922797758),\n", - " ('whoopi', 0.020515675744150082),\n", - " ('helped', 0.020476242337130534),\n", - " ('detract', 0.020443807698341677),\n", + " ('accurate', 0.020585303033408751),\n", + " ('under', 0.020574430698374249),\n", + " ('arthur', 0.020562083939889477),\n", + " ('elderly', 0.020545350471808114),\n", + " ('opinion', 0.020539570922797755),\n", + " ('whoopi', 0.020515675744150072),\n", + " ('helped', 0.020476242337130524),\n", + " ('detract', 0.020443807698341681),\n", " ('flawed', 0.020436371691432333),\n", - " ('unusually', 0.020433523835905326),\n", - " ('performing', 0.020396957567555721),\n", - " ('smooth', 0.020347681451465378),\n", - " ('magnificent', 0.020334637688102834),\n", - " ('desperation', 0.02028776899905723),\n", - " ('lose', 0.02027753568325787),\n", - " ('satisfying', 0.020251527110272047),\n", - " ('friend', 0.020227651020398921),\n", + " ('unusually', 0.02043352383590533),\n", + " ('performing', 0.020396957567555725),\n", + " ('smooth', 0.020347681451465375),\n", + " ('magnificent', 0.020334637688102845),\n", + " ('desperation', 0.020287768999057237),\n", + " ('lose', 0.020277535683257859),\n", + " ('satisfying', 0.020251527110272057),\n", + " ('friend', 0.020227651020398935),\n", " ('kudos', 0.02020147732692662),\n", - " ('breaking', 0.020117861519854285),\n", - " ('elephant', 0.020115783447057042),\n", - " ('colors', 0.02011215598776487),\n", - " ('willing', 0.02008772804022433),\n", - " ('fresh', 0.020054019123593746),\n", - " ('offers', 0.020003415308141058),\n", + " ('breaking', 0.020117861519854296),\n", + " ('elephant', 0.020115783447057049),\n", + " ('colors', 0.020112155987764876),\n", + " ('willing', 0.020087728040224333),\n", + " ('fresh', 0.02005401912359376),\n", + " ('offers', 0.020003415308141068),\n", " ('provides', 0.020002909565985022),\n", - " ('guilt', 0.019987917970659567),\n", - " ('shouldn', 0.019907879458024372),\n", - " ('japan', 0.019906368589571705),\n", - " ('secrets', 0.019876976104814394),\n", + " ('guilt', 0.019987917970659564),\n", + " ('shouldn', 0.019907879458024368),\n", + " ('japan', 0.019906368589571687),\n", + " ('secrets', 0.019876976104814401),\n", " ('obligatory', 0.019789665431840416),\n", - " ('dvd', 0.019782796187823439),\n", - " ('tale', 0.019752149872839873),\n", - " ('since', 0.019726258912690309),\n", - " ('roles', 0.019710495505207985),\n", - " ('breathtaking', 0.019705824135660528),\n", - " ('ground', 0.01968723652496188),\n", - " ('higher', 0.019670526139537552),\n", - " ('jean', 0.019665400087401603),\n", - " ('rich', 0.01965309571666073),\n", - " ('right', 0.019629293580435726),\n", - " ('stone', 0.019610595905669104),\n", - " ('lives', 0.019610348936710129),\n", - " ('it', 0.01954200230327759),\n", - " ('essential', 0.01953386009392041),\n", + " ('dvd', 0.019782796187823446),\n", + " ('tale', 0.019752149872839877),\n", + " ('since', 0.019726258912690295),\n", + " ('roles', 0.019710495505207995),\n", + " ('breathtaking', 0.019705824135660535),\n", + " ('ground', 0.019687236524961883),\n", + " ('higher', 0.019670526139537559),\n", + " ('jean', 0.019665400087401592),\n", + " ('rich', 0.019653095716660723),\n", + " ('right', 0.01962929358043573),\n", + " ('stone', 0.0196105959056691),\n", + " ('lives', 0.019610348936710136),\n", + " ('it', 0.019542002303277566),\n", + " ('essential', 0.019533860093920413),\n", " ('tend', 0.019523404457496816),\n", - " ('places', 0.019510216587218011),\n", - " ('recommend', 0.019506211559818132),\n", + " ('places', 0.019510216587218025),\n", + " ('recommend', 0.019506211559818118),\n", " ('loy', 0.019481148560970923),\n", - " ('tell', 0.01945028666926877),\n", - " ('challenge', 0.019374490591710942),\n", - " ('fiction', 0.019350601498735364),\n", - " ('able', 0.019340445094151421),\n", + " ('tell', 0.019450286669268763),\n", + " ('challenge', 0.019374490591710931),\n", + " ('fiction', 0.019350601498735374),\n", + " ('able', 0.019340445094151441),\n", " ('animated', 0.019333069625267079),\n", " ('complain', 0.019332028796550105),\n", - " ('deeper', 0.019318681931941164),\n", - " ('blew', 0.019304454395430118),\n", - " ('seeing', 0.019302442445035511),\n", - " ('release', 0.019209904006239124),\n", + " ('deeper', 0.019318681931941171),\n", + " ('blew', 0.019304454395430132),\n", + " ('seeing', 0.019302442445035515),\n", + " ('release', 0.019209904006239131),\n", " ('unfolds', 0.019184703456013676),\n", - " ('boys', 0.0191774147531584),\n", - " ('favorites', 0.019160378141489527),\n", - " ('throughout', 0.019136892845690683),\n", - " ('marvelous', 0.019110015321943567),\n", - " ('relax', 0.019044075162625459),\n", - " ('desire', 0.019016117204605981),\n", + " ('boys', 0.019177414753158397),\n", + " ('favorites', 0.01916037814148952),\n", + " ('throughout', 0.01913689284569068),\n", + " ('marvelous', 0.019110015321943574),\n", + " ('relax', 0.019044075162625462),\n", + " ('desire', 0.019016117204605987),\n", " ('end', 0.019014420138293207),\n", - " ('questions', 0.018977699968684838),\n", - " ('man', 0.018956744494720238),\n", - " ('rea', 0.018928733395777452),\n", - " ('comments', 0.018923870708363075),\n", - " ('vengeance', 0.018908638777923939),\n", - " ('brian', 0.01890687632302358),\n", - " ('learned', 0.01889994792370444),\n", - " ('lovely', 0.018854980464698638),\n", - " ('seasons', 0.018852496578683809),\n", - " ('shines', 0.018827509959493262),\n", - " ('justice', 0.018827310862034659),\n", - " ('succeeds', 0.018776998522312772),\n", - " ('discovered', 0.018766802216817063),\n", - " ('touch', 0.018762806738861465),\n", - " ('white', 0.01874322569741417),\n", - " ('bitter', 0.018724701999912885),\n", - " ('knows', 0.018719063288744269),\n", - " ('gene', 0.01866006079655624),\n", - " ('mainstream', 0.018654252436913907),\n", - " ('raw', 0.018609728881254815),\n", - " ('focus', 0.018605078305494911),\n", - " ('won', 0.018597537876871656),\n", - " ('ve', 0.018560162581379297),\n", - " ('million', 0.018514133006256907),\n", - " ('attention', 0.01840654768263713),\n", - " ('river', 0.018403383531225694),\n", - " ('classics', 0.018375185367387359),\n", - " ('quirky', 0.018358100535754606),\n", - " ('although', 0.018350252973821913),\n", - " ('september', 0.018345012211358883),\n", - " ('emotional', 0.018327165070951727),\n", + " ('questions', 0.018977699968684845),\n", + " ('man', 0.018956744494720245),\n", + " ('rea', 0.018928733395777456),\n", + " ('comments', 0.018923870708363082),\n", + " ('vengeance', 0.018908638777923942),\n", + " ('brian', 0.01890687632302359),\n", + " ('learned', 0.01889994792370445),\n", + " ('lovely', 0.018854980464698634),\n", + " ('seasons', 0.018852496578683826),\n", + " ('shines', 0.018827509959493269),\n", + " ('justice', 0.018827310862034655),\n", + " ('succeeds', 0.018776998522312776),\n", + " ('discovered', 0.018766802216817056),\n", + " ('touch', 0.018762806738861479),\n", + " ('white', 0.018743225697414184),\n", + " ('bitter', 0.018724701999912892),\n", + " ('knows', 0.01871906328874428),\n", + " ('gene', 0.018660060796556237),\n", + " ('mainstream', 0.018654252436913901),\n", + " ('raw', 0.018609728881254829),\n", + " ('focus', 0.018605078305494918),\n", + " ('won', 0.018597537876871652),\n", + " ('ve', 0.018560162581379321),\n", + " ('million', 0.018514133006256917),\n", + " ('attention', 0.018406547682637137),\n", + " ('river', 0.018403383531225701),\n", + " ('classics', 0.018375185367387355),\n", + " ('quirky', 0.01835810053575461),\n", + " ('although', 0.01835025297382192),\n", + " ('september', 0.018345012211358886),\n", + " ('emotional', 0.01832716507095174),\n", " ('events', 0.018324554475918117),\n", " ('released', 0.018304767183625541),\n", " ('thus', 0.018302709016086088),\n", - " ('rules', 0.018298967789718668),\n", - " ('trilogy', 0.018261985922288494),\n", - " ('jackie', 0.018261017705562564),\n", - " ('country', 0.018248984107628798),\n", - " ('find', 0.018220001120247329),\n", - " ('sure', 0.018205281970545904),\n", - " ('overlooked', 0.018173644592107397),\n", - " ('sensitive', 0.018173518786609142),\n", + " ('rules', 0.018298967789718682),\n", + " ('trilogy', 0.0182619859222885),\n", + " ('jackie', 0.018261017705562568),\n", + " ('country', 0.018248984107628787),\n", + " ('find', 0.018220001120247332),\n", + " ('sure', 0.018205281970545901),\n", + " ('overlooked', 0.018173644592107383),\n", + " ('sensitive', 0.018173518786609156),\n", " ('harsh', 0.018143998075916403),\n", - " ('chair', 0.018127987063468087),\n", - " ('neatly', 0.018123044612179444),\n", - " ('round', 0.018082305853658352),\n", - " ('adult', 0.018060718859389521),\n", - " ('strength', 0.018042558269708915),\n", - " ('aunt', 0.018028313353173654),\n", + " ('chair', 0.018127987063468097),\n", + " ('neatly', 0.018123044612179437),\n", + " ('round', 0.018082305853658363),\n", + " ('adult', 0.018060718859389525),\n", + " ('strength', 0.018042558269708926),\n", + " ('aunt', 0.018028313353173661),\n", " ('description', 0.01799755734083397),\n", - " ('perspective', 0.017974761193339683),\n", - " ('closer', 0.017945066423908036),\n", - " ('extra', 0.017934760731343095),\n", - " ('hit', 0.017910740181690341),\n", - " ('tough', 0.017904509470376233),\n", - " ('work', 0.017882494289916073),\n", + " ('perspective', 0.01797476119333969),\n", + " ('closer', 0.01794506642390805),\n", + " ('extra', 0.017934760731343122),\n", + " ('hit', 0.017910740181690345),\n", + " ('tough', 0.01790450947037624),\n", + " ('work', 0.017882494289916076),\n", " ('captivating', 0.017875072308920943),\n", - " ('swim', 0.017853354272014847),\n", + " ('swim', 0.01785335427201485),\n", " ('holmes', 0.017846058193393122),\n", " ('unlikely', 0.017843839699452125),\n", - " ('fears', 0.017838067451752784),\n", - " ('nominated', 0.017837439304520586),\n", - " ('neat', 0.017823068474913179),\n", + " ('fears', 0.017838067451752794),\n", + " ('nominated', 0.017837439304520593),\n", + " ('neat', 0.01782306847491319),\n", " ('discovers', 0.017801301834152457),\n", - " ('paris', 0.017798057884200066),\n", - " ('streets', 0.017746147480597593),\n", - " ('realism', 0.017729724930388036),\n", - " ('travel', 0.017694257020940286),\n", - " ('keep', 0.01768440008909012),\n", - " ('anyway', 0.017675995400919464),\n", - " ('realizes', 0.017618932935696139),\n", - " ('variety', 0.017618487604827659),\n", - " ('chief', 0.017603963834362822),\n", - " ('broke', 0.017601657476194948),\n", + " ('paris', 0.017798057884200084),\n", + " ('streets', 0.0177461474805976),\n", + " ('realism', 0.017729724930388047),\n", + " ('travel', 0.017694257020940282),\n", + " ('keep', 0.017684400089090113),\n", + " ('anyway', 0.017675995400919457),\n", + " ('realizes', 0.017618932935696153),\n", + " ('variety', 0.017618487604827645),\n", + " ('chief', 0.017603963834362819),\n", + " ('broke', 0.017601657476194955),\n", " ('craven', 0.017597613499935327),\n", - " ('moves', 0.017559744221771686),\n", - " ('see', 0.017554713803040179),\n", - " ('intellectual', 0.017537349329235126),\n", - " ('normally', 0.017511237908563505),\n", + " ('moves', 0.017559744221771683),\n", + " ('see', 0.017554713803040186),\n", + " ('intellectual', 0.017537349329235116),\n", + " ('normally', 0.017511237908563512),\n", " ('technique', 0.01750226507783019),\n", - " ('dancer', 0.017501395365645246),\n", + " ('dancer', 0.017501395365645257),\n", " ('awe', 0.017467446640641388),\n", - " ('technology', 0.017414969148737195),\n", - " ('kelly', 0.017380794671638243),\n", - " ('particular', 0.017380503339109246),\n", - " ('awards', 0.017343067374305077),\n", - " ('twisted', 0.017342731655512186),\n", - " ('manager', 0.017337683585341688),\n", - " ('fantasy', 0.017314736380004716),\n", - " ('blake', 0.017282963990552187),\n", - " ('criticism', 0.017279558676803679),\n", - " ('identify', 0.017277471199843658),\n", - " ('collection', 0.01725353305226094),\n", - " ('sidney', 0.017239120845031545),\n", - " ('ironic', 0.017225809884120886),\n", - " ('score', 0.017223046869263504),\n", - " ('charm', 0.017204164112517874),\n", - " ('lonely', 0.017192972607511969),\n", - " ('recall', 0.01718951228267028),\n", - " ('dream', 0.017185607849471304),\n", - " ('known', 0.017169341473045805),\n", - " ('hoffman', 0.017123937023014232),\n", - " ('answers', 0.017112374531695264),\n", - " ('taking', 0.017102244694823292),\n", - " ('color', 0.017086755659474449),\n", - " ('existed', 0.01708449183478003),\n", - " ('mel', 0.017080644125498482),\n", - " ('treats', 0.017076365809061682),\n", - " ('kennedy', 0.017063054110179405),\n", - " ('millionaire', 0.017058120181534069),\n", - " ('stewart', 0.017017863935395124),\n", + " ('technology', 0.017414969148737192),\n", + " ('kelly', 0.017380794671638271),\n", + " ('particular', 0.017380503339109239),\n", + " ('awards', 0.01734306737430508),\n", + " ('twisted', 0.017342731655512204),\n", + " ('manager', 0.017337683585341681),\n", + " ('fantasy', 0.017314736380004709),\n", + " ('blake', 0.017282963990552191),\n", + " ('criticism', 0.017279558676803683),\n", + " ('identify', 0.017277471199843665),\n", + " ('collection', 0.017253533052260933),\n", + " ('sidney', 0.017239120845031552),\n", + " ('ironic', 0.017225809884120889),\n", + " ('score', 0.017223046869263507),\n", + " ('charm', 0.017204164112517881),\n", + " ('lonely', 0.017192972607511965),\n", + " ('recall', 0.017189512282670277),\n", + " ('dream', 0.017185607849471315),\n", + " ('known', 0.017169341473045802),\n", + " ('hoffman', 0.017123937023014242),\n", + " ('answers', 0.017112374531695257),\n", + " ('taking', 0.017102244694823326),\n", + " ('color', 0.017086755659474453),\n", + " ('existed', 0.017084491834780034),\n", + " ('mel', 0.017080644125498479),\n", + " ('treats', 0.017076365809061671),\n", + " ('kennedy', 0.017063054110179412),\n", + " ('millionaire', 0.017058120181534072),\n", + " ('stewart', 0.01701786393539512),\n", " ('soon', 0.017016949690113498),\n", - " ('style', 0.016978446616527428),\n", - " ('urban', 0.01696177374188856),\n", - " ('sides', 0.016958377563876269),\n", - " ('nicely', 0.016956584044665057),\n", - " ('survive', 0.016953201066203537),\n", - " ('contrast', 0.016949017788907714),\n", - " ('granted', 0.016948500759420806),\n", + " ('style', 0.016978446616527421),\n", + " ('urban', 0.016961773741888564),\n", + " ('sides', 0.016958377563876279),\n", + " ('nicely', 0.01695658404466506),\n", + " ('survive', 0.016953201066203551),\n", + " ('contrast', 0.016949017788907696),\n", + " ('granted', 0.016948500759420799),\n", " ('wes', 0.016856895803564042),\n", - " ('heroic', 0.016849533387674559),\n", + " ('heroic', 0.016849533387674569),\n", " ('sadness', 0.016836182986070536),\n", - " ('faults', 0.016833966998505416),\n", + " ('faults', 0.016833966998505413),\n", " ('ladies', 0.016818146836646248),\n", - " ('walter', 0.016813645209614796),\n", + " ('walter', 0.0168136452096148),\n", " ('exceptional', 0.01681024298533729),\n", - " ('dangerous', 0.016796058008032438),\n", - " ('fan', 0.016737120507724367),\n", + " ('dangerous', 0.016796058008032445),\n", + " ('fan', 0.016737120507724371),\n", " ('witch', 0.016717085914917346),\n", - " ('occasionally', 0.016711349636820454),\n", - " ('movies', 0.016676687954063647),\n", + " ('occasionally', 0.016711349636820475),\n", + " ('movies', 0.01667668795406364),\n", " ('celebration', 0.016664197566723736),\n", - " ('castle', 0.016661909651854559),\n", - " ('catch', 0.016647995152024701),\n", - " ('its', 0.016639302941262323),\n", + " ('castle', 0.016661909651854552),\n", + " ('catch', 0.016647995152024704),\n", + " ('its', 0.016639302941262302),\n", " ('tribute', 0.016629617927918804),\n", - " ('jimmy', 0.016625132101972966),\n", + " ('jimmy', 0.016625132101972973),\n", " ('bravo', 0.016616754156460037),\n", - " ('enjoying', 0.016613140144305677),\n", - " ('bus', 0.016593157501778099),\n", - " ('documentary', 0.016564651461285367),\n", - " ('frightening', 0.016559987706802767),\n", - " ('guilty', 0.016536110253664239),\n", - " ('slightly', 0.016526421724199349),\n", - " ('is', 0.016511509443399758),\n", + " ('enjoying', 0.016613140144305663),\n", + " ('bus', 0.016593157501778106),\n", + " ('documentary', 0.016564651461285374),\n", + " ('frightening', 0.016559987706802764),\n", + " ('guilty', 0.016536110253664232),\n", + " ('slightly', 0.016526421724199342),\n", + " ('is', 0.016511509443399769),\n", " ('chan', 0.016507204515006656),\n", - " ('mixed', 0.016506847567311397),\n", - " ('curious', 0.016506488394564572),\n", - " ('spirit', 0.016502977044099091),\n", + " ('mixed', 0.016506847567311404),\n", + " ('curious', 0.016506488394564568),\n", + " ('spirit', 0.016502977044099098),\n", " ('pleased', 0.016487261129390262),\n", - " ('most', 0.016476759333214085),\n", - " ('chemistry', 0.016425356343989068),\n", - " ('age', 0.016410666314929875),\n", + " ('most', 0.016476759333214089),\n", + " ('chemistry', 0.016425356343989065),\n", + " ('age', 0.016410666314929899),\n", " ('understanding', 0.01634569620294557),\n", - " ('marie', 0.016341053241072708),\n", + " ('marie', 0.016341053241072698),\n", " ('dreams', 0.016332672013556312),\n", - " ('again', 0.01628709097393774),\n", + " ('again', 0.016287090973937754),\n", " ('union', 0.016282379359022558),\n", - " ('spy', 0.016278154923785919),\n", - " ('presented', 0.016273043238663486),\n", + " ('spy', 0.016278154923785922),\n", + " ('presented', 0.016273043238663475),\n", " ('steele', 0.0162609933390068),\n", " ('lay', 0.01625999545879786),\n", - " ('plenty', 0.01624719418983283),\n", - " ('horrors', 0.016246022980305589),\n", + " ('plenty', 0.016247194189832843),\n", + " ('horrors', 0.016246022980305592),\n", " ('black', 0.016223176851856813),\n", - " ('comedy', 0.016220408022010604),\n", - " ('winner', 0.016220318857398403),\n", - " ('african', 0.016214456609794953),\n", - " ('drummer', 0.016178152199513924),\n", - " ('entertainment', 0.016173112007890948),\n", - " ('delivers', 0.016166599465683079),\n", - " ('stays', 0.016139476352793773),\n", - " ('america', 0.016108896341111501),\n", - " ('disappoint', 0.016066615933996449),\n", - " ('gorgeous', 0.016062350166815051),\n", - " ('sisters', 0.016060080355840691),\n", - " ('subsequent', 0.016043574203873968),\n", - " ('cerebral', 0.016039058904070019),\n", - " ('french', 0.016038425317363176),\n", + " ('comedy', 0.0162204080220106),\n", + " ('winner', 0.016220318857398407),\n", + " ('african', 0.01621445660979496),\n", + " ('drummer', 0.016178152199513931),\n", + " ('entertainment', 0.016173112007890969),\n", + " ('delivers', 0.016166599465683076),\n", + " ('stays', 0.016139476352793777),\n", + " ('america', 0.016108896341111505),\n", + " ('disappoint', 0.016066615933996442),\n", + " ('gorgeous', 0.016062350166815047),\n", + " ('sisters', 0.016060080355840684),\n", + " ('subsequent', 0.016043574203873964),\n", + " ('cerebral', 0.016039058904070029),\n", + " ('french', 0.016038425317363183),\n", " ('perfection', 0.016033154869346922),\n", - " ('likable', 0.016021713396124571),\n", - " ('warm', 0.016019144095827352),\n", - " ('studio', 0.016007232818464577),\n", - " ('late', 0.015997923350457063),\n", - " ('reality', 0.01597887224942373),\n", + " ('likable', 0.016021713396124574),\n", + " ('warm', 0.016019144095827349),\n", + " ('studio', 0.01600723281846457),\n", + " ('late', 0.015997923350457056),\n", + " ('reality', 0.015978872249423726),\n", " ('showed', 0.015938750644323936),\n", - " ('figures', 0.015927446608923233),\n", - " ('ever', 0.015926454600790636),\n", - " ('italy', 0.015909186780479367),\n", - " ('accustomed', 0.015906246911558276),\n", - " ('into', 0.01589217368161798),\n", - " ('he', 0.015866239932092352),\n", - " ('journey', 0.015817191390925509),\n", - " ('waters', 0.015800906878826303),\n", - " ('bill', 0.015785976148791341),\n", + " ('figures', 0.01592744660892324),\n", + " ('ever', 0.015926454600790653),\n", + " ('italy', 0.015909186780479364),\n", + " ('accustomed', 0.015906246911558283),\n", + " ('into', 0.015892173681617969),\n", + " ('he', 0.015866239932092345),\n", + " ('journey', 0.015817191390925515),\n", + " ('waters', 0.015800906878826314),\n", + " ('bill', 0.01578597614879133),\n", " ('cousin', 0.015784382710801671),\n", - " ('explores', 0.015768756345569589),\n", - " ('originally', 0.015766016465315412),\n", - " ('astonishing', 0.015741175347778344),\n", - " ('mouse', 0.015739473070555076),\n", - " ('affect', 0.015719798460443274),\n", - " ('authenticity', 0.015716491136675281),\n", + " ('explores', 0.015768756345569585),\n", + " ('originally', 0.015766016465315408),\n", + " ('astonishing', 0.015741175347778351),\n", + " ('mouse', 0.015739473070555069),\n", + " ('affect', 0.015719798460443277),\n", + " ('authenticity', 0.015716491136675288),\n", " ('key', 0.015706372736941254),\n", - " ('authorities', 0.015700111946298497),\n", - " ('fortunately', 0.015676427069879852),\n", + " ('authorities', 0.015700111946298504),\n", + " ('fortunately', 0.015676427069879845),\n", " ('notes', 0.015668388567765472),\n", - " ('disagree', 0.015659822231464244),\n", - " ('advanced', 0.015653464856497611),\n", - " ('contribution', 0.015651919381489538),\n", - " ('flaw', 0.015630623175485553),\n", - " ('burning', 0.015593951152590373),\n", - " ('scoop', 0.015580911014213491),\n", - " ('levels', 0.015579506047588176),\n", - " ('dead', 0.015575945832152258),\n", - " ('reveals', 0.015552631094426429),\n", - " ('explicit', 0.015535052542383233),\n", - " ('fault', 0.015532818014787661),\n", - " ('requires', 0.015440001642516217),\n", - " ('way', 0.015434313286947597),\n", + " ('disagree', 0.01565982223146424),\n", + " ('advanced', 0.015653464856497622),\n", + " ('contribution', 0.015651919381489542),\n", + " ('flaw', 0.01563062317548556),\n", + " ('burning', 0.015593951152590374),\n", + " ('scoop', 0.0155809110142135),\n", + " ('levels', 0.015579506047588178),\n", + " ('dead', 0.015575945832152265),\n", + " ('reveals', 0.015552631094426428),\n", + " ('explicit', 0.01553505254238324),\n", + " ('fault', 0.015532818014787654),\n", + " ('requires', 0.015440001642516233),\n", + " ('way', 0.015434313286947589),\n", " ('waitress', 0.015433929845739229),\n", - " ('vividly', 0.015399209375312219),\n", + " ('vividly', 0.015399209375312223),\n", " ('truman', 0.015388667015530336),\n", - " ('leslie', 0.015388355420398648),\n", - " ('cool', 0.015362419182460984),\n", - " ('i', 0.015358846209804475),\n", - " ('dated', 0.015351894934707871),\n", - " ('ruthless', 0.015347223840634992),\n", - " ('anymore', 0.015327840988573713),\n", - " ('batman', 0.01532544589290648),\n", - " ('york', 0.015323650797282725),\n", - " ('expressions', 0.015290943599335197),\n", + " ('leslie', 0.015388355420398656),\n", + " ('cool', 0.015362419182461),\n", + " ('i', 0.015358846209804477),\n", + " ('dated', 0.015351894934707866),\n", + " ('ruthless', 0.015347223840634989),\n", + " ('anymore', 0.015327840988573722),\n", + " ('batman', 0.015325445892906487),\n", + " ('york', 0.015323650797282724),\n", + " ('expressions', 0.015290943599335203),\n", " ('terms', 0.015285161966075789),\n", - " ('sunday', 0.015279982329904825),\n", - " ('chinese', 0.01524068041892665),\n", - " ('done', 0.015230733309302675),\n", - " ('behind', 0.015219079842199832),\n", + " ('sunday', 0.015279982329904815),\n", + " ('chinese', 0.015240680418926652),\n", + " ('done', 0.015230733309302686),\n", + " ('behind', 0.015219079842199827),\n", " ('event', 0.015214794169662833),\n", - " ('chamberlain', 0.015214082741427193),\n", - " ('mysteries', 0.01520455675940993),\n", - " ('manages', 0.015203486934631999),\n", - " ('simpsons', 0.015191849812926218),\n", - " ('mine', 0.015191085212402694),\n", + " ('chamberlain', 0.015214082741427186),\n", + " ('mysteries', 0.015204556759409918),\n", + " ('manages', 0.01520348693463202),\n", + " ('simpsons', 0.01519184981292622),\n", + " ('mine', 0.015191085212402708),\n", " ('canadian', 0.015117611742208801),\n", " ('purple', 0.015100505661562466),\n", - " ('website', 0.015095063701722868),\n", - " ('master', 0.015091528696557647),\n", - " ('charming', 0.015088362486196534),\n", - " ('joe', 0.015081920177878141),\n", - " ('reservations', 0.015077821343474079),\n", - " ('fever', 0.015076873583983718),\n", + " ('website', 0.015095063701722861),\n", + " ('master', 0.015091528696557648),\n", + " ('charming', 0.015088362486196537),\n", + " ('joe', 0.015081920177878148),\n", + " ('reservations', 0.015077821343474089),\n", + " ('fever', 0.015076873583983725),\n", " ('covers', 0.0150472334532588),\n", - " ('madness', 0.015030361859657219),\n", - " ('glimpse', 0.014991086926970952),\n", - " ('pilot', 0.014978443271049666),\n", + " ('madness', 0.015030361859657218),\n", + " ('glimpse', 0.014991086926970954),\n", + " ('pilot', 0.014978443271049673),\n", " ('johansson', 0.014975808461544404),\n", - " ('explains', 0.014970512080227458),\n", - " ('excellently', 0.014970388571598846),\n", - " ('hawke', 0.01496975010993136),\n", - " ('genuinely', 0.01494767277070257),\n", - " ('often', 0.014942833143544478),\n", - " ('cube', 0.014939928709365358),\n", - " ('clean', 0.01493785322902352),\n", - " ('ensemble', 0.014913656909087875),\n", - " ('referred', 0.014910582069880151),\n", - " ('replies', 0.014907131594945566),\n", - " ('disease', 0.014895193110452168),\n", - " ('wish', 0.014892245549307037),\n", - " ('logical', 0.014888665766304064),\n", - " ('nathan', 0.014869928851670405),\n", + " ('explains', 0.014970512080227472),\n", + " ('excellently', 0.014970388571598842),\n", + " ('hawke', 0.014969750109931361),\n", + " ('genuinely', 0.014947672770702573),\n", + " ('often', 0.014942833143544474),\n", + " ('cube', 0.014939928709365363),\n", + " ('clean', 0.014937853229023509),\n", + " ('ensemble', 0.014913656909087879),\n", + " ('referred', 0.014910582069880154),\n", + " ('replies', 0.014907131594945562),\n", + " ('disease', 0.014895193110452176),\n", + " ('wish', 0.014892245549307041),\n", + " ('logical', 0.014888665766304059),\n", + " ('nathan', 0.014869928851670398),\n", " ('aware', 0.014869867112894513),\n", - " ('exciting', 0.014823139694980626),\n", - " ('gone', 0.014821497224651536),\n", - " ('critics', 0.014818559383907344),\n", - " ('split', 0.014788117032985607),\n", - " ('series', 0.014770708703162178),\n", - " ('henry', 0.014757735101897453),\n", - " ('prisoners', 0.014747710184003863),\n", - " ('sentenced', 0.014746219906503837),\n", - " ('laughing', 0.014722151818909797),\n", - " ('president', 0.014671766779490543),\n", - " ('list', 0.014666775185665164),\n", - " ('ones', 0.014658997854109334),\n", - " ('information', 0.014651687169784211),\n", - " ('bonus', 0.014648059891508166),\n", - " ('chicago', 0.014631769872667616),\n", - " ('someday', 0.014629340475262567),\n", - " ('splendid', 0.014609703424340655),\n", - " ('surprises', 0.014608824054662455),\n", + " ('exciting', 0.0148231396949806),\n", + " ('gone', 0.014821497224651529),\n", + " ('critics', 0.014818559383907354),\n", + " ('split', 0.014788117032985616),\n", + " ('series', 0.014770708703162185),\n", + " ('henry', 0.014757735101897441),\n", + " ('prisoners', 0.014747710184003867),\n", + " ('sentenced', 0.014746219906503842),\n", + " ('laughing', 0.014722151818909788),\n", + " ('president', 0.014671766779490529),\n", + " ('list', 0.014666775185665162),\n", + " ('ones', 0.014658997854109325),\n", + " ('information', 0.014651687169784237),\n", + " ('bonus', 0.014648059891508169),\n", + " ('chicago', 0.014631769872667609),\n", + " ('someday', 0.01462934047526257),\n", + " ('splendid', 0.014609703424340656),\n", + " ('surprises', 0.014608824054662472),\n", " ('sentimental', 0.014591361045287948),\n", - " ('admit', 0.014588098910742798),\n", - " ('previously', 0.014571223247118622),\n", - " ('conveys', 0.014567143509152128),\n", - " ('prominent', 0.014547363114083283),\n", - " ('born', 0.014536990751946706),\n", - " ('necessary', 0.014533225697989441),\n", - " ('yes', 0.014531704633026978),\n", - " ('marvel', 0.014527554209112408),\n", - " ('initially', 0.014510187714555976),\n", - " ('jake', 0.014502509408478859),\n", - " ('matters', 0.014497730426084215),\n", - " ('lucas', 0.014496736417950703),\n", - " ('stories', 0.014475382661229958),\n", - " ('happy', 0.014471040644253801),\n", - " ('improvement', 0.014459225025278397),\n", - " ('anger', 0.014440696969299302),\n", + " ('admit', 0.014588098910742794),\n", + " ('previously', 0.014571223247118624),\n", + " ('conveys', 0.014567143509152133),\n", + " ('prominent', 0.014547363114083271),\n", + " ('born', 0.014536990751946696),\n", + " ('necessary', 0.014533225697989446),\n", + " ('yes', 0.014531704633026972),\n", + " ('marvel', 0.014527554209112411),\n", + " ('initially', 0.014510187714555971),\n", + " ('jake', 0.014502509408478864),\n", + " ('matters', 0.014497730426084213),\n", + " ('lucas', 0.014496736417950701),\n", + " ('stories', 0.014475382661229963),\n", + " ('happy', 0.014471040644253804),\n", + " ('improvement', 0.014459225025278404),\n", + " ('anger', 0.014440696969299303),\n", " ('hong', 0.014412020732763238),\n", - " ('devotion', 0.01440616559418076),\n", - " ('infamous', 0.014402483161136863),\n", - " ('sir', 0.014390585849942562),\n", - " ('fashioned', 0.014376495163092869),\n", - " ('whenever', 0.01431198484084473),\n", - " ('facing', 0.014311813694297494),\n", - " ('spin', 0.014300937890947238),\n", - " ('clear', 0.014297831903635037),\n", - " ('verhoeven', 0.014290838087095137),\n", - " ('onto', 0.014287704198288429),\n", - " ('sheriff', 0.014266680346279269),\n", - " ('boy', 0.01423839321217249),\n", - " ('felix', 0.014236371593101715),\n", - " ('what', 0.014231196728127848),\n", - " ('site', 0.01421283932921704),\n", - " ('hits', 0.014208508715996904),\n", - " ('convincingly', 0.014165838532387457),\n", - " ('adventures', 0.014158492204346279),\n", - " ('multiple', 0.014150723728410513),\n", - " ('wrapped', 0.014118759103459132),\n", - " ('reveal', 0.014076510653822788),\n", - " ('toby', 0.014075221493111766),\n", - " ('months', 0.014061986005374699),\n", - " ('comedies', 0.014050301808876075),\n", - " ('shot', 0.014031987455271896),\n", - " ('holds', 0.014023504904484214),\n", - " ('weeks', 0.014002257803042345),\n", - " ('window', 0.013985434541614845),\n", - " ('received', 0.013983301709629938),\n", - " ('him', 0.013968181093938313),\n", - " ('court', 0.013964352058193526),\n", - " ('double', 0.013960483190947276),\n", - " ('refuses', 0.013957613385590656),\n", - " ('stand', 0.013948813859221344),\n", + " ('devotion', 0.014406165594180762),\n", + " ('infamous', 0.014402483161136853),\n", + " ('sir', 0.01439058584994257),\n", + " ('fashioned', 0.014376495163092876),\n", + " ('whenever', 0.014311984840844736),\n", + " ('facing', 0.014311813694297491),\n", + " ('spin', 0.014300937890947244),\n", + " ('clear', 0.014297831903635034),\n", + " ('verhoeven', 0.014290838087095132),\n", + " ('onto', 0.014287704198288407),\n", + " ('sheriff', 0.014266680346279271),\n", + " ('boy', 0.014238393212172502),\n", + " ('felix', 0.014236371593101718),\n", + " ('what', 0.014231196728127875),\n", + " ('site', 0.014212839329217037),\n", + " ('hits', 0.014208508715996916),\n", + " ('convincingly', 0.014165838532387462),\n", + " ('adventures', 0.014158492204346299),\n", + " ('multiple', 0.014150723728410534),\n", + " ('wrapped', 0.01411875910345912),\n", + " ('reveal', 0.01407651065382279),\n", + " ('toby', 0.01407522149311176),\n", + " ('months', 0.014061986005374697),\n", + " ('comedies', 0.014050301808876077),\n", + " ('shot', 0.014031987455271904),\n", + " ('holds', 0.014023504904484219),\n", + " ('weeks', 0.014002257803042333),\n", + " ('window', 0.01398543454161485),\n", + " ('received', 0.013983301709629933),\n", + " ('him', 0.013968181093938298),\n", + " ('court', 0.013964352058193517),\n", + " ('double', 0.013960483190947278),\n", + " ('refuses', 0.013957613385590657),\n", + " ('stand', 0.013948813859221362),\n", " ('shocked', 0.013935157243261925),\n", - " ('powell', 0.013934062441977011),\n", - " ('brutal', 0.013924129605946699),\n", - " ('among', 0.013913156765292955),\n", - " ('prostitute', 0.013911765274631793),\n", - " ('nine', 0.013882343344720905),\n", + " ('powell', 0.01393406244197702),\n", + " ('brutal', 0.013924129605946696),\n", + " ('among', 0.013913156765292941),\n", + " ('prostitute', 0.013911765274631798),\n", + " ('nine', 0.013882343344720908),\n", " ('timeless', 0.01385827439549941),\n", - " ('likes', 0.01384497151426224),\n", - " ('kurosawa', 0.013820064338774895),\n", - " ('fact', 0.013814297186034387),\n", - " ('ass', 0.013813899781949799),\n", - " ('deanna', 0.013799520782801162),\n", - " ('almost', 0.013791517357271325),\n", - " ('technicolor', 0.013790541990858997),\n", - " ('adventure', 0.01378299990704706),\n", - " ('gerard', 0.0137761404341376),\n", - " ('analysis', 0.013764039325045378),\n", - " ('mid', 0.013747853289146199),\n", - " ('stanwyck', 0.013738927891779258),\n", + " ('likes', 0.013844971514262238),\n", + " ('kurosawa', 0.013820064338774899),\n", + " ('fact', 0.013814297186034396),\n", + " ('ass', 0.01381389978194981),\n", + " ('deanna', 0.013799520782801155),\n", + " ('almost', 0.013791517357271348),\n", + " ('technicolor', 0.013790541990858999),\n", + " ('adventure', 0.013782999907047074),\n", + " ('gerard', 0.013776140434137598),\n", + " ('analysis', 0.013764039325045373),\n", + " ('mid', 0.013747853289146217),\n", + " ('stanwyck', 0.013738927891779256),\n", " ('mann', 0.013726915645691879),\n", " ('stuart', 0.013700229069235785),\n", - " ('reluctantly', 0.013697113976504026),\n", - " ('humanity', 0.013690830736911045),\n", - " ('classical', 0.013688949911986575),\n", - " ('health', 0.013684784640613437),\n", + " ('reluctantly', 0.013697113976504027),\n", + " ('humanity', 0.013690830736911042),\n", + " ('classical', 0.013688949911986577),\n", + " ('health', 0.013684784640613448),\n", " ('edie', 0.013683859176013937),\n", - " ('british', 0.013666460250876445),\n", + " ('british', 0.013666460250876464),\n", " ('primary', 0.013661794714033903),\n", - " ('coaster', 0.013660631014138403),\n", - " ('explore', 0.013656042478726909),\n", - " ('china', 0.013638756081011148),\n", - " ('advantage', 0.013631698822745387),\n", - " ('protagonists', 0.013627593648932778),\n", - " ('partly', 0.013617059618125364),\n", - " ('artist', 0.013597123465502835),\n", - " ('terrifying', 0.013581203319898143),\n", + " ('coaster', 0.013660631014138402),\n", + " ('explore', 0.013656042478726911),\n", + " ('china', 0.013638756081011158),\n", + " ('advantage', 0.013631698822745392),\n", + " ('protagonists', 0.013627593648932788),\n", + " ('partly', 0.013617059618125366),\n", + " ('artist', 0.013597123465502837),\n", + " ('terrifying', 0.013581203319898146),\n", " ('scarlett', 0.013567078625941564),\n", - " ('mesmerizing', 0.013547816899479414),\n", - " ('prince', 0.013541105943095603),\n", - " ('weird', 0.013535346249579567),\n", - " ('vance', 0.013518150392608119),\n", - " ('collect', 0.01351330357888765),\n", - " ('humour', 0.013508890166677971),\n", - " ('doc', 0.013507286431402922),\n", - " ('history', 0.013506120200788252),\n", - " ('miss', 0.013498187990897411),\n", - " ('angles', 0.013497507265665435),\n", - " ('dealers', 0.01349360723438389),\n", - " ('mass', 0.013472328625932868),\n", - " ('paramount', 0.013467546662344525),\n", - " ('musicians', 0.013464517138686271),\n", - " ('jackman', 0.013441428735872098),\n", - " ('cheer', 0.013440230376864148),\n", - " ('aired', 0.013427957547366849),\n", - " ('personal', 0.013422418887670057),\n", + " ('mesmerizing', 0.01354781689947941),\n", + " ('prince', 0.013541105943095589),\n", + " ('weird', 0.013535346249579566),\n", + " ('vance', 0.013518150392608123),\n", + " ('collect', 0.013513303578887656),\n", + " ('humour', 0.01350889016667799),\n", + " ('doc', 0.013507286431402926),\n", + " ('history', 0.01350612020078829),\n", + " ('miss', 0.013498187990897418),\n", + " ('angles', 0.013497507265665436),\n", + " ('dealers', 0.013493607234383897),\n", + " ('mass', 0.013472328625932875),\n", + " ('paramount', 0.013467546662344529),\n", + " ('musicians', 0.013464517138686275),\n", + " ('jackman', 0.013441428735872101),\n", + " ('cheer', 0.013440230376864147),\n", + " ('aired', 0.013427957547366863),\n", + " ('personal', 0.01342241888767008),\n", " ('become', 0.013415910991211791),\n", - " ('wang', 0.013406655764270565),\n", + " ('wang', 0.013406655764270569),\n", " ('unforgettable', 0.013405651085753994),\n", - " ('theme', 0.013397995857105544),\n", - " ('satisfy', 0.013361012634637428),\n", - " ('beginning', 0.013353575498360066),\n", - " ('tongue', 0.013332587937334751),\n", - " ('ran', 0.013322580056022435),\n", - " ('vh', 0.013321694862247335),\n", - " ('april', 0.013317958082689018),\n", - " ('cracking', 0.013316482654851873),\n", - " ('hilariously', 0.013312111975215823),\n", - " ('addictive', 0.013304056341282518),\n", - " ('factory', 0.013302408850101519),\n", - " ('bloom', 0.013287106893282023),\n", - " ('outcome', 0.013278893812795744),\n", + " ('theme', 0.013397995857105537),\n", + " ('satisfy', 0.013361012634637442),\n", + " ('beginning', 0.013353575498360091),\n", + " ('tongue', 0.013332587937334748),\n", + " ('ran', 0.013322580056022434),\n", + " ('vh', 0.01332169486224734),\n", + " ('april', 0.013317958082689027),\n", + " ('cracking', 0.013316482654851882),\n", + " ('hilariously', 0.013312111975215816),\n", + " ('addictive', 0.013304056341282523),\n", + " ('factory', 0.013302408850101533),\n", + " ('bloom', 0.013287106893282026),\n", + " ('outcome', 0.013278893812795739),\n", " ('startling', 0.013276469703553513),\n", - " ('portrait', 0.013273055100999262),\n", - " ('adapted', 0.01325851430867684),\n", + " ('portrait', 0.013273055100999263),\n", + " ('adapted', 0.013258514308676845),\n", " ('raines', 0.013257908724754864),\n", - " ('sky', 0.013252502620889894),\n", - " ('earlier', 0.013233110743632578),\n", - " ('atlantis', 0.013228188610144558),\n", - " ('delirious', 0.01322687481812544),\n", - " ('titanic', 0.01320563340114447),\n", - " ('nevertheless', 0.013198200611184928),\n", - " ('proved', 0.013189760358384477),\n", + " ('sky', 0.013252502620889896),\n", + " ('earlier', 0.01323311074363257),\n", + " ('atlantis', 0.013228188610144563),\n", + " ('delirious', 0.013226874818125445),\n", + " ('titanic', 0.013205633401144468),\n", + " ('nevertheless', 0.013198200611184941),\n", + " ('proved', 0.013189760358384478),\n", " ('denzel', 0.013188430841614765),\n", - " ('pleasant', 0.013180077348723361),\n", - " ('horses', 0.013178651568029469),\n", - " ('about', 0.013166154528006855),\n", - " ('astounding', 0.013161698337226805),\n", - " ('savage', 0.01315410055375992),\n", - " ('winning', 0.013153246708379664),\n", - " ('rose', 0.013145586701309782),\n", - " ('fitting', 0.01313357825433034),\n", - " ('compared', 0.013131693803520058),\n", - " ('took', 0.013119343481498982),\n", - " ('masterson', 0.013112762074217892),\n", - " ('owner', 0.013108690454819142),\n", - " ('delight', 0.013107278788311007),\n", - " ('conventions', 0.013106039770696054),\n", - " ('natali', 0.013094964441143216),\n", - " ('message', 0.013093664295113437),\n", - " ('stood', 0.013090122718303432),\n", - " ('sailor', 0.013058959170423446),\n", + " ('pleasant', 0.013180077348723354),\n", + " ('horses', 0.013178651568029467),\n", + " ('about', 0.013166154528006851),\n", + " ('astounding', 0.01316169833722681),\n", + " ('savage', 0.013154100553759924),\n", + " ('winning', 0.013153246708379671),\n", + " ('rose', 0.013145586701309787),\n", + " ('fitting', 0.013133578254330345),\n", + " ('compared', 0.013131693803520044),\n", + " ('took', 0.013119343481498973),\n", + " ('masterson', 0.013112762074217889),\n", + " ('owner', 0.013108690454819138),\n", + " ('delight', 0.013107278788311012),\n", + " ('conventions', 0.013106039770696055),\n", + " ('natali', 0.013094964441143218),\n", + " ('message', 0.013093664295113428),\n", + " ('stood', 0.013090122718303435),\n", + " ('sailor', 0.01305895917042345),\n", " ('ida', 0.013058842950256239),\n", - " ('escaping', 0.013052723624706778),\n", - " ('top', 0.013047466741024409),\n", - " ('louis', 0.013046238442637012),\n", - " ('peace', 0.013040907918892322),\n", - " ('several', 0.013028244887060282),\n", - " ('info', 0.013023754625550181),\n", - " ('graphics', 0.013020850288881855),\n", - " ('reflection', 0.013019243823940102),\n", - " ('slimy', 0.013014377070231842),\n", - " ('elvira', 0.013009811638957055),\n", - " ('andre', 0.013000047313446743),\n", + " ('escaping', 0.013052723624706782),\n", + " ('top', 0.01304746674102443),\n", + " ('louis', 0.013046238442637016),\n", + " ('peace', 0.013040907918892312),\n", + " ('several', 0.013028244887060284),\n", + " ('info', 0.01302375462555018),\n", + " ('graphics', 0.013020850288881863),\n", + " ('reflection', 0.013019243823940109),\n", + " ('slimy', 0.013014377070231843),\n", + " ('elvira', 0.013009811638957066),\n", + " ('andre', 0.01300004731344674),\n", " ('kong', 0.012999080313300517),\n", " ('mayor', 0.012994758409723568),\n", - " ('punishment', 0.012988264949614947),\n", - " ('morris', 0.012983710119604966),\n", - " ('hall', 0.012981593609354821),\n", - " ('match', 0.012980233583057322),\n", - " ('bleak', 0.012972505086304056),\n", + " ('punishment', 0.01298826494961494),\n", + " ('morris', 0.012983710119604967),\n", + " ('hall', 0.012981593609354809),\n", + " ('match', 0.012980233583057334),\n", + " ('bleak', 0.01297250508630407),\n", " ('lindy', 0.012972248933121261),\n", - " ('sequence', 0.012964435808713556),\n", - " ('learn', 0.012938848970083339),\n", - " ('happen', 0.012932836387873745),\n", - " ('john', 0.012929524979001662),\n", - " ('gothic', 0.012926957011734882),\n", - " ('wider', 0.012920985981480958),\n", - " ('popular', 0.012891690509844065),\n", - " ('diverse', 0.012875263936567809),\n", - " ('compare', 0.012869395292065183),\n", + " ('sequence', 0.012964435808713572),\n", + " ('learn', 0.012938848970083352),\n", + " ('happen', 0.01293283638787374),\n", + " ('john', 0.012929524979001681),\n", + " ('gothic', 0.012926957011734873),\n", + " ('wider', 0.012920985981480957),\n", + " ('popular', 0.012891690509844067),\n", + " ('diverse', 0.012875263936567807),\n", + " ('compare', 0.012869395292065204),\n", " ('brooklyn', 0.01285298624326393),\n", - " ('broadcast', 0.012839574692097613),\n", - " ('zane', 0.012834302957709142),\n", - " ('andrew', 0.01282402094061526),\n", - " ('finely', 0.012822716004015853),\n", - " ('confronted', 0.012817523686608627),\n", - " ('going', 0.01280976283930498),\n", + " ('broadcast', 0.012839574692097616),\n", + " ('zane', 0.01283430295770914),\n", + " ('andrew', 0.012824020940615254),\n", + " ('finely', 0.012822716004015858),\n", + " ('confronted', 0.012817523686608632),\n", + " ('going', 0.012809762839304982),\n", " ('likewise', 0.012804639349082518),\n", - " ('breath', 0.012790132659417907),\n", - " ('building', 0.012789809704793872),\n", - " ('suggesting', 0.012780624321169333),\n", - " ('contemporary', 0.012772749462937509),\n", - " ('midnight', 0.012766963563112067),\n", - " ('victoria', 0.012756422131580529),\n", + " ('breath', 0.0127901326594179),\n", + " ('building', 0.012789809704793877),\n", + " ('suggesting', 0.012780624321169351),\n", + " ('contemporary', 0.012772749462937506),\n", + " ('midnight', 0.012766963563112082),\n", + " ('victoria', 0.012756422131580528),\n", " ('lasting', 0.012752424415642586),\n", " ('kitty', 0.012751468371946007),\n", - " ('continued', 0.012744325456485399),\n", - " ('indian', 0.012712962842718688),\n", - " ('subplots', 0.012709887814283907),\n", - " ('douglas', 0.012693830679455891),\n", - " ('explosions', 0.012692697593201843),\n", - " ('bond', 0.012689802823687819),\n", + " ('continued', 0.01274432545648539),\n", + " ('indian', 0.012712962842718686),\n", + " ('subplots', 0.012709887814283902),\n", + " ('douglas', 0.012693830679455889),\n", + " ('explosions', 0.012692697593201848),\n", + " ('bond', 0.012689802823687823),\n", " ('delightfully', 0.012669417460922622),\n", - " ('understated', 0.012669374312789347),\n", - " ('greater', 0.012664580396020159),\n", - " ('sailing', 0.012662424581282427),\n", - " ('images', 0.012661803048859877),\n", + " ('understated', 0.012669374312789342),\n", + " ('greater', 0.012664580396020165),\n", + " ('sailing', 0.012662424581282425),\n", + " ('images', 0.01266180304885987),\n", " ('copy', 0.012624649645734161),\n", - " ('seat', 0.012610464273152516),\n", - " ('eleven', 0.012602533659978885),\n", + " ('seat', 0.012610464273152509),\n", + " ('eleven', 0.012602533659978888),\n", " ('riveting', 0.012591829460094517),\n", - " ('boiled', 0.012588863529638755),\n", - " ('academy', 0.012581996178142978),\n", - " ('whilst', 0.01256984165329564),\n", - " ('heaven', 0.012547361621330929),\n", - " ('fruit', 0.012543513029693252),\n", - " ('reviewer', 0.012534273375083893),\n", - " ('cost', 0.012529643005796608),\n", - " ('week', 0.012522845015008277),\n", - " ('intriguing', 0.012508687653306367),\n", - " ('streak', 0.012507752385208555),\n", - " ('san', 0.012502130058217917),\n", - " ('awareness', 0.012476446442012448),\n", - " ('catching', 0.012467108595451533),\n", - " ('kicks', 0.012457714930570582),\n", - " ('complexities', 0.012454362663082459),\n", - " ('draws', 0.012447753285125903),\n", - " ('easily', 0.012444885855614886),\n", - " ('ealing', 0.012444339255708927),\n", - " ('psychopath', 0.012431259926282275),\n", - " ('skin', 0.01242424854097357),\n", - " ('creative', 0.012386713452491531),\n", - " ('recognition', 0.012354025801439425),\n", - " ('downey', 0.012348698765161136),\n", - " ('symbolism', 0.012329925038271329),\n", - " ('touches', 0.01232801347075145),\n", + " ('boiled', 0.012588863529638759),\n", + " ('academy', 0.012581996178142974),\n", + " ('whilst', 0.012569841653295642),\n", + " ('heaven', 0.012547361621330914),\n", + " ('fruit', 0.012543513029693249),\n", + " ('reviewer', 0.012534273375083886),\n", + " ('cost', 0.012529643005796615),\n", + " ('week', 0.012522845015008281),\n", + " ('intriguing', 0.012508687653306356),\n", + " ('streak', 0.012507752385208562),\n", + " ('san', 0.012502130058217934),\n", + " ('awareness', 0.012476446442012451),\n", + " ('catching', 0.012467108595451522),\n", + " ('kicks', 0.012457714930570581),\n", + " ('complexities', 0.012454362663082464),\n", + " ('draws', 0.012447753285125917),\n", + " ('easily', 0.012444885855614875),\n", + " ('ealing', 0.012444339255708925),\n", + " ('psychopath', 0.012431259926282268),\n", + " ('skin', 0.012424248540973577),\n", + " ('creative', 0.012386713452491529),\n", + " ('recognition', 0.012354025801439416),\n", + " ('downey', 0.012348698765161131),\n", + " ('symbolism', 0.012329925038271331),\n", + " ('touches', 0.01232801347075147),\n", " ('everyday', 0.012324934809895893),\n", - " ('achieves', 0.012314898707483488),\n", - " ('outcast', 0.012313662230219676),\n", - " ('overwhelmed', 0.012306633138869476),\n", + " ('achieves', 0.012314898707483495),\n", + " ('outcast', 0.012313662230219678),\n", + " ('overwhelmed', 0.012306633138869474),\n", " ...]" ] }, @@ -12665,1011 +12779,1013 @@ { "cell_type": "code", "execution_count": 82, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "data": { "text/plain": [ "[('worst', 0.16966107259049848),\n", " ('awful', 0.12026847019691246),\n", - " ('waste', 0.11945367265311005),\n", + " ('waste', 0.11945367265311006),\n", " ('poor', 0.092758887574435497),\n", - " ('terrible', 0.091425387197727942),\n", + " ('terrible', 0.09142538719772797),\n", " ('dull', 0.084209271678223618),\n", - " ('poorly', 0.081241544516042055),\n", - " ('disappointment', 0.080064759621368733),\n", - " ('fails', 0.078599773723337513),\n", - " ('disappointing', 0.077339485480323378),\n", - " ('boring', 0.077127858748012909),\n", + " ('poorly', 0.081241544516042027),\n", + " ('disappointment', 0.08006475962136872),\n", + " ('fails', 0.07859977372333754),\n", + " ('disappointing', 0.077339485480323364),\n", + " ('boring', 0.077127858748012895),\n", " ('unfortunately', 0.075502449705859079),\n", - " ('worse', 0.070601835364194648),\n", - " ('mess', 0.070564299623590399),\n", - " ('stupid', 0.069484822832543022),\n", - " ('badly', 0.066888903666228572),\n", + " ('worse', 0.070601835364194676),\n", + " ('mess', 0.070564299623590426),\n", + " ('stupid', 0.06948482283254305),\n", + " ('badly', 0.066888903666228586),\n", " ('annoying', 0.065687021903374165),\n", " ('bad', 0.063093814537572138),\n", - " ('save', 0.062880597495865762),\n", - " ('disappointed', 0.06269235381207286),\n", - " ('wasted', 0.061387183028051281),\n", - " ('supposed', 0.060985452957725166),\n", - " ('horrible', 0.060121772339380125),\n", - " ('laughable', 0.05869840628546763),\n", - " ('crap', 0.058104528667884577),\n", - " ('basically', 0.057218840369636162),\n", - " ('nothing', 0.057158220043034211),\n", - " ('ridiculous', 0.056905481068931445),\n", - " ('lacks', 0.055766565889465436),\n", - " ('lame', 0.055616009058110177),\n", - " ('avoid', 0.055518726073197203),\n", - " ('unless', 0.054208926212940718),\n", - " ('script', 0.053948359467048519),\n", - " ('failed', 0.053413930550009134),\n", + " ('save', 0.062880597495865734),\n", + " ('disappointed', 0.062692353812072873),\n", + " ('wasted', 0.061387183028051295),\n", + " ('supposed', 0.060985452957725145),\n", + " ('horrible', 0.060121772339380132),\n", + " ('laughable', 0.058698406285467637),\n", + " ('crap', 0.05810452866788459),\n", + " ('basically', 0.057218840369636155),\n", + " ('nothing', 0.057158220043034218),\n", + " ('ridiculous', 0.056905481068931438),\n", + " ('lacks', 0.055766565889465443),\n", + " ('lame', 0.05561600905811017),\n", + " ('avoid', 0.05551872607319721),\n", + " ('unless', 0.054208926212940739),\n", + " ('script', 0.053948359467048505),\n", + " ('failed', 0.05341393055000912),\n", " ('pointless', 0.052855531546894118),\n", " ('oh', 0.05276158093317683),\n", " ('effort', 0.050773747127292324),\n", " ('guess', 0.050379576420076531),\n", - " ('minutes', 0.049784532804242172),\n", + " ('minutes', 0.049784532804242165),\n", " ('wooden', 0.049453108380727188),\n", - " ('redeeming', 0.049182869114721757),\n", - " ('seems', 0.049079625154669758),\n", - " ('instead', 0.047957645123532275),\n", + " ('redeeming', 0.049182869114721743),\n", + " ('seems', 0.049079625154669751),\n", + " ('instead', 0.047957645123532268),\n", " ('weak', 0.046496387374765663),\n", - " ('pathetic', 0.04609974114971576),\n", - " ('looks', 0.04579653673024487),\n", - " ('hoping', 0.045082242887577034),\n", - " ('wonder', 0.044669791780934616),\n", - " ('forgettable', 0.042854349251871725),\n", + " ('pathetic', 0.046099741149715767),\n", + " ('looks', 0.045796536730244863),\n", + " ('hoping', 0.045082242887577027),\n", + " ('wonder', 0.044669791780934609),\n", + " ('forgettable', 0.042854349251871718),\n", " ('silly', 0.042237829687270002),\n", " ('attempt', 0.041706299941373516),\n", " ('predictable', 0.041514442438568125),\n", - " ('someone', 0.0415061190273373),\n", - " ('sorry', 0.040868877281533336),\n", - " ('might', 0.040445683500688362),\n", - " ('slow', 0.040346869107034958),\n", + " ('someone', 0.041506119027337307),\n", + " ('sorry', 0.040868877281533364),\n", + " ('might', 0.040445683500688355),\n", + " ('slow', 0.040346869107034951),\n", " ('painful', 0.040220039039613263),\n", - " ('thin', 0.040062642253777855),\n", - " ('mediocre', 0.039407165377577387),\n", - " ('garbage', 0.039310979440981123),\n", - " ('money', 0.038907973313640522),\n", - " ('none', 0.038300807052230955),\n", - " ('bland', 0.038062246057085053),\n", + " ('thin', 0.040062642253777862),\n", + " ('mediocre', 0.039407165377577394),\n", + " ('garbage', 0.039310979440981109),\n", + " ('money', 0.038907973313640508),\n", + " ('none', 0.038300807052230962),\n", + " ('bland', 0.03806224605708506),\n", " ('couldn', 0.03801666421895792),\n", " ('either', 0.037738833070341961),\n", - " ('unfunny', 0.03707662980504451),\n", - " ('entire', 0.036642119399463172),\n", - " ('cheap', 0.03651680080252559),\n", - " ('honestly', 0.036212041543797847),\n", - " ('mildly', 0.035744850608185635),\n", + " ('unfunny', 0.037076629805044503),\n", + " ('entire', 0.036642119399463179),\n", + " ('cheap', 0.036516800802525569),\n", + " ('honestly', 0.03621204154379782),\n", + " ('mildly', 0.035744850608185628),\n", " ('total', 0.035560454471013067),\n", " ('neither', 0.035415946043548557),\n", - " ('making', 0.035244315060985618),\n", - " ('problem', 0.035088251034562437),\n", - " ('flat', 0.034518947038747083),\n", - " ('bizarre', 0.034509460694521155),\n", + " ('making', 0.035244315060985597),\n", + " ('problem', 0.035088251034562444),\n", + " ('flat', 0.034518947038747076),\n", + " ('bizarre', 0.034509460694521148),\n", " ('group', 0.034335883528586783),\n", " ('dreadful', 0.034287618511331872),\n", - " ('ludicrous', 0.034159649323816037),\n", - " ('decent', 0.033771585787868964),\n", + " ('ludicrous', 0.034159649323816044),\n", + " ('decent', 0.033771585787868957),\n", " ('clich', 0.033751444631720563),\n", - " ('daughter', 0.033732725858384896),\n", - " ('bored', 0.033622879572852551),\n", - " ('horror', 0.033464120619956815),\n", - " ('writing', 0.033437913916756802),\n", + " ('daughter', 0.033732725858384882),\n", + " ('bored', 0.033622879572852558),\n", + " ('horror', 0.033464120619956829),\n", + " ('writing', 0.033437913916756788),\n", " ('skip', 0.033430639850491169),\n", - " ('absurd', 0.033154173530163318),\n", - " ('barely', 0.032653416827517705),\n", - " ('idea', 0.032584013175663222),\n", - " ('wasn', 0.032481207966272074),\n", - " ('fake', 0.032136435098031553),\n", + " ('absurd', 0.033154173530163325),\n", + " ('barely', 0.032653416827517719),\n", + " ('idea', 0.032584013175663229),\n", + " ('wasn', 0.03248120796627206),\n", + " ('fake', 0.032136435098031539),\n", " ('believe', 0.031677858935800801),\n", " ('uninteresting', 0.031526815915867146),\n", " ('reason', 0.031390715260270548),\n", - " ('scenes', 0.031216362935389153),\n", - " ('alright', 0.031046883113956262),\n", - " ('body', 0.030999982945986677),\n", - " ('no', 0.030917695380560418),\n", - " ('insult', 0.030808450146355928),\n", - " ('mst', 0.030527916471397867),\n", - " ('nowhere', 0.030352177599338299),\n", - " ('lousy', 0.030160195468380807),\n", - " ('didn', 0.030115903194061423),\n", - " ('interest', 0.029888118468771114),\n", - " ('half', 0.029813246115057278),\n", - " ('lee', 0.029804235955718648),\n", + " ('scenes', 0.031216362935389166),\n", + " ('alright', 0.031046883113956265),\n", + " ('body', 0.030999982945986656),\n", + " ('no', 0.030917695380560422),\n", + " ('insult', 0.030808450146355942),\n", + " ('mst', 0.03052791647139786),\n", + " ('nowhere', 0.030352177599338306),\n", + " ('lousy', 0.030160195468380811),\n", + " ('didn', 0.030115903194061412),\n", + " ('interest', 0.029888118468771138),\n", + " ('half', 0.02981324611505725),\n", + " ('lee', 0.029804235955718662),\n", " ('dimensional', 0.029562861996904034),\n", - " ('unconvincing', 0.029322607679950246),\n", - " ('left', 0.029322408787030504),\n", - " ('sex', 0.029296748476082147),\n", - " ('even', 0.029225209450923401),\n", - " ('far', 0.029192618334294561),\n", - " ('tries', 0.02900400113270353),\n", - " ('anything', 0.028988097743501147),\n", - " ('trying', 0.028919477228465103),\n", + " ('unconvincing', 0.029322607679950256),\n", + " ('left', 0.029322408787030532),\n", + " ('sex', 0.029296748476082161),\n", + " ('even', 0.029225209450923415),\n", + " ('far', 0.029192618334294554),\n", + " ('tries', 0.029004001132703548),\n", + " ('anything', 0.028988097743501123),\n", + " ('trying', 0.02891947722846511),\n", " ('accent', 0.028779542310252575),\n", - " ('nudity', 0.028662654953266066),\n", + " ('nudity', 0.028662654953266045),\n", " ('apparently', 0.028291626941517923),\n", - " ('zombies', 0.028178583120430679),\n", + " ('zombies', 0.028178583120430676),\n", " ('sense', 0.028166740534758778),\n", - " ('incoherent', 0.027988926190862528),\n", - " ('something', 0.027986519420278209),\n", - " ('tedious', 0.027952212405329524),\n", - " ('wrong', 0.027831947557365608),\n", - " ('were', 0.027825695799985398),\n", - " ('endless', 0.027824591794431475),\n", - " ('turkey', 0.027624266205058499),\n", - " ('zombie', 0.027543333835110862),\n", - " ('appears', 0.027469840878483254),\n", - " ('embarrassing', 0.027425437142424354),\n", + " ('incoherent', 0.027988926190862518),\n", + " ('something', 0.027986519420278216),\n", + " ('tedious', 0.027952212405329527),\n", + " ('wrong', 0.027831947557365632),\n", + " ('were', 0.027825695799985409),\n", + " ('endless', 0.027824591794431471),\n", + " ('turkey', 0.027624266205058503),\n", + " ('zombie', 0.027543333835110845),\n", + " ('appears', 0.02746984087848324),\n", + " ('embarrassing', 0.027425437142424347),\n", " ('walked', 0.027411768647042711),\n", - " ('premise', 0.027346072285964192),\n", - " ('ok', 0.027333008356232022),\n", - " ('result', 0.027312558653191921),\n", - " ('complete', 0.027247564384243424),\n", - " ('t', 0.027186737465610244),\n", - " ('least', 0.026949072632017297),\n", - " ('was', 0.026917906772065275),\n", - " ('unwatchable', 0.026829458762459391),\n", - " ('sat', 0.02680651153214347),\n", + " ('premise', 0.027346072285964196),\n", + " ('ok', 0.027333008356232015),\n", + " ('result', 0.027312558653191901),\n", + " ('complete', 0.027247564384243458),\n", + " ('t', 0.027186737465610237),\n", + " ('least', 0.026949072632017304),\n", + " ('was', 0.026917906772065289),\n", + " ('unwatchable', 0.026829458762459388),\n", + " ('sat', 0.026806511532143466),\n", " ('to', 0.026801902698524095),\n", " ('sadly', 0.026753380035391513),\n", - " ('christmas', 0.02673555596219921),\n", - " ('gore', 0.0266701616306084),\n", - " ('mother', 0.026612696987437758),\n", - " ('aspects', 0.026583237615263794),\n", + " ('christmas', 0.026735555962199231),\n", + " ('gore', 0.026670161630608386),\n", + " ('mother', 0.026612696987437772),\n", + " ('aspects', 0.026583237615263804),\n", " ('amateurish', 0.026565159291175696),\n", - " ('below', 0.02654827101677814),\n", - " ('stupidity', 0.026460990221946919),\n", - " ('appeal', 0.026396596713420976),\n", + " ('below', 0.026548271016778154),\n", + " ('stupidity', 0.026460990221946923),\n", + " ('appeal', 0.02639659671342098),\n", " ('trite', 0.026331168557051407),\n", - " ('then', 0.026284629203937673),\n", - " ('rubbish', 0.0262166952461255),\n", - " ('okay', 0.025981446095883612),\n", - " ('sucks', 0.025930224401969345),\n", - " ('pretentious', 0.025907912370628297),\n", + " ('then', 0.026284629203937666),\n", + " ('rubbish', 0.026216695246125493),\n", + " ('okay', 0.025981446095883619),\n", + " ('sucks', 0.025930224401969338),\n", + " ('pretentious', 0.025907912370628301),\n", " ('positive', 0.025773976409798768),\n", - " ('confusing', 0.025737618729473645),\n", - " ('remotely', 0.025699566061653023),\n", - " ('obnoxious', 0.025454829745850251),\n", - " ('m', 0.025435495928249195),\n", - " ('rent', 0.025373441934038492),\n", - " ('laughs', 0.025346512576104412),\n", - " ('re', 0.025342239903627869),\n", - " ('context', 0.025274382593713576),\n", - " ('disgusting', 0.025195418263468179),\n", + " ('confusing', 0.025737618729473628),\n", + " ('remotely', 0.025699566061653027),\n", + " ('obnoxious', 0.025454829745850262),\n", + " ('m', 0.025435495928249209),\n", + " ('rent', 0.025373441934038485),\n", + " ('laughs', 0.025346512576104416),\n", + " ('re', 0.025342239903627856),\n", + " ('context', 0.02527438259371358),\n", + " ('disgusting', 0.025195418263468182),\n", " ('so', 0.025148024611438818),\n", - " ('tiresome', 0.025031684199042111),\n", - " ('miscast', 0.024970026716882362),\n", - " ('aren', 0.024968703889385897),\n", - " ('forced', 0.024933299777713712),\n", - " ('paid', 0.024906929703330343),\n", - " ('utter', 0.024802282233385525),\n", - " ('uninspired', 0.02479957621201747),\n", - " ('falls', 0.024749631706810698),\n", - " ('throw', 0.024614954073046699),\n", - " ('been', 0.024470487429445052),\n", + " ('tiresome', 0.025031684199042101),\n", + " ('miscast', 0.024970026716882365),\n", + " ('aren', 0.024968703889385893),\n", + " ('forced', 0.024933299777713722),\n", + " ('paid', 0.024906929703330333),\n", + " ('utter', 0.024802282233385521),\n", + " ('uninspired', 0.024799576212017459),\n", + " ('falls', 0.024749631706810708),\n", + " ('throw', 0.024614954073046709),\n", + " ('been', 0.024470487429445055),\n", " ('ugly', 0.024334820044832371),\n", - " ('hopes', 0.024315635652054322),\n", - " ('dire', 0.02419122184005109),\n", - " ('hunter', 0.024171291127418473),\n", - " ('producers', 0.024089231997130242),\n", - " ('seem', 0.024065146985976872),\n", - " ('straight', 0.02399666645155215),\n", - " ('vampire', 0.023942797574072673),\n", - " ('paper', 0.023908828083961008),\n", - " ('crappy', 0.023807255546688073),\n", + " ('hopes', 0.024315635652054305),\n", + " ('dire', 0.024191221840051087),\n", + " ('hunter', 0.024171291127418476),\n", + " ('producers', 0.024089231997130232),\n", + " ('seem', 0.024065146985976848),\n", + " ('straight', 0.023996666451552164),\n", + " ('vampire', 0.023942797574072684),\n", + " ('paper', 0.023908828083961022),\n", + " ('crappy', 0.023807255546688076),\n", " ('excited', 0.023764516357875836),\n", - " ('start', 0.023739057832096778),\n", - " ('material', 0.023729757962158756),\n", - " ('excuse', 0.023681577270328109),\n", - " ('cop', 0.023480677028928129),\n", - " ('f', 0.023312251619610841),\n", - " ('ms', 0.023282327986278314),\n", - " ('villain', 0.02315827348366075),\n", - " ('fest', 0.023091425711778246),\n", - " ('lack', 0.023039437894325183),\n", - " ('such', 0.023031161078650955),\n", - " ('saving', 0.023025745893238084),\n", - " ('clichs', 0.022928209200342321),\n", - " ('enough', 0.02292139725392528),\n", - " ('mistake', 0.022868689470375011),\n", + " ('start', 0.023739057832096767),\n", + " ('material', 0.023729757962158735),\n", + " ('excuse', 0.023681577270328113),\n", + " ('cop', 0.02348067702892814),\n", + " ('f', 0.023312251619610848),\n", + " ('ms', 0.023282327986278321),\n", + " ('villain', 0.023158273483660743),\n", + " ('fest', 0.023091425711778243),\n", + " ('lack', 0.023039437894325179),\n", + " ('such', 0.023031161078650959),\n", + " ('saving', 0.023025745893238071),\n", + " ('clichs', 0.022928209200342317),\n", + " ('enough', 0.022921397253925311),\n", + " ('mistake', 0.022868689470374997),\n", " ('unbelievable', 0.022864325693347898),\n", " ('maybe', 0.022825002748295301),\n", - " ('blame', 0.022808369279543161),\n", - " ('bunch', 0.022769532876362856),\n", - " ('version', 0.022753296945755487),\n", - " ('candy', 0.022749363632616773),\n", - " ('island', 0.022745800666080153),\n", - " ('tripe', 0.022695188509832688),\n", - " ('wasting', 0.022681371343356762),\n", - " ('inept', 0.022679276425665772),\n", + " ('blame', 0.022808369279543168),\n", + " ('bunch', 0.022769532876362852),\n", + " ('version', 0.022753296945755484),\n", + " ('candy', 0.022749363632616756),\n", + " ('island', 0.02274580066608016),\n", + " ('tripe', 0.022695188509832681),\n", + " ('wasting', 0.022681371343356769),\n", + " ('inept', 0.022679276425665775),\n", " ('actor', 0.022636975371771034),\n", - " ('flop', 0.022613758633444534),\n", + " ('flop', 0.022613758633444527),\n", " ('any', 0.0225606084376072),\n", - " ('k', 0.02255401757961505),\n", - " ('appalling', 0.022500975853556062),\n", - " ('propaganda', 0.02246502443075574),\n", - " ('major', 0.022430482324246589),\n", - " ('sequel', 0.022362296462477872),\n", - " ('offensive', 0.022326080604825452),\n", - " ('revenge', 0.022315150942472613),\n", - " ('shoot', 0.022288105709211737),\n", - " ('whatsoever', 0.022286498346940926),\n", + " ('k', 0.022554017579615043),\n", + " ('appalling', 0.022500975853556055),\n", + " ('propaganda', 0.022465024430755747),\n", + " ('major', 0.022430482324246579),\n", + " ('sequel', 0.022362296462477876),\n", + " ('offensive', 0.022326080604825448),\n", + " ('revenge', 0.02231515094247262),\n", + " ('shoot', 0.022288105709211744),\n", + " ('whatsoever', 0.022286498346940936),\n", " ('ruined', 0.022173811528211053),\n", " ('painfully', 0.022152008209040921),\n", - " ('on', 0.022016020939730058),\n", - " ('shame', 0.021981493467648262),\n", - " ('effects', 0.021849482201960261),\n", - " ('wouldn', 0.021848506706035151),\n", + " ('on', 0.022016020939730048),\n", + " ('shame', 0.021981493467648276),\n", + " ('effects', 0.021849482201960271),\n", + " ('wouldn', 0.021848506706035161),\n", " ('development', 0.02177324199006574),\n", - " ('plot', 0.021733893676650597),\n", - " ('co', 0.021728673026887638),\n", - " ('church', 0.021719723717009986),\n", + " ('plot', 0.021733893676650601),\n", + " ('co', 0.021728673026887656),\n", + " ('church', 0.021719723717009976),\n", " ('storyline', 0.021663404462350769),\n", " ('screenwriter', 0.021660177252485924),\n", - " ('bother', 0.021571699909566967),\n", - " ('miserably', 0.021516173872499808),\n", + " ('bother', 0.021571699909566977),\n", + " ('miserably', 0.021516173872499812),\n", " ('christian', 0.021515873507543665),\n", - " ('add', 0.021468134313277955),\n", - " ('found', 0.021449077767987164),\n", - " ('watching', 0.02134483314059659),\n", - " ('pseudo', 0.021308384076023475),\n", + " ('add', 0.021468134313277942),\n", + " ('found', 0.021449077767987153),\n", + " ('watching', 0.021344833140596587),\n", + " ('pseudo', 0.021308384076023465),\n", " ('boredom', 0.021119995917930009),\n", - " ('please', 0.021090765093296316),\n", - " ('talent', 0.021005847445274783),\n", - " ('continuity', 0.02100514585242191),\n", - " ('talents', 0.020992716564348899),\n", - " ('college', 0.020990718952374868),\n", + " ('please', 0.021090765093296295),\n", + " ('talent', 0.02100584744527479),\n", + " ('continuity', 0.021005145852421917),\n", + " ('talents', 0.020992716564348892),\n", + " ('college', 0.020990718952374858),\n", " ('tried', 0.020978219626186824),\n", - " ('editing', 0.020865814801443745),\n", - " ('lines', 0.020853755408845775),\n", + " ('editing', 0.020865814801443762),\n", + " ('lines', 0.020853755408845782),\n", " ('drivel', 0.020726493692759695),\n", - " ('generous', 0.020697017742241992),\n", - " ('potential', 0.020672988272090811),\n", - " ('creatures', 0.020601399429061331),\n", - " ('disjointed', 0.020581338926655215),\n", - " ('irritating', 0.020576764848872681),\n", - " ('pile', 0.020560898967541534),\n", - " ('acts', 0.020560043588043541),\n", - " ('junk', 0.020558505639508215),\n", + " ('generous', 0.020697017742242002),\n", + " ('potential', 0.020672988272090829),\n", + " ('creatures', 0.020601399429061321),\n", + " ('disjointed', 0.020581338926655209),\n", + " ('irritating', 0.020576764848872688),\n", + " ('pile', 0.020560898967541544),\n", + " ('acts', 0.020560043588043531),\n", + " ('junk', 0.020558505639508208),\n", " ('raped', 0.020550629285133262),\n", - " ('christ', 0.020481424289613522),\n", - " ('brain', 0.020431161137662707),\n", - " ('slasher', 0.020425652445140892),\n", - " ('seconds', 0.020390927443421879),\n", - " ('nobody', 0.020389268101762625),\n", - " ('dialog', 0.020338349197601503),\n", - " ('makers', 0.020333184431951132),\n", - " ('excitement', 0.020290456024291813),\n", + " ('christ', 0.020481424289613533),\n", + " ('brain', 0.020431161137662714),\n", + " ('slasher', 0.020425652445140899),\n", + " ('seconds', 0.020390927443421882),\n", + " ('nobody', 0.020389268101762628),\n", + " ('dialog', 0.020338349197601493),\n", + " ('makers', 0.020333184431951135),\n", + " ('excitement', 0.02029045602429182),\n", " ('flashbacks', 0.020267510512910248),\n", - " ('sloppy', 0.020234078734398364),\n", - " ('joke', 0.020212187048528504),\n", + " ('sloppy', 0.020234078734398368),\n", + " ('joke', 0.020212187048528524),\n", " ('sleep', 0.020108895811675787),\n", - " ('bottom', 0.019986770547280184),\n", + " ('bottom', 0.019986770547280187),\n", " ('however', 0.019981104962051181),\n", - " ('fail', 0.01993740521162024),\n", - " ('sucked', 0.019874923017311572),\n", - " ('soap', 0.019853525395543022),\n", - " ('looked', 0.0198102118409271),\n", - " ('stinks', 0.01976936538178117),\n", - " ('deserve', 0.019614034321096461),\n", + " ('fail', 0.019937405211620234),\n", + " ('sucked', 0.019874923017311575),\n", + " ('soap', 0.019853525395543015),\n", + " ('looked', 0.01981021184092711),\n", + " ('stinks', 0.019769365381781166),\n", + " ('deserve', 0.019614034321096468),\n", " ('exact', 0.019555320028258997),\n", - " ('substance', 0.019552647432498189),\n", + " ('substance', 0.019552647432498186),\n", " ('yeah', 0.019513150136671549),\n", - " ('production', 0.019510696746296532),\n", - " ('female', 0.019476914978121811),\n", + " ('production', 0.019510696746296526),\n", + " ('female', 0.019476914978121807),\n", " ('unintentional', 0.019387723280198933),\n", " ('army', 0.019364852889641616),\n", - " ('minute', 0.019351862554568236),\n", - " ('unrealistic', 0.019350657250497866),\n", - " ('rescue', 0.019340920364464914),\n", - " ('theater', 0.01933382927666849),\n", - " ('monsters', 0.019332636015751026),\n", - " ('frankly', 0.019326550823843883),\n", - " ('children', 0.019314240606868868),\n", - " ('convince', 0.019312073515560649),\n", - " ('shallow', 0.019298445504930539),\n", + " ('minute', 0.019351862554568246),\n", + " ('unrealistic', 0.019350657250497869),\n", + " ('rescue', 0.019340920364464904),\n", + " ('theater', 0.01933382927666848),\n", + " ('monsters', 0.01933263601575104),\n", + " ('frankly', 0.019326550823843887),\n", + " ('children', 0.019314240606868871),\n", + " ('convince', 0.019312073515560645),\n", + " ('shallow', 0.01929844550493055),\n", " ('synopsis', 0.019259706392396589),\n", - " ('scott', 0.019183474405570316),\n", - " ('seriously', 0.019182027987150005),\n", - " ('ridiculously', 0.019169300285178978),\n", + " ('scott', 0.01918347440557033),\n", + " ('seriously', 0.019182027987150015),\n", + " ('ridiculously', 0.019169300285178985),\n", " ('looking', 0.019150985439966572),\n", " ('kareena', 0.019110212601710665),\n", - " ('wrote', 0.019015323411486436),\n", - " ('attempts', 0.019006343780653936),\n", - " ('bothered', 0.01897071277757852),\n", - " ('utterly', 0.018924824767803401),\n", + " ('wrote', 0.019015323411486425),\n", + " ('attempts', 0.019006343780653929),\n", + " ('bothered', 0.018970712777578523),\n", + " ('utterly', 0.018924824767803397),\n", " ('giant', 0.018891084650049701),\n", - " ('writers', 0.018868906582101289),\n", - " ('atrocious', 0.018848042351202365),\n", - " ('plain', 0.018828766525513598),\n", + " ('writers', 0.018868906582101285),\n", + " ('atrocious', 0.018848042351202358),\n", + " ('plain', 0.018828766525513588),\n", " ('presumably', 0.018826629750947947),\n", - " ('example', 0.018796453237837182),\n", - " ('murray', 0.018754173430046938),\n", - " ('seemed', 0.018749132295913042),\n", - " ('stay', 0.018744159706432683),\n", - " ('interview', 0.018672085964709536),\n", - " ('disaster', 0.018553283301235159),\n", - " ('value', 0.018544080955166364),\n", - " ('paint', 0.018529607132429377),\n", - " ('original', 0.018528190682362403),\n", - " ('difficult', 0.0185184552981786),\n", + " ('example', 0.018796453237837171),\n", + " ('murray', 0.018754173430046935),\n", + " ('seemed', 0.018749132295913074),\n", + " ('stay', 0.01874415970643269),\n", + " ('interview', 0.018672085964709539),\n", + " ('disaster', 0.018553283301235162),\n", + " ('value', 0.01854408095516636),\n", + " ('paint', 0.01852960713242937),\n", + " ('original', 0.018528190682362413),\n", + " ('difficult', 0.018518455298178593),\n", " ('care', 0.018494804801171254),\n", - " ('watchable', 0.018481870605389097),\n", - " ('useless', 0.01847048100036686),\n", - " ('desperately', 0.018421675047000242),\n", - " ('except', 0.01839199355123855),\n", - " ('doing', 0.018384737621350639),\n", - " ('errors', 0.018380414978330262),\n", - " ('solely', 0.018349321075079389),\n", - " ('sitting', 0.018346519170301084),\n", - " ('giving', 0.018335957397904848),\n", - " ('ideas', 0.018327099221245195),\n", + " ('watchable', 0.018481870605389094),\n", + " ('useless', 0.018470481000366863),\n", + " ('desperately', 0.018421675047000253),\n", + " ('except', 0.01839199355123854),\n", + " ('doing', 0.01838473762135065),\n", + " ('errors', 0.018380414978330265),\n", + " ('solely', 0.018349321075079396),\n", + " ('sitting', 0.018346519170301074),\n", + " ('giving', 0.018335957397904838),\n", + " ('ideas', 0.018327099221245202),\n", " ('unbearable', 0.018321159676201407),\n", - " ('advice', 0.018273372527688833),\n", - " ('nor', 0.018254420259554281),\n", + " ('advice', 0.01827337252768884),\n", + " ('nor', 0.018254420259554288),\n", " ('project', 0.018252633214771753),\n", - " ('dozen', 0.018206363291515759),\n", - " ('charles', 0.01816366057829346),\n", - " ('plastic', 0.018161741020378659),\n", - " ('book', 0.018139011699011293),\n", - " ('shots', 0.018114876064363853),\n", - " ('ill', 0.018103621818215739),\n", - " ('grade', 0.018088309511242372),\n", - " ('where', 0.018065882599695163),\n", - " ('women', 0.01802688382505933),\n", + " ('dozen', 0.018206363291515752),\n", + " ('charles', 0.018163660578293449),\n", + " ('plastic', 0.018161741020378656),\n", + " ('book', 0.018139011699011283),\n", + " ('shots', 0.01811487606436386),\n", + " ('ill', 0.018103621818215749),\n", + " ('grade', 0.018088309511242365),\n", + " ('where', 0.01806588259969516),\n", + " ('women', 0.018026883825059358),\n", " ('screenplay', 0.018014307024101332),\n", " ('through', 0.017990863003241403),\n", - " ('actress', 0.017876003487857152),\n", - " ('sign', 0.017865636144056937),\n", - " ('walk', 0.017823522607756628),\n", - " ('santa', 0.017727102733219181),\n", - " ('happens', 0.017722408798843594),\n", - " ('contrived', 0.017720303645882788),\n", - " ('gun', 0.017685993176933836),\n", - " ('ashamed', 0.017679623098721592),\n", - " ('gratuitous', 0.017665737783803849),\n", + " ('actress', 0.017876003487857159),\n", + " ('sign', 0.01786563614405693),\n", + " ('walk', 0.017823522607756635),\n", + " ('santa', 0.017727102733219185),\n", + " ('happens', 0.017722408798843597),\n", + " ('contrived', 0.017720303645882791),\n", + " ('gun', 0.01768599317693385),\n", + " ('ashamed', 0.017679623098721588),\n", + " ('gratuitous', 0.017665737783803856),\n", " ('one', 0.017608259344043274),\n", - " ('not', 0.017562336441189885),\n", - " ('credibility', 0.017558852870687949),\n", + " ('not', 0.017562336441189895),\n", + " ('credibility', 0.017558852870687959),\n", " ('promising', 0.017544417082572289),\n", " ('risk', 0.017532600100721243),\n", - " ('sub', 0.017531947750389465),\n", + " ('sub', 0.017531947750389475),\n", " ('lacking', 0.017513759836446534),\n", - " ('fell', 0.017464857159331271),\n", - " ('scenery', 0.017451365955319958),\n", - " ('flesh', 0.017402514298262697),\n", + " ('fell', 0.017464857159331278),\n", + " ('scenery', 0.017451365955319955),\n", + " ('flesh', 0.017402514298262693),\n", " ('animal', 0.017386681692205429),\n", - " ('tired', 0.017383214541566688),\n", - " ('writer', 0.017380887757560855),\n", - " ('lady', 0.017370657212565473),\n", - " ('dialogue', 0.01731937394664761),\n", + " ('tired', 0.017383214541566692),\n", + " ('writer', 0.017380887757560838),\n", + " ('lady', 0.017370657212565484),\n", + " ('dialogue', 0.01731937394664762),\n", " ('terribly', 0.017291135257276886),\n", " ('downright', 0.01727767556320545),\n", - " ('rented', 0.017247977656900709),\n", - " ('clumsy', 0.017241290805182077),\n", - " ('blah', 0.01721737717739677),\n", - " ('random', 0.017199913549247995),\n", - " ('members', 0.017198947117344772),\n", - " ('three', 0.01718938391221592),\n", - " ('celluloid', 0.017174000803758881),\n", - " ('your', 0.017140173886430059),\n", - " ('lost', 0.017127763322061805),\n", - " ('suddenly', 0.017124566068806111),\n", + " ('rented', 0.017247977656900719),\n", + " ('clumsy', 0.017241290805182087),\n", + " ('blah', 0.017217377177396766),\n", + " ('random', 0.017199913549248002),\n", + " ('members', 0.017198947117344762),\n", + " ('three', 0.017189383912215916),\n", + " ('celluloid', 0.017174000803758884),\n", + " ('your', 0.017140173886430042),\n", + " ('lost', 0.017127763322061808),\n", + " ('suddenly', 0.017124566068806118),\n", " ('cover', 0.017066680835874291),\n", - " ('existent', 0.017028540662919336),\n", - " ('mostly', 0.017009366180205387),\n", - " ('dig', 0.016990887715494299),\n", + " ('existent', 0.017028540662919339),\n", + " ('mostly', 0.017009366180205376),\n", + " ('dig', 0.016990887715494295),\n", " ('spending', 0.016944400877991022),\n", - " ('elsewhere', 0.016937877167916521),\n", + " ('elsewhere', 0.016937877167916528),\n", " ('suck', 0.016897737192407586),\n", - " ('apparent', 0.016783874225807256),\n", - " ('fill', 0.016766110935370612),\n", - " ('running', 0.016728621099996371),\n", + " ('apparent', 0.016783874225807266),\n", + " ('fill', 0.016766110935370601),\n", + " ('running', 0.016728621099996378),\n", " ('jokes', 0.016718920312228033),\n", - " ('cheese', 0.016699473014889842),\n", - " ('outer', 0.016612591391981468),\n", + " ('cheese', 0.016699473014889846),\n", + " ('outer', 0.016612591391981471),\n", " ('anil', 0.01658120084065488),\n", - " ('director', 0.016512894450311431),\n", - " ('awfully', 0.016492200414985302),\n", - " ('mix', 0.016468214294032512),\n", + " ('director', 0.016512894450311441),\n", + " ('awfully', 0.016492200414985309),\n", + " ('mix', 0.016468214294032515),\n", " ('naturally', 0.016404879835269448),\n", - " ('scientist', 0.016395078905109235),\n", + " ('scientist', 0.016395078905109241),\n", " ('imdb', 0.01634316803410717),\n", - " ('dumb', 0.016289693549692466),\n", - " ('made', 0.016279809910441433),\n", - " ('curiosity', 0.016277433551029966),\n", - " ('somewhere', 0.016236117446747991),\n", + " ('dumb', 0.016289693549692456),\n", + " ('made', 0.016279809910441426),\n", + " ('curiosity', 0.016277433551029969),\n", + " ('somewhere', 0.01623611744674798),\n", " ('stereotyped', 0.016235814767295298),\n", - " ('officer', 0.016235401039884571),\n", - " ('shelf', 0.016151304702362455),\n", - " ('spends', 0.016089566181633212),\n", - " ('explanation', 0.016040330428242218),\n", - " ('proof', 0.016021381235154293),\n", - " ('killed', 0.016004979798664883),\n", - " ('songs', 0.016002280189188103),\n", - " ('why', 0.015994497048455188),\n", - " ('adequate', 0.01597800341059161),\n", - " ('assume', 0.015953574865902431),\n", - " ('mean', 0.015907137878947271),\n", - " ('year', 0.015900265748875861),\n", + " ('officer', 0.016235401039884575),\n", + " ('shelf', 0.016151304702362458),\n", + " ('spends', 0.016089566181633222),\n", + " ('explanation', 0.016040330428242221),\n", + " ('proof', 0.016021381235154286),\n", + " ('killed', 0.016004979798664873),\n", + " ('songs', 0.016002280189188107),\n", + " ('why', 0.015994497048455198),\n", + " ('adequate', 0.015978003410591614),\n", + " ('assume', 0.015953574865902442),\n", + " ('mean', 0.015907137878947288),\n", + " ('year', 0.015900265748875868),\n", " ('named', 0.015897377296493424),\n", - " ('actors', 0.015880849255718695),\n", - " ('dreck', 0.01584418483784927),\n", - " ('ripped', 0.01580935239122223),\n", - " ('exception', 0.015801037653546936),\n", - " ('let', 0.015747554995806847),\n", - " ('said', 0.015739206756809156),\n", - " ('handed', 0.015729421480492774),\n", - " ('five', 0.015692627471399458),\n", - " ('manage', 0.015647108880417114),\n", + " ('actors', 0.015880849255718716),\n", + " ('dreck', 0.015844184837849277),\n", + " ('ripped', 0.015809352391222237),\n", + " ('exception', 0.015801037653546939),\n", + " ('let', 0.015747554995806858),\n", + " ('said', 0.015739206756809145),\n", + " ('handed', 0.015729421480492778),\n", + " ('five', 0.015692627471399451),\n", + " ('manage', 0.015647108880417111),\n", " ('thousands', 0.01564343097589297),\n", " ('faith', 0.015616976955551873),\n", - " ('hideous', 0.015589158171890806),\n", - " ('alas', 0.015538213296394245),\n", - " ('interesting', 0.015537431607034392),\n", - " ('camera', 0.015534217771859279),\n", - " ('affair', 0.01549937182032941),\n", - " ('basketball', 0.015498025904813823),\n", - " ('saved', 0.015479619606949028),\n", - " ('allow', 0.015471290657970004),\n", - " ('embarrassed', 0.015465690911012362),\n", + " ('hideous', 0.015589158171890802),\n", + " ('alas', 0.015538213296394246),\n", + " ('interesting', 0.015537431607034398),\n", + " ('camera', 0.015534217771859269),\n", + " ('affair', 0.015499371820329408),\n", + " ('basketball', 0.015498025904813832),\n", + " ('saved', 0.015479619606949029),\n", + " ('allow', 0.015471290657970005),\n", + " ('embarrassed', 0.015465690911012363),\n", " ('historically', 0.015405093934372959),\n", - " ('guy', 0.015377641254470047),\n", - " ('smoking', 0.015346508854378339),\n", - " ('implausible', 0.015340453986022752),\n", - " ('entirely', 0.015334692788183635),\n", - " ('insulting', 0.015328508644691504),\n", - " ('unable', 0.01532143353815716),\n", - " ('supposedly', 0.015316107621242392),\n", - " ('replaced', 0.015263381265213502),\n", - " ('write', 0.015247349730647845),\n", - " ('devoid', 0.015196181920380185),\n", - " ('angry', 0.015128878425101419),\n", - " ('cannot', 0.015124671278970785),\n", - " ('stinker', 0.015117424017513681),\n", - " ('types', 0.015097306608066999),\n", - " ('hype', 0.015076288365524314),\n", - " ('responsible', 0.014991356276561575),\n", - " ('peter', 0.01496912713733301),\n", - " ('putting', 0.01491070725493724),\n", - " ('over', 0.014897181020826423),\n", + " ('guy', 0.015377641254470054),\n", + " ('smoking', 0.015346508854378342),\n", + " ('implausible', 0.015340453986022747),\n", + " ('entirely', 0.015334692788183644),\n", + " ('insulting', 0.015328508644691506),\n", + " ('unable', 0.015321433538157151),\n", + " ('supposedly', 0.015316107621242407),\n", + " ('replaced', 0.015263381265213496),\n", + " ('write', 0.015247349730647843),\n", + " ('devoid', 0.015196181920380176),\n", + " ('angry', 0.015128878425101425),\n", + " ('cannot', 0.015124671278970781),\n", + " ('stinker', 0.015117424017513684),\n", + " ('types', 0.015097306608067001),\n", + " ('hype', 0.015076288365524309),\n", + " ('responsible', 0.014991356276561571),\n", + " ('peter', 0.014969127137333013),\n", + " ('putting', 0.014910707254937238),\n", + " ('over', 0.014897181020826432),\n", " ('cardboard', 0.014888714204149053),\n", - " ('interspersed', 0.014883165331874145),\n", - " ('haired', 0.014880449676198561),\n", - " ('spend', 0.01487609431622766),\n", - " ('elvis', 0.014854709844151746),\n", - " ('indulgent', 0.014847232132387197),\n", + " ('interspersed', 0.014883165331874141),\n", + " ('haired', 0.014880449676198559),\n", + " ('spend', 0.014876094316227655),\n", + " ('elvis', 0.014854709844151744),\n", + " ('indulgent', 0.014847232132387195),\n", " ('catholic', 0.014843519648135949),\n", - " ('downhill', 0.014807184967767803),\n", - " ('lazy', 0.014781514695229729),\n", - " ('aged', 0.014773315829198603),\n", - " ('exist', 0.014753607788843279),\n", - " ('torture', 0.014733998799388383),\n", + " ('downhill', 0.014807184967767799),\n", + " ('lazy', 0.01478151469522973),\n", + " ('aged', 0.014773315829198599),\n", + " ('exist', 0.014753607788843272),\n", + " ('torture', 0.014733998799388378),\n", " ('prove', 0.014729418674653008),\n", - " ('tolerable', 0.014680880104255797),\n", - " ('four', 0.014654547592632522),\n", - " ('acceptable', 0.014651730694965854),\n", - " ('chick', 0.014641428398798836),\n", - " ('unimaginative', 0.014629366067627068),\n", + " ('tolerable', 0.014680880104255795),\n", + " ('four', 0.014654547592632501),\n", + " ('acceptable', 0.014651730694965849),\n", + " ('chick', 0.01464142839879883),\n", + " ('unimaginative', 0.014629366067627063),\n", " ('whiny', 0.014626751487134583),\n", " ('artsy', 0.014597921349167282),\n", " ('decide', 0.014596087755808985),\n", - " ('unpleasant', 0.014539257963097206),\n", - " ('rotten', 0.014526987482368664),\n", - " ('racist', 0.014521318292204637),\n", - " ('air', 0.014513999400043507),\n", - " ('flimsy', 0.014510298364381127),\n", - " ('baldwin', 0.014458793249711608),\n", - " ('merely', 0.014423588430956466),\n", - " ('wood', 0.014405182128559183),\n", - " ('thinking', 0.014365675477621543),\n", + " ('unpleasant', 0.014539257963097203),\n", + " ('rotten', 0.014526987482368666),\n", + " ('racist', 0.014521318292204648),\n", + " ('air', 0.014513999400043543),\n", + " ('flimsy', 0.014510298364381129),\n", + " ('baldwin', 0.014458793249711607),\n", + " ('merely', 0.014423588430956464),\n", + " ('wood', 0.014405182128559187),\n", + " ('thinking', 0.014365675477621544),\n", " ('earth', 0.01435295387020083),\n", - " ('kidding', 0.014337420788166334),\n", - " ('unintentionally', 0.014336443850996713),\n", - " ('vampires', 0.014325905430975224),\n", - " ('generic', 0.014319871170399821),\n", - " ('defense', 0.014290336242912224),\n", + " ('kidding', 0.014337420788166327),\n", + " ('unintentionally', 0.014336443850996718),\n", + " ('vampires', 0.014325905430975228),\n", + " ('generic', 0.014319871170399826),\n", + " ('defense', 0.014290336242912221),\n", " ('saif', 0.014289573796132724),\n", - " ('asleep', 0.01428901243557696),\n", - " ('execution', 0.014283962008273414),\n", + " ('asleep', 0.014289012435576953),\n", + " ('execution', 0.014283962008273423),\n", " ('figure', 0.014283770855230152),\n", - " ('lackluster', 0.014273058981901451),\n", - " ('hoped', 0.014264724762345839),\n", - " ('nonsense', 0.014261341497203121),\n", - " ('horrid', 0.014253216604458427),\n", - " ('god', 0.014237363547447927),\n", - " ('l', 0.014187296773742574),\n", - " ('caricatures', 0.014181564208326648),\n", - " ('starts', 0.014153430344591602),\n", - " ('dry', 0.014133935534427959),\n", - " ('display', 0.014128179969827096),\n", - " ('button', 0.014116471162614745),\n", - " ('bore', 0.014116389381443262),\n", - " ('empty', 0.014096772700681909),\n", - " ('harold', 0.01405213089664656),\n", - " ('incomprehensible', 0.014009428713655197),\n", - " ('annie', 0.014008405850952508),\n", - " ('thrown', 0.014007462594894687),\n", - " ('incredibly', 0.014005185007294359),\n", - " ('renting', 0.013926687608630473),\n", - " ('connect', 0.013922471736926741),\n", + " ('lackluster', 0.014273058981901452),\n", + " ('hoped', 0.01426472476234584),\n", + " ('nonsense', 0.01426134149720314),\n", + " ('horrid', 0.014253216604458432),\n", + " ('god', 0.01423736354744793),\n", + " ('l', 0.014187296773742582),\n", + " ('caricatures', 0.01418156420832665),\n", + " ('starts', 0.014153430344591598),\n", + " ('dry', 0.014133935534427948),\n", + " ('display', 0.014128179969827093),\n", + " ('button', 0.014116471162614747),\n", + " ('bore', 0.014116389381443268),\n", + " ('empty', 0.014096772700681898),\n", + " ('harold', 0.014052130896646567),\n", + " ('incomprehensible', 0.014009428713655193),\n", + " ('annie', 0.014008405850952518),\n", + " ('thrown', 0.014007462594894679),\n", + " ('incredibly', 0.014005185007294368),\n", + " ('renting', 0.013926687608630483),\n", + " ('connect', 0.013922471736926742),\n", " ('younger', 0.013921148395141745),\n", - " ('author', 0.013908729139553402),\n", - " ('mistakes', 0.013902060662024719),\n", - " ('vague', 0.013900188409028463),\n", - " ('susan', 0.013899718009237954),\n", - " ('obvious', 0.013862928310275266),\n", - " ('public', 0.013848261281553184),\n", - " ('porn', 0.013842110384054571),\n", - " ('trash', 0.013803990572178477),\n", - " ('stevens', 0.013796967244647433),\n", - " ('sequels', 0.013782463861472685),\n", - " ('hurt', 0.013769543921240147),\n", - " ('desert', 0.013763619124969727),\n", - " ('did', 0.013737639449728174),\n", - " ('behave', 0.013719767167839486),\n", - " ('served', 0.013714838239223712),\n", - " ('claims', 0.013706886269650519),\n", - " ('ultimately', 0.013697643591100142),\n", - " ('wide', 0.013685211021307759),\n", - " ('wow', 0.013679184770624804),\n", - " ('worthless', 0.013670533296298283),\n", - " ('dear', 0.013653591379600143),\n", - " ('plodding', 0.013622845840855251),\n", - " ('mike', 0.013594086031988714),\n", + " ('author', 0.013908729139553409),\n", + " ('mistakes', 0.013902060662024722),\n", + " ('vague', 0.013900188409028458),\n", + " ('susan', 0.013899718009237958),\n", + " ('obvious', 0.013862928310275269),\n", + " ('public', 0.013848261281553191),\n", + " ('porn', 0.013842110384054578),\n", + " ('trash', 0.013803990572178482),\n", + " ('stevens', 0.013796967244647431),\n", + " ('sequels', 0.01378246386147269),\n", + " ('hurt', 0.013769543921240126),\n", + " ('desert', 0.013763619124969737),\n", + " ('did', 0.013737639449728188),\n", + " ('behave', 0.013719767167839484),\n", + " ('served', 0.013714838239223709),\n", + " ('claims', 0.013706886269650513),\n", + " ('ultimately', 0.013697643591100159),\n", + " ('wide', 0.013685211021307755),\n", + " ('wow', 0.013679184770624811),\n", + " ('worthless', 0.013670533296298292),\n", + " ('dear', 0.013653591379600139),\n", + " ('plodding', 0.013622845840855246),\n", + " ('mike', 0.013594086031988721),\n", " ('favor', 0.013578310381078498),\n", - " ('call', 0.013577646631327924),\n", - " ('biggest', 0.01352994758638959),\n", - " ('worthy', 0.013524754842185321),\n", - " ('meaning', 0.01351799753190056),\n", - " ('scientific', 0.013515396653842862),\n", - " ('hanks', 0.013467213376215906),\n", - " ('ads', 0.013463653421760929),\n", + " ('call', 0.013577646631327928),\n", + " ('biggest', 0.01352994758638958),\n", + " ('worthy', 0.013524754842185325),\n", + " ('meaning', 0.013517997531900566),\n", + " ('scientific', 0.013515396653842859),\n", + " ('hanks', 0.013467213376215903),\n", + " ('ads', 0.013463653421760934),\n", " ('gay', 0.013414840808688232),\n", - " ('embarrassingly', 0.013401336286973733),\n", + " ('embarrassingly', 0.013401336286973735),\n", " ('literary', 0.013389208999321041),\n", - " ('playing', 0.013329954634726374),\n", - " ('bo', 0.013312890564682517),\n", - " ('manipulative', 0.01328701694140634),\n", - " ('dressed', 0.013285092423656572),\n", - " ('embarrassment', 0.01326953031919822),\n", - " ('regarding', 0.01323325021163165),\n", - " ('stilted', 0.013215539220141922),\n", + " ('playing', 0.01332995463472637),\n", + " ('bo', 0.013312890564682506),\n", + " ('manipulative', 0.013287016941406332),\n", + " ('dressed', 0.013285092423656565),\n", + " ('embarrassment', 0.013269530319198222),\n", + " ('regarding', 0.01323325021163166),\n", + " ('stilted', 0.013215539220141913),\n", " ('sleeve', 0.013215085161586725),\n", - " ('rating', 0.013203442200940883),\n", - " ('kills', 0.013183919467358753),\n", - " ('sounds', 0.013178727878711728),\n", - " ('ali', 0.013173031266866371),\n", - " ('non', 0.013162603751805235),\n", - " ('pie', 0.013161492629253847),\n", - " ('populated', 0.013152746747459263),\n", - " ('killing', 0.013111860853151799),\n", - " ('else', 0.013110592541316709),\n", + " ('rating', 0.013203442200940888),\n", + " ('kills', 0.013183919467358739),\n", + " ('sounds', 0.013178727878711719),\n", + " ('ali', 0.013173031266866373),\n", + " ('non', 0.01316260375180525),\n", + " ('pie', 0.013161492629253844),\n", + " ('populated', 0.013152746747459268),\n", + " ('killing', 0.0131118608531518),\n", + " ('else', 0.013110592541316701),\n", " ('schneider', 0.013093514941690407),\n", - " ('priest', 0.013071537555948209),\n", + " ('priest', 0.013071537555948207),\n", " ('hollow', 0.013068001463175461),\n", - " ('shower', 0.013029604174841079),\n", - " ('ruins', 0.013021597567104505),\n", - " ('mental', 0.01301969624447981),\n", - " ('this', 0.013009778169664537),\n", - " ('pregnant', 0.012997074834619553),\n", - " ('make', 0.012992851916498646),\n", - " ('timberlake', 0.012979689860020448),\n", - " ('saves', 0.012915795355367861),\n", - " ('vastly', 0.012914828969565761),\n", - " ('swear', 0.012901059475490069),\n", + " ('shower', 0.013029604174841071),\n", + " ('ruins', 0.013021597567104503),\n", + " ('mental', 0.013019696244479819),\n", + " ('this', 0.01300977816966453),\n", + " ('pregnant', 0.012997074834619548),\n", + " ('make', 0.012992851916498661),\n", + " ('timberlake', 0.012979689860020446),\n", + " ('saves', 0.012915795355367856),\n", + " ('vastly', 0.012914828969565759),\n", + " ('swear', 0.012901059475490067),\n", " ('stella', 0.012883911119651204),\n", " ('grave', 0.01288255504027714),\n", - " ('thats', 0.01286106181291034),\n", - " ('drinking', 0.012860129471019699),\n", - " ('boom', 0.012851779594694185),\n", - " ('introduction', 0.012831129197335459),\n", + " ('thats', 0.012861061812910347),\n", + " ('drinking', 0.0128601294710197),\n", + " ('boom', 0.012851779594694182),\n", + " ('introduction', 0.012831129197335457),\n", " ('programming', 0.012796219757750261),\n", " ('career', 0.012773059501084118),\n", - " ('stereotype', 0.012769447626661474),\n", - " ('attractive', 0.012765873120010157),\n", + " ('stereotype', 0.012769447626661462),\n", + " ('attractive', 0.012765873120010152),\n", " ('victims', 0.012749299245502175),\n", - " ('pass', 0.012735021821089283),\n", - " ('experiment', 0.012716112941788916),\n", - " ('retarded', 0.012713099529852412),\n", - " ('stuck', 0.012709332698253268),\n", - " ('akshay', 0.012684273069877867),\n", - " ('cut', 0.012676285239015471),\n", - " ('shoddy', 0.012674792040888052),\n", + " ('pass', 0.012735021821089293),\n", + " ('experiment', 0.012716112941788907),\n", + " ('retarded', 0.012713099529852416),\n", + " ('stuck', 0.01270933269825327),\n", + " ('akshay', 0.012684273069877868),\n", + " ('cut', 0.012676285239015489),\n", + " ('shoddy', 0.012674792040888049),\n", " ('damme', 0.012666536417656674),\n", - " ('inaccurate', 0.012653687577536552),\n", - " ('ray', 0.01264981802351017),\n", - " ('woman', 0.012646521945546317),\n", + " ('inaccurate', 0.01265368757753655),\n", + " ('ray', 0.012649818023510173),\n", + " ('woman', 0.012646521945546347),\n", " ('research', 0.01264049466286456),\n", - " ('mile', 0.012627245693716736),\n", - " ('place', 0.012624645831509417),\n", - " ('demon', 0.012621688470792604),\n", - " ('vulgar', 0.012612150302693328),\n", - " ('engage', 0.012602272831074859),\n", - " ('wives', 0.012601890190118302),\n", - " ('mention', 0.012581598480006484),\n", - " ('if', 0.012569631262234721),\n", - " ('cartoon', 0.012561864177985759),\n", - " ('unbelievably', 0.012550391668315848),\n", - " ('only', 0.012517107727859141),\n", - " ('ended', 0.012507282716729795),\n", - " ('stereotypical', 0.012506426536204349),\n", - " ('spent', 0.012503032775055233),\n", - " ('thing', 0.012483110991541426),\n", - " ('phone', 0.01246403999148914),\n", - " ('stock', 0.012446742147556615),\n", - " ('drop', 0.012432978683590461),\n", - " ('self', 0.012432059211520789),\n", - " ('headache', 0.012424495134195478),\n", - " ('escapes', 0.012419211298248927),\n", + " ('mile', 0.012627245693716727),\n", + " ('place', 0.012624645831509405),\n", + " ('demon', 0.012621688470792602),\n", + " ('vulgar', 0.012612150302693321),\n", + " ('engage', 0.012602272831074856),\n", + " ('wives', 0.012601890190118297),\n", + " ('mention', 0.01258159848000647),\n", + " ('if', 0.012569631262234718),\n", + " ('cartoon', 0.012561864177985766),\n", + " ('unbelievably', 0.012550391668315839),\n", + " ('only', 0.012517107727859139),\n", + " ('ended', 0.012507282716729802),\n", + " ('stereotypical', 0.012506426536204353),\n", + " ('spent', 0.012503032775055236),\n", + " ('thing', 0.012483110991541414),\n", + " ('phone', 0.012464039991489125),\n", + " ('stock', 0.012446742147556611),\n", + " ('drop', 0.012432978683590463),\n", + " ('self', 0.012432059211520796),\n", + " ('headache', 0.012424495134195477),\n", + " ('escapes', 0.012419211298248923),\n", " ('conceived', 0.012392639977060707),\n", - " ('required', 0.01239226094704284),\n", - " ('assassin', 0.012332404091910098),\n", - " ('meat', 0.01232775118789043),\n", - " ('therefore', 0.012316138729629602),\n", - " ('struggling', 0.012308628353572298),\n", - " ('ho', 0.012307714936265708),\n", + " ('required', 0.012392260947042837),\n", + " ('assassin', 0.012332404091910091),\n", + " ('meat', 0.012327751187890434),\n", + " ('therefore', 0.012316138729629621),\n", + " ('struggling', 0.0123086283535723),\n", + " ('ho', 0.01230771493626571),\n", " ('ta', 0.012299409649320241),\n", - " ('cold', 0.012289510775209253),\n", - " ('expects', 0.012271684887263185),\n", - " ('furthermore', 0.012263298696316196),\n", - " ('remote', 0.012254529263879224),\n", - " ('cgi', 0.012250569964074186),\n", - " ('arab', 0.012230232115225252),\n", + " ('cold', 0.012289510775209263),\n", + " ('expects', 0.012271684887263186),\n", + " ('furthermore', 0.012263298696316208),\n", + " ('remote', 0.012254529263879219),\n", + " ('cgi', 0.012250569964074179),\n", + " ('arab', 0.01223023211522525),\n", " ('feminist', 0.012220004405980549),\n", - " ('hair', 0.012213792907949607),\n", - " ('intelligence', 0.012203964889416772),\n", - " ('destroy', 0.012190213907023966),\n", - " ('cameo', 0.012186034087855117),\n", + " ('hair', 0.012213792907949602),\n", + " ('intelligence', 0.012203964889416771),\n", + " ('destroy', 0.012190213907023963),\n", + " ('cameo', 0.012186034087855138),\n", " ('claus', 0.012181510618531247),\n", - " ('awake', 0.012171290237450142),\n", - " ('sums', 0.012139945909251906),\n", - " ('auto', 0.012126012687040617),\n", - " ('cue', 0.012120943623008961),\n", - " ('speak', 0.012117784815618106),\n", - " ('stereotypes', 0.012106976159466584),\n", - " ('footage', 0.012103658001584279),\n", - " ('maker', 0.012093369539270362),\n", - " ('rental', 0.012083052888147332),\n", - " ('proper', 0.012063210621690417),\n", - " ('mercifully', 0.012047936344961971),\n", - " ('gimmick', 0.012041001769926648),\n", - " ('coherent', 0.01202789992069362),\n", + " ('awake', 0.012171290237450149),\n", + " ('sums', 0.012139945909251909),\n", + " ('auto', 0.012126012687040621),\n", + " ('cue', 0.012120943623008968),\n", + " ('speak', 0.012117784815618111),\n", + " ('stereotypes', 0.012106976159466589),\n", + " ('footage', 0.012103658001584288),\n", + " ('maker', 0.012093369539270352),\n", + " ('rental', 0.012083052888147327),\n", + " ('proper', 0.012063210621690411),\n", + " ('mercifully', 0.012047936344961967),\n", + " ('gimmick', 0.012041001769926649),\n", + " ('coherent', 0.012027899920693617),\n", " ('inane', 0.011993175877578831),\n", - " ('relies', 0.011992345660343812),\n", + " ('relies', 0.011992345660343814),\n", " ('nomination', 0.011982252573531256),\n", " ('segal', 0.011947340234058409),\n", - " ('christians', 0.011946398905489911),\n", - " ('overrated', 0.011926101166626011),\n", - " ('don', 0.011924357980777289),\n", - " ('severely', 0.011916168552237325),\n", - " ('phony', 0.011913822393121727),\n", - " ('selfish', 0.011900529017180247),\n", - " ('resume', 0.011897346320859063),\n", - " ('another', 0.011877684431361633),\n", - " ('sean', 0.011876040214137611),\n", - " ('hepburn', 0.011869243078008905),\n", - " ('secondly', 0.011863109334450278),\n", + " ('christians', 0.011946398905489906),\n", + " ('overrated', 0.011926101166626018),\n", + " ('don', 0.011924357980777282),\n", + " ('severely', 0.01191616855223732),\n", + " ('phony', 0.011913822393121729),\n", + " ('selfish', 0.011900529017180242),\n", + " ('resume', 0.011897346320859059),\n", + " ('another', 0.011877684431361637),\n", + " ('sean', 0.011876040214137613),\n", + " ('hepburn', 0.011869243078008906),\n", + " ('secondly', 0.011863109334450284),\n", " ('ups', 0.011859394818287424),\n", - " ('planet', 0.011852030247443602),\n", - " ('changed', 0.011845335611887478),\n", + " ('planet', 0.011852030247443588),\n", + " ('changed', 0.011845335611887487),\n", " ('amused', 0.011842962845878574),\n", - " ('lowest', 0.011831634819501925),\n", - " ('fools', 0.011824116232842369),\n", - " ('spelling', 0.01182190219487262),\n", - " ('repressed', 0.011821527286346355),\n", - " ('unlikeable', 0.011818760110586489),\n", - " ('failure', 0.011816519901709061),\n", - " ('line', 0.011796438571873897),\n", - " ('hyped', 0.011784666544684309),\n", - " ('anti', 0.011764086315539162),\n", - " ('acting', 0.011752348314205381),\n", - " ('promise', 0.011749711660046621),\n", - " ('observe', 0.01173960895927862),\n", - " ('mindless', 0.011729368774426889),\n", - " ('lacked', 0.011718485221863717),\n", - " ('rather', 0.011704535222487884),\n", - " ('ed', 0.011700096242497),\n", - " ('significant', 0.011696176501939933),\n", - " ('talks', 0.011678101476086887),\n", - " ('arty', 0.011674972481678906),\n", - " ('spit', 0.011671408526135133),\n", - " ('ilk', 0.011661568455359034),\n", - " ('unoriginal', 0.011651107245840888),\n", - " ('forward', 0.011646719533106094),\n", - " ('toilet', 0.011635522207639082),\n", - " ('suppose', 0.011633258510072193),\n", - " ('feed', 0.01161744751742516),\n", - " ('surrounded', 0.011607897169523122),\n", - " ('wanted', 0.011604506869089717),\n", - " ('tashan', 0.011596205445299114),\n", + " ('lowest', 0.011831634819501927),\n", + " ('fools', 0.011824116232842368),\n", + " ('spelling', 0.011821902194872625),\n", + " ('repressed', 0.011821527286346349),\n", + " ('unlikeable', 0.011818760110586484),\n", + " ('failure', 0.011816519901709054),\n", + " ('line', 0.0117964385718739),\n", + " ('hyped', 0.011784666544684314),\n", + " ('anti', 0.011764086315539176),\n", + " ('acting', 0.01175234831420538),\n", + " ('promise', 0.011749711660046633),\n", + " ('observe', 0.011739608959278629),\n", + " ('mindless', 0.011729368774426886),\n", + " ('lacked', 0.011718485221863714),\n", + " ('rather', 0.011704535222487896),\n", + " ('ed', 0.011700096242496991),\n", + " ('significant', 0.011696176501939935),\n", + " ('talks', 0.01167810147608688),\n", + " ('arty', 0.011674972481678904),\n", + " ('spit', 0.011671408526135135),\n", + " ('ilk', 0.011661568455359036),\n", + " ('unoriginal', 0.01165110724584089),\n", + " ('forward', 0.01164671953310609),\n", + " ('toilet', 0.011635522207639078),\n", + " ('suppose', 0.011633258510072188),\n", + " ('feed', 0.011617447517425158),\n", + " ('surrounded', 0.011607897169523131),\n", + " ('wanted', 0.011604506869089728),\n", + " ('tashan', 0.011596205445299112),\n", " ('dr', 0.011543949281335654),\n", - " ('scare', 0.011543316667712911),\n", - " ('murderer', 0.01153535057163968),\n", - " ('explained', 0.011466329649783223),\n", + " ('scare', 0.011543316667712916),\n", + " ('murderer', 0.011535350571639669),\n", + " ('explained', 0.011466329649783226),\n", " ('cheated', 0.011455846970137717),\n", - " ('whats', 0.01145144357723085),\n", - " ('romance', 0.011445558616225324),\n", + " ('whats', 0.011451443577230852),\n", + " ('romance', 0.011445558616225333),\n", " ('jewish', 0.01144156416364368),\n", - " ('sexual', 0.011438682797255692),\n", - " ('books', 0.01141981177753517),\n", - " ('throwing', 0.011404165894740236),\n", - " ('nose', 0.011395583651720633),\n", - " ('parking', 0.011390688400833918),\n", - " ('pick', 0.011357671445382189),\n", - " ('chose', 0.011354353327826123),\n", - " ('improve', 0.011350584813053925),\n", + " ('sexual', 0.011438682797255694),\n", + " ('books', 0.011419811777535165),\n", + " ('throwing', 0.011404165894740245),\n", + " ('nose', 0.01139558365172063),\n", + " ('parking', 0.011390688400833916),\n", + " ('pick', 0.011357671445382181),\n", + " ('chose', 0.011354353327826125),\n", + " ('improve', 0.011350584813053916),\n", " ('kapoor', 0.01134076781407491),\n", - " ('costs', 0.011325900726890986),\n", - " ('saying', 0.011325617629551307),\n", - " ('early', 0.011320525734188102),\n", - " ('technically', 0.011317672837061947),\n", - " ('hackman', 0.011288294849240653),\n", + " ('costs', 0.01132590072689099),\n", + " ('saying', 0.011325617629551343),\n", + " ('early', 0.011320525734188101),\n", + " ('technically', 0.011317672837061943),\n", + " ('hackman', 0.011288294849240654),\n", " ('birthday', 0.011282785404027751),\n", - " ('cinematography', 0.01126357278583168),\n", - " ('hurts', 0.011250154303091529),\n", - " ('saturday', 0.011247837147971238),\n", - " ('meaningless', 0.011239510238506719),\n", - " ('mannered', 0.011239044207972256),\n", - " ('screaming', 0.011238620310222365),\n", - " ('should', 0.011236648355832355),\n", - " ('crazed', 0.011236418275421324),\n", - " ('dignity', 0.011236150963786544),\n", - " ('mate', 0.011216700009844507),\n", - " ('letters', 0.01120867551717448),\n", - " ('recycled', 0.011206236378205581),\n", - " ('promptly', 0.011202237607822142),\n", - " ('inexplicably', 0.011161321811546263),\n", - " ('or', 0.011152965343305347),\n", - " ('simply', 0.011146233896835899),\n", - " ('too', 0.011130044921930272),\n", - " ('nerd', 0.01112254312772144),\n", - " ('chris', 0.011116119389820149),\n", - " ('proceedings', 0.011111786695547108),\n", - " ('lived', 0.011100598930695572),\n", + " ('cinematography', 0.011263572785831703),\n", + " ('hurts', 0.011250154303091528),\n", + " ('saturday', 0.011247837147971248),\n", + " ('meaningless', 0.011239510238506721),\n", + " ('mannered', 0.011239044207972258),\n", + " ('screaming', 0.011238620310222368),\n", + " ('should', 0.011236648355832369),\n", + " ('crazed', 0.011236418275421323),\n", + " ('dignity', 0.011236150963786553),\n", + " ('mate', 0.011216700009844505),\n", + " ('letters', 0.011208675517174485),\n", + " ('recycled', 0.011206236378205579),\n", + " ('promptly', 0.011202237607822152),\n", + " ('inexplicably', 0.011161321811546261),\n", + " ('or', 0.011152965343305354),\n", + " ('simply', 0.011146233896835885),\n", + " ('too', 0.011130044921930279),\n", + " ('nerd', 0.011122543127721434),\n", + " ('chris', 0.011116119389820139),\n", + " ('proceedings', 0.011111786695547103),\n", + " ('lived', 0.011100598930695578),\n", " ('code', 0.011095425242701427),\n", - " ('potentially', 0.011093285835678529),\n", - " ('open', 0.011075631889800963),\n", - " ('faster', 0.01107417790688831),\n", - " ('moore', 0.011070458274337764),\n", + " ('potentially', 0.011093285835678517),\n", + " ('open', 0.011075631889800956),\n", + " ('faster', 0.011074177906888303),\n", + " ('moore', 0.011070458274337771),\n", " ('bowl', 0.011060417562531434),\n", - " ('absolutely', 0.011044130796846874),\n", - " ('just', 0.011033356854991546),\n", - " ('suspension', 0.011031781173072136),\n", - " ('enemy', 0.011025820754518642),\n", - " ('conclusion', 0.01098605106694335),\n", - " ('hospital', 0.010977494845678702),\n", - " ('romances', 0.010962761722118313),\n", - " ('spoke', 0.010962116403553662),\n", - " ('hardly', 0.010960545391113432),\n", - " ('olds', 0.010951344004097448),\n", - " ('creek', 0.010950023924322873),\n", - " ('shouting', 0.010943727502542742),\n", - " ('originality', 0.010912963822714918),\n", - " ('bollywood', 0.01091140913757779),\n", - " ('cape', 0.01090232612951828),\n", - " ('teeth', 0.010900502046002626),\n", - " ('backdrop', 0.010885688008708726),\n", - " ('turn', 0.010880478059425661),\n", - " ('mason', 0.010866951716170661),\n", - " ('grace', 0.010848406257382327),\n", + " ('absolutely', 0.011044130796846869),\n", + " ('just', 0.011033356854991551),\n", + " ('suspension', 0.01103178117307213),\n", + " ('enemy', 0.011025820754518637),\n", + " ('conclusion', 0.010986051066943354),\n", + " ('hospital', 0.010977494845678703),\n", + " ('romances', 0.010962761722118314),\n", + " ('spoke', 0.010962116403553664),\n", + " ('hardly', 0.010960545391113449),\n", + " ('olds', 0.010951344004097443),\n", + " ('creek', 0.01095002392432287),\n", + " ('shouting', 0.010943727502542746),\n", + " ('originality', 0.010912963822714929),\n", + " ('bollywood', 0.010911409137577788),\n", + " ('cape', 0.010902326129518278),\n", + " ('teeth', 0.010900502046002621),\n", + " ('backdrop', 0.010885688008708724),\n", + " ('turn', 0.01088047805942566),\n", + " ('mason', 0.010866951716170666),\n", + " ('grace', 0.01084840625738232),\n", " ('valley', 0.01084518042587585),\n", - " ('depressing', 0.01082781808673851),\n", - " ('superficial', 0.010826403237558534),\n", - " ('invested', 0.010812488716640862),\n", - " ('bomb', 0.010811727591767128),\n", - " ('embarrass', 0.010778451069403573),\n", - " ('sided', 0.010773707983617684),\n", + " ('depressing', 0.010827818086738501),\n", + " ('superficial', 0.010826403237558541),\n", + " ('invested', 0.01081248871664086),\n", + " ('bomb', 0.010811727591767125),\n", + " ('embarrass', 0.010778451069403571),\n", + " ('sided', 0.010773707983617689),\n", " ('sticking', 0.01076229243554771),\n", - " ('common', 0.010754536408451009),\n", - " ('boat', 0.01075019648705914),\n", - " ('promised', 0.010746025901289742),\n", + " ('common', 0.010754536408451015),\n", + " ('boat', 0.010750196487059141),\n", + " ('promised', 0.010746025901289745),\n", " ('wayans', 0.010744338945929417),\n", - " ('sheer', 0.010734103279474518),\n", - " ('wrestling', 0.010724515540975425),\n", - " ('staff', 0.01071552352049706),\n", + " ('sheer', 0.010734103279474513),\n", + " ('wrestling', 0.010724515540975419),\n", + " ('staff', 0.010715523520497063),\n", " ('apollo', 0.010711377643774774),\n", - " ('leigh', 0.010702080598678557),\n", - " ('virtually', 0.010691942663824),\n", - " ('seagal', 0.010677324100672115),\n", + " ('leigh', 0.010702080598678559),\n", + " ('virtually', 0.010691942663824013),\n", + " ('seagal', 0.01067732410067212),\n", " ('comes', 0.010674899719725496),\n", - " ('edition', 0.010673353805904191),\n", - " ('predictably', 0.010666551243955751),\n", - " ('stuff', 0.010664915811483253),\n", - " ('gang', 0.010664441184213126),\n", - " ('cancer', 0.010643225900463583),\n", - " ('obviously', 0.010641670080654527),\n", - " ('would', 0.010623530922231159),\n", - " ('totally', 0.010616092995147878),\n", + " ('edition', 0.010673353805904192),\n", + " ('predictably', 0.010666551243955748),\n", + " ('stuff', 0.01066491581148326),\n", + " ('gang', 0.010664441184213122),\n", + " ('cancer', 0.010643225900463581),\n", + " ('obviously', 0.01064167008065452),\n", + " ('would', 0.010623530922231171),\n", + " ('totally', 0.010616092995147892),\n", " ('profile', 0.010596003501785219),\n", - " ('spacey', 0.0105959674077844),\n", - " ('ability', 0.010584592521360165),\n", - " ('horrendous', 0.010580213328532088),\n", - " ('blood', 0.01057952040109531),\n", - " ('imitation', 0.01056855063057297),\n", + " ('spacey', 0.010595967407784398),\n", + " ('ability', 0.010584592521360157),\n", + " ('horrendous', 0.010580213328532092),\n", + " ('blood', 0.010579520401095324),\n", + " ('imitation', 0.010568550630572965),\n", " ('bikini', 0.010568043371931096),\n", - " ('talented', 0.010566001035979449),\n", - " ('basis', 0.010564729746933205),\n", - " ('dialogs', 0.010551191397294013),\n", - " ('showing', 0.01054861356445423),\n", - " ('door', 0.010544563357219771),\n", - " ('portray', 0.01052779962849062),\n", - " ('strictly', 0.010526959295132303),\n", - " ('mexican', 0.010508731517822332),\n", - " ('stick', 0.010465961443388684),\n", + " ('talented', 0.01056600103597944),\n", + " ('basis', 0.010564729746933198),\n", + " ('dialogs', 0.010551191397294017),\n", + " ('showing', 0.010548613564454233),\n", + " ('door', 0.010544563357219766),\n", + " ('portray', 0.010527799628490622),\n", + " ('strictly', 0.010526959295132313),\n", + " ('mexican', 0.01050873151782233),\n", + " ('stick', 0.010465961443388676),\n", " ('east', 0.010455324716016763),\n", - " ('anywhere', 0.010431532734666278),\n", - " ('remake', 0.010419869194952839),\n", - " ('am', 0.010410414209203928),\n", - " ('attempting', 0.010386393998627374),\n", - " ('disturbing', 0.01038115260858144),\n", - " ('jude', 0.010377136500506753),\n", - " ('wondering', 0.0103635126900122),\n", - " ('celebrated', 0.010360111769075864),\n", - " ('use', 0.010350554074714656),\n", - " ('wreck', 0.010344734410393921),\n", - " ('appear', 0.010344438351539177),\n", - " ('entitled', 0.01033524600159307),\n", - " ('youth', 0.010323214445994815),\n", - " ('letdown', 0.010318553446258684),\n", + " ('anywhere', 0.010431532734666286),\n", + " ('remake', 0.010419869194952832),\n", + " ('am', 0.010410414209203927),\n", + " ('attempting', 0.010386393998627379),\n", + " ('disturbing', 0.010381152608581428),\n", + " ('jude', 0.010377136500506758),\n", + " ('wondering', 0.010363512690012205),\n", + " ('celebrated', 0.010360111769075867),\n", + " ('use', 0.010350554074714642),\n", + " ('wreck', 0.010344734410393918),\n", + " ('appear', 0.010344438351539182),\n", + " ('entitled', 0.010335246001593067),\n", + " ('youth', 0.010323214445994808),\n", + " ('letdown', 0.010318553446258687),\n", " ('moran', 0.010305507693633363),\n", " ('mediocrity', 0.010302827140695378),\n", - " ('news', 0.010292874788426089),\n", - " ('bits', 0.010276065293631171),\n", - " ('alone', 0.010268492053981971),\n", + " ('news', 0.010292874788426099),\n", + " ('bits', 0.010276065293631165),\n", + " ('alone', 0.010268492053981962),\n", " ('accents', 0.010263852094534696),\n", - " ('inhabited', 0.010244117693024817),\n", - " ('mock', 0.010244061360675913),\n", - " ('g', 0.010223458175403783),\n", - " ('box', 0.010203304329265759),\n", - " ('term', 0.010199983044386093),\n", + " ('inhabited', 0.010244117693024819),\n", + " ('mock', 0.01024406136067591),\n", + " ('g', 0.01022345817540379),\n", + " ('box', 0.010203304329265748),\n", + " ('term', 0.010199983044386105),\n", " ('behavior', 0.010198776124373247),\n", - " ('tedium', 0.010190092201507218),\n", - " ('intent', 0.010190038120698576),\n", - " ('husband', 0.010189502265957844),\n", + " ('tedium', 0.010190092201507222),\n", + " ('intent', 0.01019003812069858),\n", + " ('husband', 0.010189502265957835),\n", " ('presence', 0.01018719233607417),\n", - " ('z', 0.010184318583214764),\n", - " ('unappealing', 0.010146391189444369),\n", - " ('much', 0.010136790117697156),\n", - " ('tree', 0.010113534581593919),\n", + " ('z', 0.010184318583214768),\n", + " ('unappealing', 0.010146391189444371),\n", + " ('much', 0.010136790117697142),\n", + " ('tree', 0.010113534581593916),\n", " ('doctors', 0.010099854380484188),\n", - " ('pi', 0.010095099419111343),\n", - " ('rodney', 0.010090819798082386),\n", - " ('franchise', 0.010089650929674206),\n", - " ('piece', 0.010086011549585336),\n", - " ('company', 0.010083539582601046),\n", - " ('choppy', 0.01007922342059374),\n", - " ('turned', 0.01006985554799013),\n", - " ('test', 0.0100415053556139),\n", - " ('ball', 0.010040944323609524),\n", - " ('hated', 0.010035509058945857),\n", - " ('bear', 0.010034272465057463),\n", + " ('pi', 0.010095099419111339),\n", + " ('rodney', 0.010090819798082384),\n", + " ('franchise', 0.010089650929674208),\n", + " ('piece', 0.01008601154958534),\n", + " ('company', 0.01008353958260105),\n", + " ('choppy', 0.010079223420593737),\n", + " ('turned', 0.010069855547990135),\n", + " ('test', 0.010041505355613904),\n", + " ('ball', 0.010040944323609536),\n", + " ('hated', 0.010035509058945865),\n", + " ('bear', 0.010034272465057467),\n", " ('serves', 0.010027495172169233),\n", " ('leonard', 0.010022751390164696),\n", - " ('deserved', 0.010022334081283373),\n", - " ('part', 0.010016360436147436),\n", - " ('opportunity', 0.0100131260126467),\n", - " ('turning', 0.01001185096086577),\n", - " ('overacting', 0.010008994714980212),\n", - " ('refer', 0.010006488920574092),\n", - " ('flies', 0.010006418749637631),\n", - " ('uninvolving', 0.0099991338976208165),\n", - " ('produce', 0.0099962014038013792),\n", - " ('jumpy', 0.0099947855808415181),\n", - " ('die', 0.0099914129058671051),\n", - " ('root', 0.0099747135001128362),\n", - " ('insomnia', 0.0099744642555285069),\n", - " ('blatant', 0.00995966200056639),\n", + " ('deserved', 0.010022334081283366),\n", + " ('part', 0.010016360436147429),\n", + " ('opportunity', 0.010013126012646699),\n", + " ('turning', 0.010011850960865766),\n", + " ('overacting', 0.010008994714980214),\n", + " ('refer', 0.010006488920574083),\n", + " ('flies', 0.010006418749637636),\n", + " ('uninvolving', 0.0099991338976208183),\n", + " ('produce', 0.0099962014038013757),\n", + " ('jumpy', 0.0099947855808415163),\n", + " ('die', 0.0099914129058671069),\n", + " ('root', 0.009974713500112831),\n", + " ('insomnia', 0.0099744642555285121),\n", + " ('blatant', 0.0099596620005663883),\n", " ('larry', 0.0099556905367902595),\n", - " ('threw', 0.0099473965388449642),\n", - " ('billed', 0.0099285818753670953),\n", - " ('bullets', 0.0099281758971005944),\n", - " ('intellectually', 0.0099081388278786219),\n", - " ('rip', 0.0099013233996040808),\n", - " ('stretching', 0.009901296969917265),\n", - " ('protest', 0.0098984552675623581),\n", - " ('soldiers', 0.0098936923822449188),\n", + " ('threw', 0.0099473965388449607),\n", + " ('billed', 0.0099285818753670936),\n", + " ('bullets', 0.0099281758971005961),\n", + " ('intellectually', 0.0099081388278786167),\n", + " ('rip', 0.0099013233996040912),\n", + " ('stretching', 0.0099012969699172667),\n", + " ('protest', 0.0098984552675623651),\n", + " ('soldiers', 0.0098936923822449136),\n", " ('flick', 0.0098870633649776659),\n", - " ('justin', 0.0098622466027175615),\n", - " ('highlights', 0.0098589088020586274),\n", - " ('move', 0.0098539899809540511),\n", + " ('justin', 0.009862246602717565),\n", + " ('highlights', 0.0098589088020586361),\n", + " ('move', 0.0098539899809540355),\n", " ('merit', 0.0098431205949966755),\n", - " ('russian', 0.0098411717219841124),\n", - " ('security', 0.0098373450338831072),\n", - " ('idiotic', 0.0098341234288144615),\n", - " ('produced', 0.0098294307574258027),\n", - " ('king', 0.0098266872343175712),\n", - " ('magically', 0.0098228842476825676),\n", - " ('united', 0.009807084789070766),\n", - " ('missile', 0.0097990578193348533),\n", + " ('russian', 0.0098411717219841037),\n", + " ('security', 0.0098373450338831159),\n", + " ('idiotic', 0.009834123428814465),\n", + " ('produced', 0.0098294307574257923),\n", + " ('king', 0.0098266872343175677),\n", + " ('magically', 0.0098228842476825624),\n", + " ('united', 0.0098070847890707729),\n", + " ('missile', 0.0097990578193348568),\n", " ('unlikable', 0.009786915898648085),\n", - " ('ignorant', 0.0097732743173461045),\n", - " ('amateur', 0.009767405987056119),\n", + " ('ignorant', 0.0097732743173461027),\n", + " ('amateur', 0.0097674059870561138),\n", " ('bachelor', 0.0097673429455405782),\n", - " ('asylum', 0.0097627338519779994),\n", - " ('screw', 0.0097568098573927262),\n", + " ('asylum', 0.009762733851977996),\n", + " ('screw', 0.0097568098573927176),\n", " ('report', 0.00974792326991724),\n", - " ('dracula', 0.0097467323393205605),\n", - " ('removed', 0.0097416519499422104),\n", + " ('dracula', 0.009746732339320564),\n", + " ('removed', 0.0097416519499422139),\n", " ('confess', 0.0097162925211573287),\n", - " ('brand', 0.0097152534660907668),\n", - " ('conspiracy', 0.0097116972290397022),\n", - " ('horribly', 0.0097083785564252567),\n", - " ('switch', 0.0097026840933795589),\n", - " ('jaws', 0.0096877455513713091),\n", - " ('unsuspecting', 0.009685342503584644),\n", - " ('betty', 0.009677035213332472),\n", - " ('forwarding', 0.0096711196893192828),\n", - " ('university', 0.009663671587814962),\n", + " ('brand', 0.0097152534660907616),\n", + " ('conspiracy', 0.0097116972290397074),\n", + " ('horribly', 0.0097083785564252515),\n", + " ('switch', 0.009702684093379552),\n", + " ('jaws', 0.0096877455513713108),\n", + " ('unsuspecting', 0.0096853425035846458),\n", + " ('betty', 0.0096770352133324754),\n", + " ('forwarding', 0.0096711196893192845),\n", + " ('university', 0.0096636715878149534),\n", " ('star', 0.00966232549318005),\n", - " ('crawl', 0.0096464318968590562),\n", + " ('crawl', 0.0096464318968590597),\n", " ('dopey', 0.0096460863315858646),\n", - " ('ruin', 0.0096230106385457315),\n", - " ('lifeless', 0.009622880727487999),\n", - " ('flash', 0.0096193625359650009),\n", - " ('whoever', 0.0096174128915875422),\n", - " ('coincidence', 0.009602459974140224),\n", - " ('choosing', 0.0095951100051069292),\n", + " ('ruin', 0.0096230106385457228),\n", + " ('lifeless', 0.0096228807274879972),\n", + " ('flash', 0.0096193625359649992),\n", + " ('whoever', 0.0096174128915875404),\n", + " ('coincidence', 0.0096024599741402171),\n", + " ('choosing', 0.0095951100051069257),\n", " ('avid', 0.0095900913284222671),\n", - " ('intended', 0.0095846987041676452),\n", - " ('remained', 0.0095839628178583866),\n", - " ('c', 0.0095732676681762382),\n", - " ('waiting', 0.0095562258694348937),\n", - " ('cassie', 0.0095481354442238098),\n", - " ('garage', 0.0095349544587830289),\n", - " ('clarke', 0.0095345445855698659),\n", - " ('fortune', 0.0095330396648302118),\n", + " ('intended', 0.0095846987041676244),\n", + " ('remained', 0.0095839628178583831),\n", + " ('c', 0.0095732676681762538),\n", + " ('waiting', 0.0095562258694349058),\n", + " ('cassie', 0.0095481354442238115),\n", + " ('garage', 0.0095349544587830255),\n", + " ('clarke', 0.0095345445855698676),\n", + " ('fortune', 0.0095330396648302066),\n", " ('interminable', 0.0095328159563552659),\n", " ('incessant', 0.0095235485026846384),\n", - " ('plots', 0.0095225805490624649),\n", - " ('danger', 0.009517120565469302),\n", - " ('costumes', 0.0094980144667524448),\n", - " ('evidently', 0.0094952158467012208),\n", - " ('minus', 0.009491149517466128),\n", - " ('reporters', 0.0094836811040990825),\n", - " ('israeli', 0.0094750077183364707),\n", - " ('failing', 0.0094711841313976936),\n", - " ('paying', 0.0094692344066851317),\n", - " ('godzilla', 0.009458691554843782),\n", - " ('dumber', 0.0094582903092924886),\n", - " ('earn', 0.0094476224928424987),\n", - " ('slows', 0.009446746387248758),\n", - " ('held', 0.009445273681791478),\n", - " ('chase', 0.0094438362611946429),\n", + " ('plots', 0.0095225805490624735),\n", + " ('danger', 0.0095171205654693055),\n", + " ('costumes', 0.0094980144667524517),\n", + " ('evidently', 0.0094952158467012243),\n", + " ('minus', 0.0094911495174661246),\n", + " ('reporters', 0.009483681104099086),\n", + " ('israeli', 0.0094750077183364655),\n", + " ('failing', 0.0094711841313976971),\n", + " ('paying', 0.00946923440668513),\n", + " ('godzilla', 0.0094586915548437837),\n", + " ('dumber', 0.0094582903092924851),\n", + " ('earn', 0.0094476224928425039),\n", + " ('slows', 0.0094467463872487598),\n", + " ('held', 0.0094452736817914867),\n", + " ('chase', 0.0094438362611946377),\n", " ('lies', 0.0094383969845033416),\n", - " ('hands', 0.0094381781614589211),\n", - " ('grief', 0.0094238494534102882),\n", + " ('hands', 0.0094381781614589176),\n", + " ('grief', 0.00942384945341029),\n", " ('brains', 0.0094182153416632122),\n", - " ('tom', 0.0094130433384347224),\n", - " ('resurrected', 0.009408342343729054),\n", - " ('asking', 0.0094021029403453318),\n", - " ('sleeps', 0.0094017951882658258),\n", - " ('porno', 0.0093907201413965091),\n", - " ('somehow', 0.0093889261270860436),\n", - " ('sarcasm', 0.0093886064393904154),\n", - " ('tie', 0.0093856009366311589),\n", - " ('fall', 0.0093801640008931205),\n", - " ('bring', 0.009379127354576142),\n", - " ('rape', 0.0093760851230746574),\n", - " ('village', 0.0093684513318614028),\n", - " ('kitchen', 0.0093649071460109555),\n", - " ('concerned', 0.0093611353238811316),\n", - " ('republic', 0.0093499426948764203),\n", - " ('hell', 0.0093400360705317102),\n", - " ('inducing', 0.0093382129792553524),\n", - " ('stomach', 0.0093378286385158542),\n", - " ('shambles', 0.0093335457329829785),\n", + " ('tom', 0.009413043338434738),\n", + " ('resurrected', 0.0094083423437290557),\n", + " ('asking', 0.0094021029403453284),\n", + " ('sleeps', 0.0094017951882658275),\n", + " ('porno', 0.0093907201413965073),\n", + " ('somehow', 0.0093889261270860523),\n", + " ('sarcasm', 0.0093886064393904119),\n", + " ('tie', 0.0093856009366311537),\n", + " ('fall', 0.0093801640008931257),\n", + " ('bring', 0.0093791273545761489),\n", + " ('rape', 0.0093760851230746418),\n", + " ('village', 0.0093684513318614097),\n", + " ('kitchen', 0.0093649071460109538),\n", + " ('concerned', 0.0093611353238811489),\n", + " ('republic', 0.0093499426948764237),\n", + " ('hell', 0.0093400360705317223),\n", + " ('inducing', 0.0093382129792553593),\n", + " ('stomach', 0.009337828638515849),\n", + " ('shambles', 0.009333545732982982),\n", " ('virgin', 0.0093312001339055945),\n", - " ('extraneous', 0.0093250413800351328),\n", - " ('cameras', 0.0093229460267977207),\n", - " ('suffers', 0.0093204929924829965),\n", - " ('justified', 0.0093163217479363195),\n", - " ('plummer', 0.009294827328510398),\n", - " ('ponderous', 0.0092880344237223356),\n", - " ('player', 0.0092802296345443763),\n", - " ('survivor', 0.0092767026472125799),\n", - " ('rainy', 0.0092697034218137495),\n", - " ('graces', 0.0092620944963291325),\n", + " ('extraneous', 0.009325041380035138),\n", + " ('cameras', 0.0093229460267977189),\n", + " ('suffers', 0.0093204929924830034),\n", + " ('justified', 0.009316321747936309),\n", + " ('plummer', 0.0092948273285103945),\n", + " ('ponderous', 0.0092880344237223321),\n", + " ('player', 0.0092802296345443781),\n", + " ('survivor', 0.0092767026472125765),\n", + " ('rainy', 0.0092697034218137461),\n", + " ('graces', 0.0092620944963291273),\n", " ...]" ] }, @@ -13685,7 +13801,9 @@ { "cell_type": "code", "execution_count": 83, - "metadata": {}, + "metadata": { + "collapsed": true + }, "outputs": [], "source": [ "import matplotlib.colors as colors\n", @@ -13728,7 +13846,9 @@ { "cell_type": "code", "execution_count": 85, - "metadata": {}, + "metadata": { + "collapsed": true + }, "outputs": [], "source": [ "from sklearn.manifold import TSNE\n", @@ -13739,7 +13859,9 @@ { "cell_type": "code", "execution_count": 87, - "metadata": {}, + "metadata": { + "collapsed": false + }, "outputs": [ { "name": "stderr", @@ -13944,7 +14066,7 @@ "metadata": { "anaconda-cloud": {}, "kernelspec": { - "display_name": "Python 3", + "display_name": "Python [default]", "language": "python", "name": "python3" }, @@ -13958,7 +14080,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.5.3" + "version": "3.5.2" } }, "nbformat": 4,